]> git.sesse.net Git - ffmpeg/blob - libavformat/iv8.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / iv8.c
1 /*
2  * Copyright (c) 2009 Michael Niedermayer
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "avformat.h"
22
23
24 static int probe(AVProbeData *p)
25 {
26     // the single file i have starts with that, i dont know if others do too
27     if(   p->buf[0] == 1
28        && p->buf[1] == 1
29        && p->buf[2] == 3
30        && p->buf[3] == 0xB8
31        && p->buf[4] == 0x80
32        && p->buf[5] == 0x60
33       )
34         return AVPROBE_SCORE_MAX-2;
35
36     return 0;
37 }
38
39 static int read_header(AVFormatContext *s, AVFormatParameters *ap)
40 {
41     AVStream *st;
42
43     st = avformat_new_stream(s, NULL);
44     if (!st)
45         return AVERROR(ENOMEM);
46
47     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
48     st->codec->codec_id = CODEC_ID_MPEG4;
49     st->need_parsing = AVSTREAM_PARSE_FULL;
50     av_set_pts_info(st, 64, 1, 90000);
51
52     return 0;
53
54 }
55
56 static int read_packet(AVFormatContext *s, AVPacket *pkt)
57 {
58     int ret, size, pts, type, flags;
59     int first_pkt      = 0;
60     int frame_complete = 0;
61
62     while (!frame_complete) {
63
64         type  = avio_rb16(s->pb); // 257 or 258
65         size  = avio_rb16(s->pb);
66         flags = avio_rb16(s->pb); //some flags, 0x80 indicates end of frame
67                 avio_rb16(s->pb); //packet number
68         pts   = avio_rb32(s->pb);
69                 avio_rb32(s->pb); //6A 13 E3 88
70
71         frame_complete = flags & 0x80;
72
73         size -= 12;
74         if (size < 1)
75             return -1;
76
77         if (type == 258) {
78             avio_skip(s->pb, size);
79             frame_complete = 0;
80             continue;
81         }
82
83         if (!first_pkt) {
84             ret = av_get_packet(s->pb, pkt, size);
85             if (ret < 0)
86                 return ret;
87             first_pkt = 1;
88             pkt->pts  = pts;
89             pkt->pos -= 16;
90         } else {
91             ret = av_append_packet(s->pb, pkt, size);
92             if (ret < 0) {
93                 av_log(s, AV_LOG_ERROR, "failed to grow packet\n");
94                 av_free_packet(pkt);
95                 return ret;
96             }
97         }
98         if (ret < size) {
99             av_log(s, AV_LOG_ERROR, "Truncated packet! Read %d of %d bytes\n",
100                    ret, size);
101             pkt->flags |= AV_PKT_FLAG_CORRUPT;
102             break;
103         }
104     }
105     pkt->stream_index = 0;
106
107     return 0;
108 }
109
110 AVInputFormat ff_iv8_demuxer = {
111     .name           = "iv8",
112     .long_name      = NULL_IF_CONFIG_SMALL("A format generated by IndigoVision 8000 video server"),
113     .read_probe     = probe,
114     .read_header    = read_header,
115     .read_packet    = read_packet,
116     .flags= AVFMT_GENERIC_INDEX,
117     .value = CODEC_ID_MPEG4,
118 };