diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-01-27 22:03:13 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-01-27 22:03:13 +0000 |
commit | c58d6796a11686feb110cfb034bcf9964d69a4f1 (patch) | |
tree | 9f3b83d1b9f5e8b8062cc0852f3576d9268407d3 /libavformat | |
parent | a10f1cbb934cd607643b08f43067233ae7620e75 (diff) | |
download | ffmpeg-c58d6796a11686feb110cfb034bcf9964d69a4f1.tar.gz |
remove pointless {}
Originally committed as revision 16835 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/4xm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/4xm.c b/libavformat/4xm.c index 43aa64a286..17fe7c493d 100644 --- a/libavformat/4xm.c +++ b/libavformat/4xm.c @@ -271,8 +271,6 @@ static int fourxm_read_packet(AVFormatContext *s, case ifr2_TAG: case pfr2_TAG: case cfr2_TAG: - { - /* allocate 8 more bytes than 'size' to account for fourcc * and size */ if (size + 8 < size || av_new_packet(pkt, size + 8)) @@ -288,7 +286,6 @@ static int fourxm_read_packet(AVFormatContext *s, else packet_read = 1; break; - } case snd__TAG: track_number = get_le32(pb); |