mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/smacker: Add FF_CODEC_CAP_INIT_CLEANUP
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
b6f505ce0a
commit
b146a61c22
@ -600,13 +600,11 @@ static av_cold int decode_init(AVCodecContext *avctx)
|
|||||||
/* decode huffman trees from extradata */
|
/* decode huffman trees from extradata */
|
||||||
if(avctx->extradata_size < 16){
|
if(avctx->extradata_size < 16){
|
||||||
av_log(avctx, AV_LOG_ERROR, "Extradata missing!\n");
|
av_log(avctx, AV_LOG_ERROR, "Extradata missing!\n");
|
||||||
decode_end(avctx);
|
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = decode_header_trees(c);
|
ret = decode_header_trees(c);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
decode_end(avctx);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -840,6 +838,7 @@ AVCodec ff_smacker_decoder = {
|
|||||||
.close = decode_end,
|
.close = decode_end,
|
||||||
.decode = decode_frame,
|
.decode = decode_frame,
|
||||||
.capabilities = AV_CODEC_CAP_DR1,
|
.capabilities = AV_CODEC_CAP_DR1,
|
||||||
|
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
||||||
};
|
};
|
||||||
|
|
||||||
AVCodec ff_smackaud_decoder = {
|
AVCodec ff_smackaud_decoder = {
|
||||||
|
Loading…
Reference in New Issue
Block a user