]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/idroqenc.c
ffplay: get rid of void casts in the option table
[ffmpeg] / libavformat / idroqenc.c
index dba9c84c20ec198f5d78b9f9f96bab2bb00468d0..50c428046ba9a46cee6b6b8e5e6927593be3e133 100644 (file)
@@ -37,10 +37,10 @@ static int roq_write_header(struct AVFormatContext *s)
 
 AVOutputFormat ff_roq_muxer = {
     .name         = "roq",
-    .long_name    = NULL_IF_CONFIG_SMALL("raw id RoQ format"),
+    .long_name    = NULL_IF_CONFIG_SMALL("raw id RoQ"),
     .extensions   = "roq",
-    .audio_codec  = CODEC_ID_ROQ_DPCM,
-    .video_codec  = CODEC_ID_ROQ,
+    .audio_codec  = AV_CODEC_ID_ROQ_DPCM,
+    .video_codec  = AV_CODEC_ID_ROQ,
     .write_header = roq_write_header,
     .write_packet = ff_raw_write_packet,
 };