Browse Source

Fix a warning about an undefined function when compiling h264.c

Originally committed as revision 15462 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Carl Eugen Hoyos 17 years ago
parent
commit
bf615b89e3
2 changed files with 1 additions and 1 deletions
  1. +1
    -0
      libavcodec/mpegvideo.h
  2. +0
    -1
      libavcodec/mpegvideo_common.h

+ 1
- 0
libavcodec/mpegvideo.h View File

@@ -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;


+ 0
- 1
libavcodec/mpegvideo_common.h View File

@@ -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…
Cancel
Save