]> git.sesse.net Git - ffmpeg/blob - libavformat/genh.c
avformat: add xvag demuxer
[ffmpeg] / libavformat / genh.c
1 /*
2  * GENH demuxer
3  * Copyright (c) 2015 Paul B Mahol
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 "avformat.h"
24 #include "internal.h"
25
26 typedef struct GENHDemuxContext {
27     unsigned dsp_int_type;
28     unsigned interleave_size;
29 } GENHDemuxContext;
30
31 static int genh_probe(AVProbeData *p)
32 {
33     if (AV_RL32(p->buf) != MKTAG('G','E','N','H'))
34         return 0;
35
36     return AVPROBE_SCORE_MAX / 3 * 2;
37 }
38
39 static int genh_read_header(AVFormatContext *s)
40 {
41     unsigned start_offset, header_size, codec, coef_type, coef[2];
42     GENHDemuxContext *c = s->priv_data;
43     unsigned coef_splitted[2];
44     int align, ch, ret;
45     AVStream *st;
46
47     avio_skip(s->pb, 4);
48
49     st = avformat_new_stream(s, NULL);
50     if (!st)
51         return AVERROR(ENOMEM);
52
53     st->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
54     st->codec->channels    = avio_rl32(s->pb);
55     if (st->codec->channels <= 0)
56         return AVERROR_INVALIDDATA;
57     if (st->codec->channels == 1)
58         st->codec->channel_layout = AV_CH_LAYOUT_MONO;
59     else if (st->codec->channels == 2)
60         st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
61     align                  =
62     c->interleave_size     = avio_rl32(s->pb);
63     if (align < 0 || align > INT_MAX / st->codec->channels)
64         return AVERROR_INVALIDDATA;
65     st->codec->block_align = align * st->codec->channels;
66     st->codec->sample_rate = avio_rl32(s->pb);
67     avio_skip(s->pb, 4);
68     st->duration = avio_rl32(s->pb);
69
70     codec = avio_rl32(s->pb);
71     switch (codec) {
72     case  0: st->codec->codec_id = AV_CODEC_ID_ADPCM_PSX;        break;
73     case  1:
74     case 11: st->codec->bits_per_coded_sample = 4;
75              st->codec->block_align = 36 * st->codec->channels;
76              st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_WAV;    break;
77     case  2: st->codec->codec_id = AV_CODEC_ID_ADPCM_DTK;        break;
78     case  3: st->codec->codec_id = st->codec->block_align > 0 ?
79                                    AV_CODEC_ID_PCM_S16BE_PLANAR :
80                                    AV_CODEC_ID_PCM_S16BE;        break;
81     case  4: st->codec->codec_id = st->codec->block_align > 0 ?
82                                    AV_CODEC_ID_PCM_S16LE_PLANAR :
83                                    AV_CODEC_ID_PCM_S16LE;        break;
84     case  5: st->codec->codec_id = st->codec->block_align > 0 ?
85                                    AV_CODEC_ID_PCM_S8_PLANAR :
86                                    AV_CODEC_ID_PCM_S8;           break;
87     case  7: ret = ff_alloc_extradata(st->codec, 2);
88              if (ret < 0)
89                  return ret;
90              AV_WL16(st->codec->extradata, 3);
91              st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_WS;     break;
92     case 12: st->codec->codec_id = AV_CODEC_ID_ADPCM_THP;        break;
93     case 13: st->codec->codec_id = AV_CODEC_ID_PCM_U8;           break;
94     case 17: st->codec->codec_id = AV_CODEC_ID_ADPCM_IMA_QT;     break;
95     default:
96              avpriv_request_sample(s, "codec %d", codec);
97              return AVERROR_PATCHWELCOME;
98     }
99
100     start_offset = avio_rl32(s->pb);
101     header_size  = avio_rl32(s->pb);
102
103     if (header_size > start_offset)
104         return AVERROR_INVALIDDATA;
105
106     if (header_size == 0)
107         start_offset = 0x800;
108
109     coef[0]          = avio_rl32(s->pb);
110     coef[1]          = avio_rl32(s->pb);
111     c->dsp_int_type  = avio_rl32(s->pb);
112     coef_type        = avio_rl32(s->pb);
113     coef_splitted[0] = avio_rl32(s->pb);
114     coef_splitted[1] = avio_rl32(s->pb);
115
116     if (st->codec->codec_id == AV_CODEC_ID_ADPCM_THP) {
117         if (st->codec->channels > 2) {
118             avpriv_request_sample(s, "channels %d>2", st->codec->channels);
119             return AVERROR_PATCHWELCOME;
120         }
121
122         ff_alloc_extradata(st->codec, 32 * st->codec->channels);
123         for (ch = 0; ch < st->codec->channels; ch++) {
124             if (coef_type & 1) {
125                 avpriv_request_sample(s, "coef_type & 1");
126                 return AVERROR_PATCHWELCOME;
127             } else {
128                 avio_seek(s->pb, coef[ch], SEEK_SET);
129                 avio_read(s->pb, st->codec->extradata + 32 * ch, 32);
130             }
131         }
132
133         if (c->dsp_int_type == 1) {
134             st->codec->block_align = 8 * st->codec->channels;
135             if (c->interleave_size != 1 &&
136                 c->interleave_size != 2 &&
137                 c->interleave_size != 4)
138                 return AVERROR_INVALIDDATA;
139         }
140     }
141
142     avio_skip(s->pb, start_offset - avio_tell(s->pb));
143
144     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
145
146     return 0;
147 }
148
149 static int genh_read_packet(AVFormatContext *s, AVPacket *pkt)
150 {
151     AVCodecContext *codec = s->streams[0]->codec;
152     GENHDemuxContext *c = s->priv_data;
153     int ret;
154
155     if (c->dsp_int_type == 1 && codec->codec_id == AV_CODEC_ID_ADPCM_THP &&
156         codec->channels > 1) {
157         int i, ch;
158
159         if (avio_feof(s->pb))
160             return AVERROR_EOF;
161         ret = av_new_packet(pkt, 8 * codec->channels);
162         if (ret < 0)
163             return ret;
164         for (i = 0; i < 8 / c->interleave_size; i++) {
165             for (ch = 0; ch < codec->channels; ch++) {
166                 pkt->data[ch * 8 + i*c->interleave_size+0] = avio_r8(s->pb);
167                 pkt->data[ch * 8 + i*c->interleave_size+1] = avio_r8(s->pb);
168             }
169         }
170         ret = 0;
171     } else {
172         ret = av_get_packet(s->pb, pkt, codec->block_align ? codec->block_align : 1024 * codec->channels);
173     }
174
175     pkt->stream_index = 0;
176     return ret;
177 }
178
179 AVInputFormat ff_genh_demuxer = {
180     .name           = "genh",
181     .long_name      = NULL_IF_CONFIG_SMALL("GENeric Header"),
182     .priv_data_size = sizeof(GENHDemuxContext),
183     .read_probe     = genh_probe,
184     .read_header    = genh_read_header,
185     .read_packet    = genh_read_packet,
186     .extensions     = "genh",
187 };