forked from FFmpeg/FFmpeg
Fix forgotten braces from r11039
Originally committed as revision 11552 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
48f7e1aeee
commit
badbe09af3
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue