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.h | |
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.h')
-rw-r--r-- | libavcodec/vp56.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/vp56.h b/libavcodec/vp56.h index 1eacdc2158..efc403e110 100644 --- a/libavcodec/vp56.h +++ b/libavcodec/vp56.h @@ -170,10 +170,10 @@ struct vp56_context { }; -void vp56_init(AVCodecContext *avctx, int flip, int has_alpha); -int vp56_free(AVCodecContext *avctx); -void vp56_init_dequant(VP56Context *s, int quantizer); -int vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, +void ff_vp56_init(AVCodecContext *avctx, int flip, int has_alpha); +int ff_vp56_free(AVCodecContext *avctx); +void ff_vp56_init_dequant(VP56Context *s, int quantizer); +int ff_vp56_decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt); |