/src/ffmpeg/libavformat/mtaf.c
Line | Count | Source |
1 | | /* |
2 | | * MTAF demuxer |
3 | | * Copyright (c) 2016 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 "demux.h" |
26 | | #include "internal.h" |
27 | | |
28 | | static int mtaf_probe(const AVProbeData *p) |
29 | 942k | { |
30 | 942k | if (p->buf_size < 0x44) |
31 | 289k | return 0; |
32 | | |
33 | 653k | if (AV_RL32(p->buf) != MKTAG('M','T','A','F') || |
34 | 237 | AV_RL32(p->buf + 0x40) != MKTAG('H','E','A','D')) |
35 | 653k | return 0; |
36 | | |
37 | 0 | return AVPROBE_SCORE_MAX; |
38 | 653k | } |
39 | | |
40 | | static int mtaf_read_header(AVFormatContext *s) |
41 | 807 | { |
42 | 807 | int stream_count; |
43 | 807 | AVStream *st; |
44 | | |
45 | 807 | st = avformat_new_stream(s, NULL); |
46 | 807 | if (!st) |
47 | 0 | return AVERROR(ENOMEM); |
48 | | |
49 | 807 | avio_skip(s->pb, 0x5c); |
50 | 807 | st->duration = avio_rl32(s->pb); |
51 | 807 | avio_skip(s->pb, 1); |
52 | 807 | stream_count = avio_r8(s->pb); |
53 | 807 | if (!stream_count) |
54 | 148 | return AVERROR_INVALIDDATA; |
55 | | |
56 | 659 | st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; |
57 | 659 | st->codecpar->codec_id = AV_CODEC_ID_ADPCM_MTAF; |
58 | 659 | st->codecpar->ch_layout.nb_channels = 2 * stream_count; |
59 | 659 | st->codecpar->sample_rate = 48000; |
60 | 659 | st->codecpar->block_align = 0x110 * st->codecpar->ch_layout.nb_channels / 2; |
61 | 659 | avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate); |
62 | | |
63 | 659 | avio_seek(s->pb, 0x800, SEEK_SET); |
64 | | |
65 | 659 | return 0; |
66 | 807 | } |
67 | | |
68 | | static int mtaf_read_packet(AVFormatContext *s, AVPacket *pkt) |
69 | 56.5k | { |
70 | 56.5k | AVCodecParameters *par = s->streams[0]->codecpar; |
71 | | |
72 | 56.5k | return av_get_packet(s->pb, pkt, par->block_align); |
73 | 56.5k | } |
74 | | |
75 | | const FFInputFormat ff_mtaf_demuxer = { |
76 | | .p.name = "mtaf", |
77 | | .p.long_name = NULL_IF_CONFIG_SMALL("Konami PS2 MTAF"), |
78 | | .p.extensions = "mtaf", |
79 | | .read_probe = mtaf_probe, |
80 | | .read_header = mtaf_read_header, |
81 | | .read_packet = mtaf_read_packet, |
82 | | }; |