summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorRoberto Togni <r_togni@tiscali.it>2008-01-17 20:48:07 +0000
committerRoberto Togni <r_togni@tiscali.it>2008-01-17 20:48:07 +0000
commitbadbe09af3b983264befa5af41d813ba49206756 (patch)
tree004b1dbc42ee85f9f57e6147b794a5141b636256 /libavformat
parent48f7e1aeee893b075892d3c9a948d7cb4fcc4a02 (diff)
Fix forgotten braces from r11039
Originally committed as revision 11552 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 8481705264..9a770cf4d3 100644
--- a/libavformat/rmdec.c
+++ b/libavformat/rmdec.c
@@ -609,10 +609,10 @@ ff_rm_parse_packet (AVFormatContext *s, AVStream *st, int len, AVPacket *pkt,
av_get_packet(pb, pkt, rm->sub_packet_lengths[0]);
*flags = 2; // Mark first packet as keyframe
}
- } else
+ } else {
av_get_packet(pb, pkt, len);
rm_ac3_swap_bytes(st, pkt);
-
+ }
} else
av_get_packet(pb, pkt, len);