diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-03 05:25:58 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-03-03 05:25:58 +0000 |
commit | 0c89ca72a50c0d66a1e76d77e174224602cfe11b (patch) | |
tree | d9b18f424ac0000ec45032365e615c477cb49b46 | |
parent | 95db6659d8b2d3d10c044ce1feab1f2041df8fb3 (diff) | |
download | ffmpeg-0c89ca72a50c0d66a1e76d77e174224602cfe11b.tar.gz |
cosmetics: remove a pointless comment
Originally committed as revision 17749 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/flacdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c index c89c96b0b6..80c03182a5 100644 --- a/libavcodec/flacdec.c +++ b/libavcodec/flacdec.c @@ -185,7 +185,6 @@ void ff_flac_parse_streaminfo(AVCodecContext *avctx, struct FLACStreaminfo *s, GetBitContext gb; init_get_bits(&gb, buffer, FLAC_STREAMINFO_SIZE*8); - /* mandatory streaminfo */ skip_bits(&gb, 16); /* skip min blocksize */ s->max_blocksize = get_bits(&gb, 16); |