diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-09-08 20:06:19 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-09-08 20:06:19 +0200 |
commit | aa76bdea1fd541e93c0960583107b464d852c564 (patch) | |
tree | 7a72bb1ab638fac207ab660290aaa66aa152d847 /libavcodec/cscd.c | |
parent | aaa3f115d8e4751f54bbb3aa47bf6e2008b8058b (diff) | |
download | ffmpeg-aa76bdea1fd541e93c0960583107b464d852c564.tar.gz |
avcodec/cscd: decoder supports init_cleanup capability
Diffstat (limited to 'libavcodec/cscd.c')
-rw-r--r-- | libavcodec/cscd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cscd.c b/libavcodec/cscd.c index 5eb511a565..707674535c 100644 --- a/libavcodec/cscd.c +++ b/libavcodec/cscd.c @@ -170,5 +170,6 @@ AVCodec ff_cscd_decoder = { .init = decode_init, .close = decode_end, .decode = decode_frame, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, .capabilities = AV_CODEC_CAP_DR1, }; |