]> git.sesse.net Git - ffmpeg/blob - libavformat/thp.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / thp.c
1 /*
2  * THP Demuxer
3  * Copyright (c) 2007 Marco Gerards
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 #include "libavutil/intreadwrite.h"
23 #include "libavutil/intfloat.h"
24 #include "avformat.h"
25 #include "internal.h"
26
27 typedef struct ThpDemuxContext {
28     int              version;
29     int              first_frame;
30     int              first_framesz;
31     int              last_frame;
32     int              compoff;
33     int              framecnt;
34     AVRational       fps;
35     int              frame;
36     int              next_frame;
37     int              next_framesz;
38     int              video_stream_index;
39     int              audio_stream_index;
40     int              compcount;
41     unsigned char    components[16];
42     AVStream*        vst;
43     int              has_audio;
44     unsigned         audiosize;
45 } ThpDemuxContext;
46
47
48 static int thp_probe(AVProbeData *p)
49 {
50     /* check file header */
51     if (AV_RL32(p->buf) == MKTAG('T', 'H', 'P', '\0'))
52         return AVPROBE_SCORE_MAX;
53     else
54         return 0;
55 }
56
57 static int thp_read_header(AVFormatContext *s)
58 {
59     ThpDemuxContext *thp = s->priv_data;
60     AVStream *st;
61     AVIOContext *pb = s->pb;
62     int64_t fsize= avio_size(pb);
63     int i;
64
65     /* Read the file header.  */
66                            avio_rb32(pb); /* Skip Magic.  */
67     thp->version         = avio_rb32(pb);
68
69                            avio_rb32(pb); /* Max buf size.  */
70                            avio_rb32(pb); /* Max samples.  */
71
72     thp->fps             = av_d2q(av_int2float(avio_rb32(pb)), INT_MAX);
73     thp->framecnt        = avio_rb32(pb);
74     thp->first_framesz   = avio_rb32(pb);
75     pb->maxsize          = avio_rb32(pb);
76     if(fsize>0 && (!pb->maxsize || fsize < pb->maxsize))
77         pb->maxsize= fsize;
78
79     thp->compoff         = avio_rb32(pb);
80                            avio_rb32(pb); /* offsetDataOffset.  */
81     thp->first_frame     = avio_rb32(pb);
82     thp->last_frame      = avio_rb32(pb);
83
84     thp->next_framesz    = thp->first_framesz;
85     thp->next_frame      = thp->first_frame;
86
87     /* Read the component structure.  */
88     avio_seek (pb, thp->compoff, SEEK_SET);
89     thp->compcount       = avio_rb32(pb);
90
91     /* Read the list of component types.  */
92     avio_read(pb, thp->components, 16);
93
94     for (i = 0; i < thp->compcount; i++) {
95         if (thp->components[i] == 0) {
96             if (thp->vst != 0)
97                 break;
98
99             /* Video component.  */
100             st = avformat_new_stream(s, NULL);
101             if (!st)
102                 return AVERROR(ENOMEM);
103
104             /* The denominator and numerator are switched because 1/fps
105                is required.  */
106             avpriv_set_pts_info(st, 64, thp->fps.den, thp->fps.num);
107             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
108             st->codec->codec_id = CODEC_ID_THP;
109             st->codec->codec_tag = 0;  /* no fourcc */
110             st->codec->width = avio_rb32(pb);
111             st->codec->height = avio_rb32(pb);
112             st->codec->sample_rate = av_q2d(thp->fps);
113             thp->vst = st;
114             thp->video_stream_index = st->index;
115
116             if (thp->version == 0x11000)
117                 avio_rb32(pb); /* Unknown.  */
118         } else if (thp->components[i] == 1) {
119             if (thp->has_audio != 0)
120                 break;
121
122             /* Audio component.  */
123             st = avformat_new_stream(s, NULL);
124             if (!st)
125                 return AVERROR(ENOMEM);
126
127             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
128             st->codec->codec_id = CODEC_ID_ADPCM_THP;
129             st->codec->codec_tag = 0;  /* no fourcc */
130             st->codec->channels    = avio_rb32(pb); /* numChannels.  */
131             st->codec->sample_rate = avio_rb32(pb); /* Frequency.  */
132
133             avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
134
135             thp->audio_stream_index = st->index;
136             thp->has_audio = 1;
137         }
138     }
139
140     return 0;
141 }
142
143 static int thp_read_packet(AVFormatContext *s,
144                             AVPacket *pkt)
145 {
146     ThpDemuxContext *thp = s->priv_data;
147     AVIOContext *pb = s->pb;
148     unsigned int size;
149     int ret;
150
151     if (thp->audiosize == 0) {
152         /* Terminate when last frame is reached.  */
153         if (thp->frame >= thp->framecnt)
154             return AVERROR(EIO);
155
156         avio_seek(pb, thp->next_frame, SEEK_SET);
157
158         /* Locate the next frame and read out its size.  */
159         thp->next_frame += thp->next_framesz;
160         thp->next_framesz = avio_rb32(pb);
161
162                         avio_rb32(pb); /* Previous total size.  */
163         size          = avio_rb32(pb); /* Total size of this frame.  */
164
165         /* Store the audiosize so the next time this function is called,
166            the audio can be read.  */
167         if (thp->has_audio)
168             thp->audiosize = avio_rb32(pb); /* Audio size.  */
169         else
170             thp->frame++;
171
172         ret = av_get_packet(pb, pkt, size);
173         if (ret != size) {
174             av_free_packet(pkt);
175             return AVERROR(EIO);
176         }
177
178         pkt->stream_index = thp->video_stream_index;
179     } else {
180         ret = av_get_packet(pb, pkt, thp->audiosize);
181         if (ret != thp->audiosize) {
182             av_free_packet(pkt);
183             return AVERROR(EIO);
184         }
185
186         pkt->stream_index = thp->audio_stream_index;
187         thp->audiosize = 0;
188         thp->frame++;
189     }
190
191     return 0;
192 }
193
194 AVInputFormat ff_thp_demuxer = {
195     .name           = "thp",
196     .long_name      = NULL_IF_CONFIG_SMALL("THP"),
197     .priv_data_size = sizeof(ThpDemuxContext),
198     .read_probe     = thp_probe,
199     .read_header    = thp_read_header,
200     .read_packet    = thp_read_packet
201 };