]> git.sesse.net Git - ffmpeg/blob - libavformat/ipmovie.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / ipmovie.c
1 /*
2  * Interplay MVE File Demuxer
3  * Copyright (c) 2003 The ffmpeg Project
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Interplay MVE file demuxer
25  * by Mike Melanson (melanson@pcisys.net)
26  * For more information regarding the Interplay MVE file format, visit:
27  *   http://www.pcisys.net/~melanson/codecs/
28  * The aforementioned site also contains a command line utility for parsing
29  * IP MVE files so that you can get a good idea of the typical structure of
30  * such files. This demuxer is not the best example to use if you are trying
31  * to write your own as it uses a rather roundabout approach for splitting
32  * up and sending out the chunks.
33  */
34
35 #include "libavutil/intreadwrite.h"
36 #include "avformat.h"
37 #include "internal.h"
38
39 #define CHUNK_PREAMBLE_SIZE 4
40 #define OPCODE_PREAMBLE_SIZE 4
41
42 #define CHUNK_INIT_AUDIO   0x0000
43 #define CHUNK_AUDIO_ONLY   0x0001
44 #define CHUNK_INIT_VIDEO   0x0002
45 #define CHUNK_VIDEO        0x0003
46 #define CHUNK_SHUTDOWN     0x0004
47 #define CHUNK_END          0x0005
48 /* these last types are used internally */
49 #define CHUNK_DONE         0xFFFC
50 #define CHUNK_NOMEM        0xFFFD
51 #define CHUNK_EOF          0xFFFE
52 #define CHUNK_BAD          0xFFFF
53
54 #define OPCODE_END_OF_STREAM           0x00
55 #define OPCODE_END_OF_CHUNK            0x01
56 #define OPCODE_CREATE_TIMER            0x02
57 #define OPCODE_INIT_AUDIO_BUFFERS      0x03
58 #define OPCODE_START_STOP_AUDIO        0x04
59 #define OPCODE_INIT_VIDEO_BUFFERS      0x05
60 #define OPCODE_UNKNOWN_06              0x06
61 #define OPCODE_SEND_BUFFER             0x07
62 #define OPCODE_AUDIO_FRAME             0x08
63 #define OPCODE_SILENCE_FRAME           0x09
64 #define OPCODE_INIT_VIDEO_MODE         0x0A
65 #define OPCODE_CREATE_GRADIENT         0x0B
66 #define OPCODE_SET_PALETTE             0x0C
67 #define OPCODE_SET_PALETTE_COMPRESSED  0x0D
68 #define OPCODE_UNKNOWN_0E              0x0E
69 #define OPCODE_SET_DECODING_MAP        0x0F
70 #define OPCODE_UNKNOWN_10              0x10
71 #define OPCODE_VIDEO_DATA              0x11
72 #define OPCODE_UNKNOWN_12              0x12
73 #define OPCODE_UNKNOWN_13              0x13
74 #define OPCODE_UNKNOWN_14              0x14
75 #define OPCODE_UNKNOWN_15              0x15
76
77 #define PALETTE_COUNT 256
78
79 typedef struct IPMVEContext {
80
81     unsigned char *buf;
82     int buf_size;
83
84     uint64_t frame_pts_inc;
85
86     unsigned int video_bpp;
87     unsigned int video_width;
88     unsigned int video_height;
89     int64_t video_pts;
90     uint32_t     palette[256];
91     int          has_palette;
92
93     unsigned int audio_bits;
94     unsigned int audio_channels;
95     unsigned int audio_sample_rate;
96     enum CodecID audio_type;
97     unsigned int audio_frame_count;
98
99     int video_stream_index;
100     int audio_stream_index;
101
102     int64_t audio_chunk_offset;
103     int audio_chunk_size;
104     int64_t video_chunk_offset;
105     int video_chunk_size;
106     int64_t decode_map_chunk_offset;
107     int decode_map_chunk_size;
108
109     int64_t next_chunk_offset;
110
111 } IPMVEContext;
112
113 static int load_ipmovie_packet(IPMVEContext *s, AVIOContext *pb,
114     AVPacket *pkt) {
115
116     int chunk_type;
117
118     if (s->audio_chunk_offset && s->audio_channels && s->audio_bits) {
119         if (s->audio_type == CODEC_ID_NONE) {
120             av_log(NULL, AV_LOG_ERROR, "Can not read audio packet before"
121                    "audio codec is known\n");
122                 return CHUNK_BAD;
123         }
124
125         /* adjust for PCM audio by skipping chunk header */
126         if (s->audio_type != CODEC_ID_INTERPLAY_DPCM) {
127             s->audio_chunk_offset += 6;
128             s->audio_chunk_size -= 6;
129         }
130
131         avio_seek(pb, s->audio_chunk_offset, SEEK_SET);
132         s->audio_chunk_offset = 0;
133
134         if (s->audio_chunk_size != av_get_packet(pb, pkt, s->audio_chunk_size))
135             return CHUNK_EOF;
136
137         pkt->stream_index = s->audio_stream_index;
138         pkt->pts = s->audio_frame_count;
139
140         /* audio frame maintenance */
141         if (s->audio_type != CODEC_ID_INTERPLAY_DPCM)
142             s->audio_frame_count +=
143             (s->audio_chunk_size / s->audio_channels / (s->audio_bits / 8));
144         else
145             s->audio_frame_count +=
146                 (s->audio_chunk_size - 6) / s->audio_channels;
147
148         av_dlog(NULL, "sending audio frame with pts %"PRId64" (%d audio frames)\n",
149                 pkt->pts, s->audio_frame_count);
150
151         chunk_type = CHUNK_VIDEO;
152
153     } else if (s->decode_map_chunk_offset) {
154
155         /* send both the decode map and the video data together */
156
157         if (av_new_packet(pkt, s->decode_map_chunk_size + s->video_chunk_size))
158             return CHUNK_NOMEM;
159
160         if (s->has_palette) {
161             uint8_t *pal;
162
163             pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
164                                           AVPALETTE_SIZE);
165             if (pal) {
166                 memcpy(pal, s->palette, AVPALETTE_SIZE);
167                 s->has_palette = 0;
168             }
169         }
170
171         pkt->pos= s->decode_map_chunk_offset;
172         avio_seek(pb, s->decode_map_chunk_offset, SEEK_SET);
173         s->decode_map_chunk_offset = 0;
174
175         if (avio_read(pb, pkt->data, s->decode_map_chunk_size) !=
176             s->decode_map_chunk_size) {
177             av_free_packet(pkt);
178             return CHUNK_EOF;
179         }
180
181         avio_seek(pb, s->video_chunk_offset, SEEK_SET);
182         s->video_chunk_offset = 0;
183
184         if (avio_read(pb, pkt->data + s->decode_map_chunk_size,
185             s->video_chunk_size) != s->video_chunk_size) {
186             av_free_packet(pkt);
187             return CHUNK_EOF;
188         }
189
190         pkt->stream_index = s->video_stream_index;
191         pkt->pts = s->video_pts;
192
193         av_dlog(NULL, "sending video frame with pts %"PRId64"\n", pkt->pts);
194
195         s->video_pts += s->frame_pts_inc;
196
197         chunk_type = CHUNK_VIDEO;
198
199     } else {
200
201         avio_seek(pb, s->next_chunk_offset, SEEK_SET);
202         chunk_type = CHUNK_DONE;
203
204     }
205
206     return chunk_type;
207 }
208
209 /* This function loads and processes a single chunk in an IP movie file.
210  * It returns the type of chunk that was processed. */
211 static int process_ipmovie_chunk(IPMVEContext *s, AVIOContext *pb,
212     AVPacket *pkt)
213 {
214     unsigned char chunk_preamble[CHUNK_PREAMBLE_SIZE];
215     int chunk_type;
216     int chunk_size;
217     unsigned char opcode_preamble[OPCODE_PREAMBLE_SIZE];
218     unsigned char opcode_type;
219     unsigned char opcode_version;
220     int opcode_size;
221     unsigned char scratch[1024];
222     int i, j;
223     int first_color, last_color;
224     int audio_flags;
225     unsigned char r, g, b;
226
227     /* see if there are any pending packets */
228     chunk_type = load_ipmovie_packet(s, pb, pkt);
229     if (chunk_type != CHUNK_DONE)
230         return chunk_type;
231
232     /* read the next chunk, wherever the file happens to be pointing */
233     if (url_feof(pb))
234         return CHUNK_EOF;
235     if (avio_read(pb, chunk_preamble, CHUNK_PREAMBLE_SIZE) !=
236         CHUNK_PREAMBLE_SIZE)
237         return CHUNK_BAD;
238     chunk_size = AV_RL16(&chunk_preamble[0]);
239     chunk_type = AV_RL16(&chunk_preamble[2]);
240
241     av_dlog(NULL, "chunk type 0x%04X, 0x%04X bytes: ", chunk_type, chunk_size);
242
243     switch (chunk_type) {
244
245     case CHUNK_INIT_AUDIO:
246         av_dlog(NULL, "initialize audio\n");
247         break;
248
249     case CHUNK_AUDIO_ONLY:
250         av_dlog(NULL, "audio only\n");
251         break;
252
253     case CHUNK_INIT_VIDEO:
254         av_dlog(NULL, "initialize video\n");
255         break;
256
257     case CHUNK_VIDEO:
258         av_dlog(NULL, "video (and audio)\n");
259         break;
260
261     case CHUNK_SHUTDOWN:
262         av_dlog(NULL, "shutdown\n");
263         break;
264
265     case CHUNK_END:
266         av_dlog(NULL, "end\n");
267         break;
268
269     default:
270         av_dlog(NULL, "invalid chunk\n");
271         chunk_type = CHUNK_BAD;
272         break;
273
274     }
275
276     while ((chunk_size > 0) && (chunk_type != CHUNK_BAD)) {
277
278         /* read the next chunk, wherever the file happens to be pointing */
279         if (url_feof(pb)) {
280             chunk_type = CHUNK_EOF;
281             break;
282         }
283         if (avio_read(pb, opcode_preamble, CHUNK_PREAMBLE_SIZE) !=
284             CHUNK_PREAMBLE_SIZE) {
285             chunk_type = CHUNK_BAD;
286             break;
287         }
288
289         opcode_size = AV_RL16(&opcode_preamble[0]);
290         opcode_type = opcode_preamble[2];
291         opcode_version = opcode_preamble[3];
292
293         chunk_size -= OPCODE_PREAMBLE_SIZE;
294         chunk_size -= opcode_size;
295         if (chunk_size < 0) {
296             av_dlog(NULL, "chunk_size countdown just went negative\n");
297             chunk_type = CHUNK_BAD;
298             break;
299         }
300
301         av_dlog(NULL, "  opcode type %02X, version %d, 0x%04X bytes: ",
302                 opcode_type, opcode_version, opcode_size);
303         switch (opcode_type) {
304
305         case OPCODE_END_OF_STREAM:
306             av_dlog(NULL, "end of stream\n");
307             avio_skip(pb, opcode_size);
308             break;
309
310         case OPCODE_END_OF_CHUNK:
311             av_dlog(NULL, "end of chunk\n");
312             avio_skip(pb, opcode_size);
313             break;
314
315         case OPCODE_CREATE_TIMER:
316             av_dlog(NULL, "create timer\n");
317             if ((opcode_version > 0) || (opcode_size > 6)) {
318                 av_dlog(NULL, "bad create_timer opcode\n");
319                 chunk_type = CHUNK_BAD;
320                 break;
321             }
322             if (avio_read(pb, scratch, opcode_size) !=
323                 opcode_size) {
324                 chunk_type = CHUNK_BAD;
325                 break;
326             }
327             s->frame_pts_inc = ((uint64_t)AV_RL32(&scratch[0])) * AV_RL16(&scratch[4]);
328             av_dlog(NULL, "  %.2f frames/second (timer div = %d, subdiv = %d)\n",
329                     1000000.0 / s->frame_pts_inc, AV_RL32(&scratch[0]),
330                     AV_RL16(&scratch[4]));
331             break;
332
333         case OPCODE_INIT_AUDIO_BUFFERS:
334             av_dlog(NULL, "initialize audio buffers\n");
335             if ((opcode_version > 1) || (opcode_size > 10)) {
336                 av_dlog(NULL, "bad init_audio_buffers opcode\n");
337                 chunk_type = CHUNK_BAD;
338                 break;
339             }
340             if (avio_read(pb, scratch, opcode_size) !=
341                 opcode_size) {
342                 chunk_type = CHUNK_BAD;
343                 break;
344             }
345             s->audio_sample_rate = AV_RL16(&scratch[4]);
346             audio_flags = AV_RL16(&scratch[2]);
347             /* bit 0 of the flags: 0 = mono, 1 = stereo */
348             s->audio_channels = (audio_flags & 1) + 1;
349             /* bit 1 of the flags: 0 = 8 bit, 1 = 16 bit */
350             s->audio_bits = (((audio_flags >> 1) & 1) + 1) * 8;
351             /* bit 2 indicates compressed audio in version 1 opcode */
352             if ((opcode_version == 1) && (audio_flags & 0x4))
353                 s->audio_type = CODEC_ID_INTERPLAY_DPCM;
354             else if (s->audio_bits == 16)
355                 s->audio_type = CODEC_ID_PCM_S16LE;
356             else
357                 s->audio_type = CODEC_ID_PCM_U8;
358             av_dlog(NULL, "audio: %d bits, %d Hz, %s, %s format\n",
359                     s->audio_bits, s->audio_sample_rate,
360                     (s->audio_channels == 2) ? "stereo" : "mono",
361                     (s->audio_type == CODEC_ID_INTERPLAY_DPCM) ?
362                     "Interplay audio" : "PCM");
363             break;
364
365         case OPCODE_START_STOP_AUDIO:
366             av_dlog(NULL, "start/stop audio\n");
367             avio_skip(pb, opcode_size);
368             break;
369
370         case OPCODE_INIT_VIDEO_BUFFERS:
371             av_dlog(NULL, "initialize video buffers\n");
372             if ((opcode_version > 2) || (opcode_size > 8)) {
373                 av_dlog(NULL, "bad init_video_buffers opcode\n");
374                 chunk_type = CHUNK_BAD;
375                 break;
376             }
377             if (avio_read(pb, scratch, opcode_size) !=
378                 opcode_size) {
379                 chunk_type = CHUNK_BAD;
380                 break;
381             }
382             s->video_width = AV_RL16(&scratch[0]) * 8;
383             s->video_height = AV_RL16(&scratch[2]) * 8;
384             if (opcode_version < 2 || !AV_RL16(&scratch[6])) {
385                 s->video_bpp = 8;
386             } else {
387                 s->video_bpp = 16;
388             }
389             av_dlog(NULL, "video resolution: %d x %d\n",
390                     s->video_width, s->video_height);
391             break;
392
393         case OPCODE_UNKNOWN_06:
394         case OPCODE_UNKNOWN_0E:
395         case OPCODE_UNKNOWN_10:
396         case OPCODE_UNKNOWN_12:
397         case OPCODE_UNKNOWN_13:
398         case OPCODE_UNKNOWN_14:
399         case OPCODE_UNKNOWN_15:
400             av_dlog(NULL, "unknown (but documented) opcode %02X\n", opcode_type);
401             avio_skip(pb, opcode_size);
402             break;
403
404         case OPCODE_SEND_BUFFER:
405             av_dlog(NULL, "send buffer\n");
406             avio_skip(pb, opcode_size);
407             break;
408
409         case OPCODE_AUDIO_FRAME:
410             av_dlog(NULL, "audio frame\n");
411
412             /* log position and move on for now */
413             s->audio_chunk_offset = avio_tell(pb);
414             s->audio_chunk_size = opcode_size;
415             avio_skip(pb, opcode_size);
416             break;
417
418         case OPCODE_SILENCE_FRAME:
419             av_dlog(NULL, "silence frame\n");
420             avio_skip(pb, opcode_size);
421             break;
422
423         case OPCODE_INIT_VIDEO_MODE:
424             av_dlog(NULL, "initialize video mode\n");
425             avio_skip(pb, opcode_size);
426             break;
427
428         case OPCODE_CREATE_GRADIENT:
429             av_dlog(NULL, "create gradient\n");
430             avio_skip(pb, opcode_size);
431             break;
432
433         case OPCODE_SET_PALETTE:
434             av_dlog(NULL, "set palette\n");
435             /* check for the logical maximum palette size
436              * (3 * 256 + 4 bytes) */
437             if (opcode_size > 0x304) {
438                 av_dlog(NULL, "demux_ipmovie: set_palette opcode too large\n");
439                 chunk_type = CHUNK_BAD;
440                 break;
441             }
442             if (avio_read(pb, scratch, opcode_size) != opcode_size) {
443                 chunk_type = CHUNK_BAD;
444                 break;
445             }
446
447             /* load the palette into internal data structure */
448             first_color = AV_RL16(&scratch[0]);
449             last_color = first_color + AV_RL16(&scratch[2]) - 1;
450             /* sanity check (since they are 16 bit values) */
451             if ((first_color > 0xFF) || (last_color > 0xFF)) {
452                 av_dlog(NULL, "demux_ipmovie: set_palette indexes out of range (%d -> %d)\n",
453                     first_color, last_color);
454                 chunk_type = CHUNK_BAD;
455                 break;
456             }
457             j = 4;  /* offset of first palette data */
458             for (i = first_color; i <= last_color; i++) {
459                 /* the palette is stored as a 6-bit VGA palette, thus each
460                  * component is shifted up to a 8-bit range */
461                 r = scratch[j++] * 4;
462                 g = scratch[j++] * 4;
463                 b = scratch[j++] * 4;
464                 s->palette[i] = (0xFFU << 24) | (r << 16) | (g << 8) | (b);
465                 s->palette[i] |= s->palette[i] >> 6 & 0x30303;
466             }
467             s->has_palette = 1;
468             break;
469
470         case OPCODE_SET_PALETTE_COMPRESSED:
471             av_dlog(NULL, "set palette compressed\n");
472             avio_skip(pb, opcode_size);
473             break;
474
475         case OPCODE_SET_DECODING_MAP:
476             av_dlog(NULL, "set decoding map\n");
477
478             /* log position and move on for now */
479             s->decode_map_chunk_offset = avio_tell(pb);
480             s->decode_map_chunk_size = opcode_size;
481             avio_skip(pb, opcode_size);
482             break;
483
484         case OPCODE_VIDEO_DATA:
485             av_dlog(NULL, "set video data\n");
486
487             /* log position and move on for now */
488             s->video_chunk_offset = avio_tell(pb);
489             s->video_chunk_size = opcode_size;
490             avio_skip(pb, opcode_size);
491             break;
492
493         default:
494             av_dlog(NULL, "*** unknown opcode type\n");
495             chunk_type = CHUNK_BAD;
496             break;
497
498         }
499     }
500
501     /* make a note of where the stream is sitting */
502     s->next_chunk_offset = avio_tell(pb);
503
504     /* dispatch the first of any pending packets */
505     if ((chunk_type == CHUNK_VIDEO) || (chunk_type == CHUNK_AUDIO_ONLY))
506         chunk_type = load_ipmovie_packet(s, pb, pkt);
507
508     return chunk_type;
509 }
510
511 static const char signature[] = "Interplay MVE File\x1A\0\x1A";
512
513 static int ipmovie_probe(AVProbeData *p)
514 {
515     uint8_t *b = p->buf;
516     uint8_t *b_end = p->buf + p->buf_size - sizeof(signature);
517     do {
518         if (memcmp(b++, signature, sizeof(signature)) == 0)
519             return AVPROBE_SCORE_MAX;
520     } while (b < b_end);
521
522     return 0;
523 }
524
525 static int ipmovie_read_header(AVFormatContext *s,
526                                AVFormatParameters *ap)
527 {
528     IPMVEContext *ipmovie = s->priv_data;
529     AVIOContext *pb = s->pb;
530     AVPacket pkt;
531     AVStream *st;
532     unsigned char chunk_preamble[CHUNK_PREAMBLE_SIZE];
533     int chunk_type, i;
534     uint8_t signature_buffer[sizeof(signature)];
535
536     avio_read(pb, signature_buffer, sizeof(signature_buffer));
537     while (memcmp(signature_buffer, signature, sizeof(signature))) {
538         memmove(signature_buffer, signature_buffer + 1, sizeof(signature_buffer) - 1);
539         signature_buffer[sizeof(signature_buffer) - 1] = avio_r8(pb);
540         if (url_feof(pb))
541             return AVERROR_EOF;
542     }
543     /* initialize private context members */
544     ipmovie->video_pts = ipmovie->audio_frame_count = 0;
545     ipmovie->audio_chunk_offset = ipmovie->video_chunk_offset =
546     ipmovie->decode_map_chunk_offset = 0;
547
548     /* on the first read, this will position the stream at the first chunk */
549     ipmovie->next_chunk_offset = avio_tell(pb) + 4;
550
551     for (i = 0; i < 256; i++)
552         ipmovie->palette[i] = 0xFFU << 24;
553
554     /* process the first chunk which should be CHUNK_INIT_VIDEO */
555     if (process_ipmovie_chunk(ipmovie, pb, &pkt) != CHUNK_INIT_VIDEO)
556         return AVERROR_INVALIDDATA;
557
558     /* peek ahead to the next chunk-- if it is an init audio chunk, process
559      * it; if it is the first video chunk, this is a silent file */
560     if (avio_read(pb, chunk_preamble, CHUNK_PREAMBLE_SIZE) !=
561         CHUNK_PREAMBLE_SIZE)
562         return AVERROR(EIO);
563     chunk_type = AV_RL16(&chunk_preamble[2]);
564     avio_seek(pb, -CHUNK_PREAMBLE_SIZE, SEEK_CUR);
565
566     if (chunk_type == CHUNK_VIDEO)
567         ipmovie->audio_type = CODEC_ID_NONE;  /* no audio */
568     else if (process_ipmovie_chunk(ipmovie, pb, &pkt) != CHUNK_INIT_AUDIO)
569         return AVERROR_INVALIDDATA;
570
571     /* initialize the stream decoders */
572     st = avformat_new_stream(s, NULL);
573     if (!st)
574         return AVERROR(ENOMEM);
575     avpriv_set_pts_info(st, 63, 1, 1000000);
576     ipmovie->video_stream_index = st->index;
577     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
578     st->codec->codec_id = CODEC_ID_INTERPLAY_VIDEO;
579     st->codec->codec_tag = 0;  /* no fourcc */
580     st->codec->width = ipmovie->video_width;
581     st->codec->height = ipmovie->video_height;
582     st->codec->bits_per_coded_sample = ipmovie->video_bpp;
583
584     if (ipmovie->audio_type) {
585         st = avformat_new_stream(s, NULL);
586         if (!st)
587             return AVERROR(ENOMEM);
588         avpriv_set_pts_info(st, 32, 1, ipmovie->audio_sample_rate);
589         ipmovie->audio_stream_index = st->index;
590         st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
591         st->codec->codec_id = ipmovie->audio_type;
592         st->codec->codec_tag = 0;  /* no tag */
593         st->codec->channels = ipmovie->audio_channels;
594         st->codec->sample_rate = ipmovie->audio_sample_rate;
595         st->codec->bits_per_coded_sample = ipmovie->audio_bits;
596         st->codec->bit_rate = st->codec->channels * st->codec->sample_rate *
597             st->codec->bits_per_coded_sample;
598         if (st->codec->codec_id == CODEC_ID_INTERPLAY_DPCM)
599             st->codec->bit_rate /= 2;
600         st->codec->block_align = st->codec->channels * st->codec->bits_per_coded_sample;
601     }
602
603     return 0;
604 }
605
606 static int ipmovie_read_packet(AVFormatContext *s,
607                                AVPacket *pkt)
608 {
609     IPMVEContext *ipmovie = s->priv_data;
610     AVIOContext *pb = s->pb;
611     int ret;
612
613     ret = process_ipmovie_chunk(ipmovie, pb, pkt);
614     if (ret == CHUNK_BAD)
615         ret = AVERROR_INVALIDDATA;
616     else if (ret == CHUNK_EOF)
617         ret = AVERROR(EIO);
618     else if (ret == CHUNK_NOMEM)
619         ret = AVERROR(ENOMEM);
620     else if (ret == CHUNK_VIDEO)
621         ret = 0;
622     else
623         ret = -1;
624
625     return ret;
626 }
627
628 AVInputFormat ff_ipmovie_demuxer = {
629     .name           = "ipmovie",
630     .long_name      = NULL_IF_CONFIG_SMALL("Interplay MVE format"),
631     .priv_data_size = sizeof(IPMVEContext),
632     .read_probe     = ipmovie_probe,
633     .read_header    = ipmovie_read_header,
634     .read_packet    = ipmovie_read_packet,
635 };