]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rtpdec_vp8.c
matroskadec: split laces parsing
[ffmpeg] / libavformat / rtpdec_vp8.c
index 026728ec9dee531fed33871684bd5ea99bcc4932..f21ce6f91ff9f12207b52172162cd73210fca214 100644 (file)
@@ -23,7 +23,7 @@
  * @file
  * @brief RTP support for the VP8 payload
  * @author Josh Allmann <joshua.allmann@gmail.com>
- * ( http://www.webmproject.org/code/specs/rtp/ )
+ * @see http://www.webmproject.org/code/specs/rtp/
  */
 
 #include "libavcodec/bytestream.h"
@@ -147,7 +147,7 @@ static void vp8_free_context(PayloadContext *vp8)
 RTPDynamicProtocolHandler ff_vp8_dynamic_handler = {
     .enc_name       = "VP8",
     .codec_type     = AVMEDIA_TYPE_VIDEO,
-    .codec_id       = CODEC_ID_VP8,
+    .codec_id       = AV_CODEC_ID_VP8,
     .alloc          = vp8_new_context,
     .free           = vp8_free_context,
     .parse_packet   = vp8_handle_packet,