diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-27 16:42:14 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-05-27 16:42:14 +0000 |
commit | cd4af68ad54c189205175a6874f81844fa9a0ba2 (patch) | |
tree | 31b95874aa2f0fe240b4ffd2c9c599a081ed00e7 /libavcodec/utils.c | |
parent | c0eb0bb717eee510b47da4bccdd3307a608e034c (diff) | |
download | ffmpeg-cd4af68ad54c189205175a6874f81844fa9a0ba2.tar.gz |
* started to cleanup name clashes for onetime compilation
Originally committed as revision 617 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 208f8b146b..34f788947a 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -518,20 +518,20 @@ void avcodec_flush_buffers(AVCodecContext *avctx) } -static int encode_init(AVCodecContext *s) +static int raw_encode_init(AVCodecContext *s) { return 0; } -static int decode_frame(AVCodecContext *avctx, - void *data, int *data_size, - UINT8 *buf, int buf_size) +static int raw_decode_frame(AVCodecContext *avctx, + void *data, int *data_size, + UINT8 *buf, int buf_size) { return -1; } -static int encode_frame(AVCodecContext *avctx, - unsigned char *frame, int buf_size, void *data) +static int raw_encode_frame(AVCodecContext *avctx, + unsigned char *frame, int buf_size, void *data) { return -1; } @@ -541,8 +541,8 @@ AVCodec rawvideo_codec = { CODEC_TYPE_VIDEO, CODEC_ID_RAWVIDEO, 0, - encode_init, - encode_frame, + raw_encode_init, + raw_encode_frame, NULL, - decode_frame, + raw_decode_frame, }; |