]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/rtpdec_h263.c
ffplay: get rid of void casts in the option table
[ffmpeg] / libavformat / rtpdec_h263.c
index 6c22a247157627cc0eaae612d5b3c77950fa628f..e604dc1c42a413146618483da92ec9d0c8d03002 100644 (file)
@@ -91,13 +91,13 @@ int ff_h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
 RTPDynamicProtocolHandler ff_h263_1998_dynamic_handler = {
     .enc_name         = "H263-1998",
     .codec_type       = AVMEDIA_TYPE_VIDEO,
-    .codec_id         = CODEC_ID_H263,
+    .codec_id         = AV_CODEC_ID_H263,
     .parse_packet     = ff_h263_handle_packet,
 };
 
 RTPDynamicProtocolHandler ff_h263_2000_dynamic_handler = {
     .enc_name         = "H263-2000",
     .codec_type       = AVMEDIA_TYPE_VIDEO,
-    .codec_id         = CODEC_ID_H263,
+    .codec_id         = AV_CODEC_ID_H263,
     .parse_packet     = ff_h263_handle_packet,
 };