]> git.sesse.net Git - ffmpeg/blob - libavformat/ast.c
Merge commit '28c8e288fa0342fdef532a7522a4707bebf831cc'
[ffmpeg] / libavformat / ast.c
1 /*
2  * AST demuxer
3  * Copyright (c) 2012 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/channel_layout.h"
23 #include "libavutil/intreadwrite.h"
24 #include "avformat.h"
25 #include "internal.h"
26
27 static int ast_probe(AVProbeData *p)
28 {
29     if (AV_RL32(p->buf) == MKTAG('S', 'T', 'R', 'M'))
30         return AVPROBE_SCORE_MAX / 2;
31     return 0;
32 }
33
34 static int ast_read_header(AVFormatContext *s)
35 {
36     int codec, depth;
37     AVStream *st;
38
39     st = avformat_new_stream(s, NULL);
40     if (!st)
41         return AVERROR(ENOMEM);
42
43     avio_skip(s->pb, 8);
44     codec = avio_rb16(s->pb);
45     switch (codec) {
46     case 0:
47         st->codec->codec_id = AV_CODEC_ID_ADPCM_AFC;
48         break;
49     case 1:
50         st->codec->codec_id = AV_CODEC_ID_PCM_S16BE_PLANAR;
51         break;
52     default:
53         av_log(s, AV_LOG_ERROR, "unsupported codec %d\n", codec);
54     }
55
56     depth = avio_rb16(s->pb);
57     if (depth != 16) {
58         av_log_ask_for_sample(s, "unsupported depth %d\n", depth);
59         return AVERROR_INVALIDDATA;
60     }
61
62     st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
63     st->codec->channels = avio_rb16(s->pb);
64     if (!st->codec->channels)
65         return AVERROR_INVALIDDATA;
66
67     if (st->codec->channels == 2)
68         st->codec->channel_layout = AV_CH_LAYOUT_STEREO;
69     else if (st->codec->channels == 4)
70         st->codec->channel_layout = AV_CH_LAYOUT_4POINT0;
71
72     avio_skip(s->pb, 2);
73     st->codec->sample_rate = avio_rb32(s->pb);
74     if (st->codec->sample_rate <= 0)
75         return AVERROR_INVALIDDATA;
76     st->start_time         = 0;
77     st->duration           = avio_rb32(s->pb);
78     avio_skip(s->pb, 40);
79     avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
80
81     return 0;
82 }
83
84 static int ast_read_packet(AVFormatContext *s, AVPacket *pkt)
85 {
86     uint32_t type, size;
87     int64_t pos;
88     int ret;
89
90     if (url_feof(s->pb))
91         return AVERROR_EOF;
92
93     pos  = avio_tell(s->pb);
94     type = avio_rl32(s->pb);
95     size = avio_rb32(s->pb);
96     if (size > INT_MAX / s->streams[0]->codec->channels)
97         return AVERROR_INVALIDDATA;
98
99     size *= s->streams[0]->codec->channels;
100     if ((ret = avio_skip(s->pb, 24)) < 0) // padding
101         return ret;
102
103     if (type == MKTAG('B','L','C','K')) {
104         ret = av_get_packet(s->pb, pkt, size);
105         pkt->stream_index = 0;
106         pkt->pos = pos;
107     } else {
108         av_log(s, AV_LOG_ERROR, "unknown chunk %x\n", type);
109         avio_skip(s->pb, size);
110         ret = AVERROR_INVALIDDATA;
111     }
112
113     return ret;
114 }
115
116 AVInputFormat ff_ast_demuxer = {
117     .name           = "ast",
118     .long_name      = NULL_IF_CONFIG_SMALL("AST (Audio Stream)"),
119     .read_probe     = ast_probe,
120     .read_header    = ast_read_header,
121     .read_packet    = ast_read_packet,
122     .extensions     = "ast",
123     .flags          = AVFMT_GENERIC_INDEX,
124 };