# HG changeset patch # User jbr # Date 1253141820 0 # Node ID f2d62b685d49ac0f8a88f54afe608a72d5b69832 # Parent 78c2a3932c87e2b02a57b94f03184a7c413747e1 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. diff -r 78c2a3932c87 -r f2d62b685d49 flacdec.c --- a/flacdec.c Wed Sep 16 19:20:48 2009 +0000 +++ b/flacdec.c Wed Sep 16 22:57:00 2009 +0000 @@ -806,7 +806,9 @@ NULL, flac_decode_close, 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, .long_name= NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"), };