diff options
author | Anton Khirnov <anton@khirnov.net> | 2017-01-09 18:01:02 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2020-04-10 14:16:39 +0200 |
commit | 665e5b0fba41a8bae2269d9ce8929a24002e5907 (patch) | |
tree | 397136c747d006cdb54f4ff126cdca94f0297f77 /libavcodec/rv30.c | |
parent | 7385ffbd31a47a5dd5e66b9d3ba48a4474bbd180 (diff) | |
download | ffmpeg-665e5b0fba41a8bae2269d9ce8929a24002e5907.tar.gz |
lavc: replace AVCodecInternal.allocate_progress with an internal cap
This is a constant codec property, so a capability flag is more appropriate.
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r-- | libavcodec/rv30.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c index ddaaac651c..0a63352e6b 100644 --- a/libavcodec/rv30.c +++ b/libavcodec/rv30.c @@ -306,4 +306,5 @@ AVCodec ff_rv30_decoder = { }, .init_thread_copy = ONLY_IF_THREADS_ENABLED(ff_rv34_decode_init_thread_copy), .update_thread_context = ONLY_IF_THREADS_ENABLED(ff_rv34_decode_update_thread_context), + .caps_internal = FF_CODEC_CAP_ALLOCATE_PROGRESS, }; |