Merge commit '6fee1b90ce
'
* commit '6fee1b90ce
':
avcodec: Add av_cold attributes to init functions missing them
Conflicts:
libavcodec/aacpsy.c
libavcodec/atrac3.c
libavcodec/dvdsubdec.c
libavcodec/ffv1.c
libavcodec/ffv1enc.c
libavcodec/h261enc.c
libavcodec/h264_parser.c
libavcodec/h264dsp.c
libavcodec/h264pred.c
libavcodec/libschroedingerenc.c
libavcodec/libxvid_rc.c
libavcodec/mpeg12.c
libavcodec/mpeg12enc.c
libavcodec/proresdsp.c
libavcodec/rangecoder.c
libavcodec/videodsp.c
libavcodec/x86/proresdsp_init.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
0aa095483d
57 changed files with 162 additions and 87 deletions
|
@ -33,12 +33,13 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/avassert.h"
|
||||
#include "avcodec.h"
|
||||
#include "rangecoder.h"
|
||||
#include "bytestream.h"
|
||||
|
||||
void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
|
||||
av_cold void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
|
||||
{
|
||||
c->bytestream_start =
|
||||
c->bytestream = buf;
|
||||
|
@ -49,7 +50,8 @@ void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
|
|||
c->outstanding_byte = -1;
|
||||
}
|
||||
|
||||
void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size)
|
||||
av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf,
|
||||
int buf_size)
|
||||
{
|
||||
/* cast to avoid compiler warning */
|
||||
ff_init_range_encoder(c, (uint8_t *)buf, buf_size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue