summaryrefslogtreecommitdiff
path: root/libavformat/iv8.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/iv8.c')
-rw-r--r--libavformat/iv8.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/libavformat/iv8.c b/libavformat/iv8.c
index 22e60cf8f0..bca31dcdd5 100644
--- a/libavformat/iv8.c
+++ b/libavformat/iv8.c
@@ -85,12 +85,11 @@ retry:
}
AVInputFormat ff_iv8_demuxer = {
- "iv8",
- NULL_IF_CONFIG_SMALL("A format generated by IndigoVision 8000 video server"),
- 0,
- probe,
- read_header,
- read_packet,
+ .name = "iv8",
+ .long_name = NULL_IF_CONFIG_SMALL("A format generated by IndigoVision 8000 video server"),
+ .read_probe = probe,
+ .read_header = read_header,
+ .read_packet = read_packet,
.flags= AVFMT_GENERIC_INDEX,
.value = CODEC_ID_MPEG4,
};