Browse Source

const

Originally committed as revision 11761 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
fbdad670e4
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libavcodec/h263dec.c
  2. +1
    -1
      libavcodec/mpegvideo.h

+ 1
- 1
libavcodec/h263dec.c View File

@@ -322,7 +322,7 @@ static int decode_slice(MpegEncContext *s){

int ff_h263_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
uint8_t *buf, int buf_size)
const uint8_t *buf, int buf_size)
{
MpegEncContext *s = avctx->priv_data;
int ret;


+ 1
- 1
libavcodec/mpegvideo.h View File

@@ -817,7 +817,7 @@ int ff_h261_get_picture_format(int width, int height);
int ff_h263_decode_init(AVCodecContext *avctx);
int ff_h263_decode_frame(AVCodecContext *avctx,
void *data, int *data_size,
uint8_t *buf, int buf_size);
const uint8_t *buf, int buf_size);
int ff_h263_decode_end(AVCodecContext *avctx);
void h263_encode_mb(MpegEncContext *s,
DCTELEM block[6][64],


Loading…
Cancel
Save