mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
avcodec: Add av_cold to flush,init,close functions missing it
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
bc545bae3b
commit
1df63acdc4
81 changed files with 176 additions and 106 deletions
|
|
@ -29,10 +29,11 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/intreadwrite.h"
|
||||
#include "libavutil/mem.h"
|
||||
|
||||
#include "parser.h"
|
||||
#include "avcodec.h"
|
||||
|
||||
#define DIRAC_PARSE_INFO_PREFIX 0x42424344
|
||||
|
||||
|
|
@ -265,7 +266,7 @@ static int dirac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
|
|||
return next;
|
||||
}
|
||||
|
||||
static void dirac_parse_close(AVCodecParserContext *s)
|
||||
static av_cold void dirac_parse_close(AVCodecParserContext *s)
|
||||
{
|
||||
DiracParseContext *pc = s->priv_data;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue