From ea79dfbad321fe2d408e0d4598a2758eea92d046 Mon Sep 17 00:00:00 2001 From: Peter Hall Date: Tue, 18 Nov 2014 15:17:42 +0000 Subject: 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 --- libavcodec/libvorbisenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/libvorbisenc.c') diff --git a/libavcodec/libvorbisenc.c b/libavcodec/libvorbisenc.c index 4d16b755ec..231d1be252 100644 --- a/libavcodec/libvorbisenc.c +++ b/libavcodec/libvorbisenc.c @@ -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, -- cgit v1.2.3