Commit 88f8cd08 authored by jbr's avatar jbr

add CODEC_CAP_SUBFRAMES to the FLAC decoder capabilities. also add a FIXME

comment as a reminder that we can remove both capabilities once a parser is 
implemented.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19891 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1882dc03
...@@ -806,7 +806,9 @@ AVCodec flac_decoder = { ...@@ -806,7 +806,9 @@ AVCodec flac_decoder = {
NULL, NULL,
flac_decode_close, flac_decode_close,
flac_decode_frame, flac_decode_frame,
CODEC_CAP_DELAY, CODEC_CAP_DELAY | CODEC_CAP_SUBFRAMES, /* FIXME: add a FLAC parser so that
we will not need to use either
of these capabilities */
.flush= flac_flush, .flush= flac_flush,
.long_name= NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"), .long_name= NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"),
}; };
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