Fix forgotten braces from r11039

Originally committed as revision 11552 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Roberto Togni 2008-01-17 20:48:07 +00:00
parent 48f7e1aeee
commit badbe09af3
1 changed files with 2 additions and 2 deletions

View File

@ -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);