summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2009-03-05 04:40:42 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2009-03-05 04:40:42 +0000
commit8d1e885fc2f72c1a1dd1eeabd854cae73b09028c (patch)
tree1573b4ef387516c5ba1cbfe2177f9a9c7d278d12 /libavcodec
parent629fb5c46a7a49681e4c91e0bbd7da198dc821ea (diff)
flacdec: cosmetics: Add a comment with the data of the smallest FLAC
frame for future reference. Originally committed as revision 17822 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/flacdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/flacdec.c b/libavcodec/flacdec.c
index 4ed15c9e0b..2c5f22ce2c 100644
--- a/libavcodec/flacdec.c
+++ b/libavcodec/flacdec.c
@@ -650,7 +650,8 @@ static int flac_decode_frame(AVCodecContext *avctx,
}
/* check that there is at least the smallest decodable amount of data.
- this amount corresponds to the smallest valid FLAC frame possible. */
+ this amount corresponds to the smallest valid FLAC frame possible.
+ FF F8 69 02 00 00 9A 00 00 34 46 */
if (buf_size < 11)
goto end;