Browse Source

The buffer passed into the decoder should be const.

Originally committed as revision 11704 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
6ddaa63cf4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/avcodec.h

+ 1
- 1
libavcodec/avcodec.h View File

@@ -2200,7 +2200,7 @@ typedef struct AVCodec {
int (*encode)(AVCodecContext *, uint8_t *buf, int buf_size, void *data);
int (*close)(AVCodecContext *);
int (*decode)(AVCodecContext *, void *outdata, int *outdata_size,
uint8_t *buf, int buf_size);
const uint8_t *buf, int buf_size);
int capabilities;
struct AVCodec *next;
void (*flush)(AVCodecContext *);


Loading…
Cancel
Save