mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
adpcmenc: refactor some code.
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
82c252972b
commit
f870fc2fb9
@ -58,6 +58,8 @@ typedef struct ADPCMEncodeContext {
|
|||||||
|
|
||||||
#define FREEZE_INTERVAL 128
|
#define FREEZE_INTERVAL 128
|
||||||
|
|
||||||
|
static av_cold int adpcm_encode_close(AVCodecContext *avctx);
|
||||||
|
|
||||||
static av_cold int adpcm_encode_init(AVCodecContext *avctx)
|
static av_cold int adpcm_encode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
ADPCMEncodeContext *s = avctx->priv_data;
|
ADPCMEncodeContext *s = avctx->priv_data;
|
||||||
@ -142,10 +144,7 @@ static av_cold int adpcm_encode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
error:
|
error:
|
||||||
av_freep(&s->paths);
|
adpcm_encode_close(avctx);
|
||||||
av_freep(&s->node_buf);
|
|
||||||
av_freep(&s->nodep_buf);
|
|
||||||
av_freep(&s->trellis_hash);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user