Commit 16d582d0 authored by rtogni's avatar rtogni

Fix forgotten braces from r11039


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11552 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7cc38c00
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment