diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-25 04:50:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-25 04:50:47 +0200 |
commit | ee8ce211ead04c8684da0c9c143814e57e9b9eda (patch) | |
tree | 2a614ee462e3dbc42e4dc3ceceea5e4f94a642b3 /libavcodec | |
parent | 75a730a22b760547488e41d307b81e757b5cb590 (diff) | |
download | ffmpeg-ee8ce211ead04c8684da0c9c143814e57e9b9eda.tar.gz |
libavcodec/snowdec: Mark as FF_CODEC_CAP_INIT_THREADSAFE and FF_CODEC_CAP_INIT_CLEANUP
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/snowdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/snowdec.c b/libavcodec/snowdec.c index 81fe03c9c1..e12cb21fcd 100644 --- a/libavcodec/snowdec.c +++ b/libavcodec/snowdec.c @@ -401,7 +401,6 @@ static av_cold int decode_init(AVCodecContext *avctx) int ret; if ((ret = ff_snow_common_init(avctx)) < 0) { - ff_snow_common_end(avctx->priv_data); return ret; } @@ -644,4 +643,6 @@ AVCodec ff_snow_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = CODEC_CAP_DR1 /*| CODEC_CAP_DRAW_HORIZ_BAND*/, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | + FF_CODEC_CAP_INIT_CLEANUP, }; |