mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/libvorbisenc: Give CODEC_CAP_SMALL_LAST_FRAME to libvorbis encoder.
The libvorbis encoder already supports a small last frame, but the layer above doesn't know that because we didn't register the small last frame capability. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d1d3904273
commit
ea79dfbad3
@ -372,7 +372,7 @@ AVCodec ff_libvorbis_encoder = {
|
||||
.init = libvorbis_encode_init,
|
||||
.encode2 = libvorbis_encode_frame,
|
||||
.close = libvorbis_encode_close,
|
||||
.capabilities = CODEC_CAP_DELAY,
|
||||
.capabilities = CODEC_CAP_DELAY | CODEC_CAP_SMALL_LAST_FRAME,
|
||||
.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
|
||||
AV_SAMPLE_FMT_NONE },
|
||||
.priv_class = &vorbis_class,
|
||||
|
Loading…
Reference in New Issue
Block a user