diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-07-28 05:36:33 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-07-28 05:36:33 +0000 |
commit | d9504970830ae6c173acfdf764b3c4e8761fcacf (patch) | |
tree | ca2082e3cb62a05d66fe7fed7403934f8b70cc94 /libavcodec/vp56.c | |
parent | 317167e7d9fbd7fbc9e2d0c724eb67441a261b8b (diff) | |
download | ffmpeg-d9504970830ae6c173acfdf764b3c4e8761fcacf.tar.gz |
ff_prefix non static vp56 functions.
Originally committed as revision 24561 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56.c')
-rw-r--r-- | libavcodec/vp56.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vp56.c b/libavcodec/vp56.c index 74fe5ff5f4..9f913850eb 100644 --- a/libavcodec/vp56.c +++ b/libavcodec/vp56.c @@ -28,7 +28,7 @@ #include "vp56data.h" -void vp56_init_dequant(VP56Context *s, int quantizer) +void ff_vp56_init_dequant(VP56Context *s, int quantizer) { s->quantizer = quantizer; s->dequant_dc = vp56_dc_dequant[quantizer] << 2; @@ -481,7 +481,7 @@ static int vp56_size_changed(AVCodecContext *avctx) return 0; } -int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, +int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) { const uint8_t *buf = avpkt->data; @@ -639,7 +639,7 @@ int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, return avpkt->size; } -av_cold void vp56_init(AVCodecContext *avctx, int flip, int has_alpha) +av_cold void ff_vp56_init(AVCodecContext *avctx, int flip, int has_alpha) { VP56Context *s = avctx->priv_data; int i; @@ -678,7 +678,7 @@ av_cold void vp56_init(AVCodecContext *avctx, int flip, int has_alpha) } } -av_cold int vp56_free(AVCodecContext *avctx) +av_cold int ff_vp56_free(AVCodecContext *avctx) { VP56Context *s = avctx->priv_data; |