FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavformat/msf.c
Date: 2024-04-23 16:28:37
Exec Total Coverage
Lines: 3 56 5.4%
Functions: 1 3 33.3%
Branches: 1 32 3.1%

Line Branch Exec Source
1 /*
2 * MSF 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 "demux.h"
25 #include "internal.h"
26
27 7125 static int msf_probe(const AVProbeData *p)
28 {
29
1/2
✓ Branch 0 taken 7125 times.
✗ Branch 1 not taken.
7125 if (memcmp(p->buf, "MSF", 3))
30 7125 return 0;
31
32 if (AV_RB32(p->buf+8) <= 0)
33 return 0;
34
35 if (AV_RB32(p->buf+16) <= 0)
36 return 0;
37
38 if (AV_RB32(p->buf+4) > 16)
39 return AVPROBE_SCORE_MAX / 5; //unsupported / unknown codec
40
41 return AVPROBE_SCORE_MAX / 3 * 2;
42 }
43
44 static int msf_read_header(AVFormatContext *s)
45 {
46 unsigned codec, size;
47 AVStream *st;
48 int ret;
49
50 avio_skip(s->pb, 4);
51
52 st = avformat_new_stream(s, NULL);
53 if (!st)
54 return AVERROR(ENOMEM);
55
56 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
57 codec = avio_rb32(s->pb);
58 st->codecpar->ch_layout.nb_channels = avio_rb32(s->pb);
59 if (st->codecpar->ch_layout.nb_channels <= 0 ||
60 st->codecpar->ch_layout.nb_channels >= INT_MAX / 1024)
61 return AVERROR_INVALIDDATA;
62 size = avio_rb32(s->pb);
63 st->codecpar->sample_rate = avio_rb32(s->pb);
64 if (st->codecpar->sample_rate <= 0)
65 return AVERROR_INVALIDDATA;
66 // avio_rb32(s->pb); /* byte flags with encoder info */
67 switch (codec) {
68 case 0: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE; break;
69 case 1: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE; break;
70 case 3: st->codecpar->block_align = 16 * st->codecpar->ch_layout.nb_channels;
71 st->codecpar->codec_id = AV_CODEC_ID_ADPCM_PSX; break;
72 case 4:
73 case 5:
74 case 6: st->codecpar->block_align = (codec == 4 ? 96 : codec == 5 ? 152 : 192) * st->codecpar->ch_layout.nb_channels;
75 if (st->codecpar->ch_layout.nb_channels > UINT16_MAX / 2048)
76 return AVERROR_INVALIDDATA;
77 ret = ff_alloc_extradata(st->codecpar, 14);
78 if (ret < 0)
79 return ret;
80 memset(st->codecpar->extradata, 0, st->codecpar->extradata_size);
81 AV_WL16(st->codecpar->extradata, 1); /* version */
82 AV_WL16(st->codecpar->extradata+2, 2048 * st->codecpar->ch_layout.nb_channels); /* unknown size */
83 AV_WL16(st->codecpar->extradata+6, codec == 4 ? 1 : 0); /* joint stereo */
84 AV_WL16(st->codecpar->extradata+8, codec == 4 ? 1 : 0); /* joint stereo (repeat?) */
85 AV_WL16(st->codecpar->extradata+10, 1);
86 st->codecpar->codec_id = AV_CODEC_ID_ATRAC3; break;
87 case 7: ffstream(st)->need_parsing = AVSTREAM_PARSE_FULL_RAW;
88 st->codecpar->codec_id = AV_CODEC_ID_MP3; break;
89 default:
90 avpriv_request_sample(s, "Codec %d", codec);
91 return AVERROR_PATCHWELCOME;
92 }
93 st->duration = av_get_audio_frame_duration2(st->codecpar, size);
94 avio_skip(s->pb, 0x40 - avio_tell(s->pb));
95 avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
96
97 return 0;
98 }
99
100 static int msf_read_packet(AVFormatContext *s, AVPacket *pkt)
101 {
102 AVCodecParameters *par = s->streams[0]->codecpar;
103
104 return av_get_packet(s->pb, pkt, par->block_align ? par->block_align : 1024 * par->ch_layout.nb_channels);
105 }
106
107 const FFInputFormat ff_msf_demuxer = {
108 .p.name = "msf",
109 .p.long_name = NULL_IF_CONFIG_SMALL("Sony PS3 MSF"),
110 .p.extensions = "msf",
111 .read_probe = msf_probe,
112 .read_header = msf_read_header,
113 .read_packet = msf_read_packet,
114 };
115