Fix a warning about an undefined function when compiling h264.c
Originally committed as revision 15462 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dc771f6b5f
commit
bf615b89e3
@ -701,6 +701,7 @@ void ff_convert_matrix(DSPContext *dsp, int (*qmat)[64], uint16_t (*qmat16)[2][6
|
||||
const uint16_t *quant_matrix, int bias, int qmin, int qmax, int intra);
|
||||
|
||||
void ff_init_block_index(MpegEncContext *s);
|
||||
void copy_picture(Picture *dst, Picture *src);
|
||||
|
||||
static inline void ff_update_block_index(MpegEncContext *s){
|
||||
const int block_size= 8>>s->avctx->lowres;
|
||||
|
@ -41,7 +41,6 @@
|
||||
int dct_quantize_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow);
|
||||
int dct_quantize_trellis_c(MpegEncContext *s, DCTELEM *block, int n, int qscale, int *overflow);
|
||||
void denoise_dct_c(MpegEncContext *s, DCTELEM *block);
|
||||
void copy_picture(Picture *dst, Picture *src);
|
||||
|
||||
/**
|
||||
* allocates a Picture
|
||||
|
Loading…
Reference in New Issue
Block a user