diff vp56.c @ 12292:d8364962cc4a libavcodec

ff_prefix non static vp56 functions.
author alexc
date Wed, 28 Jul 2010 05:36:33 +0000
parents 85ee3d14b906
children 54583a14a995
line wrap: on
line diff
--- a/vp56.c	Wed Jul 28 05:19:42 2010 +0000
+++ b/vp56.c	Wed Jul 28 05:36:33 2010 +0000
@@ -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 @@
     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 @@
     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 int vp56_free(AVCodecContext *avctx)
+av_cold int ff_vp56_free(AVCodecContext *avctx)
 {
     VP56Context *s = avctx->priv_data;