mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 00:51:37 +00:00
avcodec/diracdec: Mark flush as av_cold
Reviewed-by: Lynne <dev@lynne.ee> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
7b6a48e07e
commit
2edf7eac33
@ -351,7 +351,7 @@ static int alloc_buffers(DiracContext *s, int stride)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void free_sequence_buffers(DiracContext *s)
|
||||
static av_cold void free_sequence_buffers(DiracContext *s)
|
||||
{
|
||||
int i, j, k;
|
||||
|
||||
@ -413,7 +413,7 @@ static av_cold int dirac_decode_init(AVCodecContext *avctx)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void dirac_decode_flush(AVCodecContext *avctx)
|
||||
static av_cold void dirac_decode_flush(AVCodecContext *avctx)
|
||||
{
|
||||
DiracContext *s = avctx->priv_data;
|
||||
free_sequence_buffers(s);
|
||||
|
Loading…
Reference in New Issue
Block a user