FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/mtaf.c
Date: 2024-04-20 14:10:07
Exec Total Coverage
Lines: 5 28 17.9%
Functions: 1 3 33.3%
Branches: 3 10 30.0%

Line Branch Exec 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 7125 static int mtaf_probe(const AVProbeData *p)
29 {
30
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 7122 times.
7125 if (p->buf_size < 0x44)
31 3 return 0;
32
33
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 7122 times.
7122 if (AV_RL32(p->buf) != MKTAG('M','T','A','F') ||
34 AV_RL32(p->buf + 0x40) != MKTAG('H','E','A','D'))
35 7122 return 0;
36
37 return AVPROBE_SCORE_MAX;
38 }
39
40 static int mtaf_read_header(AVFormatContext *s)
41 {
42 int stream_count;
43 AVStream *st;
44
45 st = avformat_new_stream(s, NULL);
46 if (!st)
47 return AVERROR(ENOMEM);
48
49 avio_skip(s->pb, 0x5c);
50 st->duration = avio_rl32(s->pb);
51 avio_skip(s->pb, 1);
52 stream_count = avio_r8(s->pb);
53 if (!stream_count)
54 return AVERROR_INVALIDDATA;
55
56 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
57 st->codecpar->codec_id = AV_CODEC_ID_ADPCM_MTAF;
58 st->codecpar->ch_layout.nb_channels = 2 * stream_count;
59 st->codecpar->sample_rate = 48000;
60 st->codecpar->block_align = 0x110 * st->codecpar->ch_layout.nb_channels / 2;
61 avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
62
63 avio_seek(s->pb, 0x800, SEEK_SET);
64
65 return 0;
66 }
67
68 static int mtaf_read_packet(AVFormatContext *s, AVPacket *pkt)
69 {
70 AVCodecParameters *par = s->streams[0]->codecpar;
71
72 return av_get_packet(s->pb, pkt, par->block_align);
73 }
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 };
83