Commit 7ba26252 authored by Michael Niedermayer's avatar Michael Niedermayer

flacenc: mark as lossless codec

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 34dc7aa8
......@@ -1387,7 +1387,7 @@ AVCodec ff_flac_encoder = {
flac_encode_frame,
flac_encode_close,
NULL,
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY,
.capabilities = CODEC_CAP_SMALL_LAST_FRAME | CODEC_CAP_DELAY | CODEC_CAP_LOSSLESS,
.sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE},
.long_name = NULL_IF_CONFIG_SMALL("FLAC (Free Lossless Audio Codec)"),
.priv_class = &flac_encoder_class,
......
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