summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAndrew Sayers <ffmpeg-devel@pileofstuff.org>2024-02-28 17:09:39 +0000
committerStefano Sabatini <stefasab@gmail.com>2024-03-04 17:38:57 +0100
commit6096c244bbd4011eba547456338b09ad83d844f6 (patch)
tree9008f581da5e349fe5115c24009aa08f9297c6f2 /libavformat
parentac86b52f802bd6f54e32ac884b61f4f399211256 (diff)
fix /// comments that should be ///<
Actual command: sed -i -e "s/\([;,] *\)<* *\/\/\/ *<* */\1\/\/\/< /" $( git grep -l "[;,] */// " ) Signed-off-by: Andrew Sayers <ffmpeg-devel@pileofstuff.org>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/rmdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c
index 0f1534b582..d0062c47bb 100644
--- a/libavformat/rmdec.c
+++ b/libavformat/rmdec.c
@@ -51,8 +51,8 @@ struct RMStream {
int64_t audiotimestamp; ///< Audio packet timestamp
int sub_packet_cnt; // Subpacket counter, used while reading
int sub_packet_size, sub_packet_h, coded_framesize; ///< Descrambling parameters from container
- int audio_framesize; /// Audio frame size from container
- int sub_packet_lengths[16]; /// Length of each subpacket
+ int audio_framesize; ///< Audio frame size from container
+ int sub_packet_lengths[16]; ///< Length of each subpacket
int32_t deint_id; ///< deinterleaver used in audio stream
};