]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vp5.c
Move colmult() function to the beginning of file to group DSP-related functions.
[ffmpeg] / libavcodec / vp5.c
index fc8119c2f5c47357fdee114ba35b8596a1578d12..4f9d42f446d15d281c2755d592eed7e5d1732732 100644 (file)
@@ -27,7 +27,6 @@
 #include "avcodec.h"
 #include "dsputil.h"
 #include "bitstream.h"
-#include "mpegvideo.h"
 
 #include "vp56.h"
 #include "vp56data.h"
@@ -266,7 +265,7 @@ static void vp5_default_models_init(vp56_context_t *s)
     memset(model->vector_pdv, 0x80, sizeof(model->vector_pdv));
 }
 
-static int vp5_decode_init(AVCodecContext *avctx)
+static av_cold int vp5_decode_init(AVCodecContext *avctx)
 {
     vp56_context_t *s = avctx->priv_data;
 
@@ -293,4 +292,5 @@ AVCodec vp5_decoder = {
     vp56_free,
     vp56_decode_frame,
     CODEC_CAP_DR1,
+    .long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
 };