]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/vp9.c
avformat: use ff_alloc_extradata()
[ffmpeg] / libavcodec / vp9.c
index a4aa97a9fafd2770a35b55cb09d742da37c4f5d3..0eb92f8c08764c425c08c57393787b5c5d1d3808 100644 (file)
@@ -3564,6 +3564,7 @@ static av_cold int vp9_decode_free(AVCodecContext *ctx)
 
 AVCodec ff_vp9_decoder = {
   .name                  = "vp9",
+  .long_name             = NULL_IF_CONFIG_SMALL("Google VP9"),
   .type                  = AVMEDIA_TYPE_VIDEO,
   .id                    = AV_CODEC_ID_VP9,
   .priv_data_size        = sizeof(VP9Context),
@@ -3572,5 +3573,4 @@ AVCodec ff_vp9_decoder = {
   .decode                = vp9_decode_packet,
   .capabilities          = CODEC_CAP_DR1,
   .flush                 = vp9_decode_flush,
-  .long_name             = NULL_IF_CONFIG_SMALL("Google VP9"),
 };