diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-04-10 15:30:03 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-04-10 19:54:43 +0200 |
commit | 571aa7d25edc414c3da9253af8b80508c5275b4b (patch) | |
tree | b918d4abd58bd7d04e6031a98a9eab287e356ef7 | |
parent | b45d542ea62584dfc784dcc253c098872cf982c4 (diff) | |
download | ffmpeg-571aa7d25edc414c3da9253af8b80508c5275b4b.tar.gz |
avcodec/shorten: mark as AV_CODEC_CAP_SUBFRAMES
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/shorten.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/shorten.c b/libavcodec/shorten.c index e3c5ad101c..b3b6d2a5a6 100644 --- a/libavcodec/shorten.c +++ b/libavcodec/shorten.c @@ -768,7 +768,7 @@ AVCodec ff_shorten_decoder = { .init = shorten_decode_init, .close = shorten_decode_close, .decode = shorten_decode_frame, - .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1, + .capabilities = AV_CODEC_CAP_SUBFRAMES | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1, .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P, AV_SAMPLE_FMT_U8P, AV_SAMPLE_FMT_NONE }, |