]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/avs.c
mov: read tmcd tag and set timecode drop flag accordingly.
[ffmpeg] / libavformat / avs.c
index 355ae31f358fc21485bcddbff3d0830baad62da4..89b2642c36b3eae729fbf99c897ea5411c183fde 100644 (file)
@@ -216,11 +216,11 @@ static int avs_read_close(AVFormatContext * s)
 }
 
 AVInputFormat ff_avs_demuxer = {
-    "avs",
-    NULL_IF_CONFIG_SMALL("AVS format"),
-    sizeof(AvsFormat),
-    avs_probe,
-    avs_read_header,
-    avs_read_packet,
-    avs_read_close,
+    .name           = "avs",
+    .long_name      = NULL_IF_CONFIG_SMALL("AVS format"),
+    .priv_data_size = sizeof(AvsFormat),
+    .read_probe     = avs_probe,
+    .read_header    = avs_read_header,
+    .read_packet    = avs_read_packet,
+    .read_close     = avs_read_close,
 };