/src/ffmpeg/libavformat/msf.c
Line | Count | 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 | | static int msf_probe(const AVProbeData *p) |
28 | 958k | { |
29 | 958k | if (memcmp(p->buf, "MSF", 3)) |
30 | 955k | return 0; |
31 | | |
32 | 2.98k | if (AV_RB32(p->buf+8) <= 0) |
33 | 299 | return 0; |
34 | | |
35 | 2.68k | if (AV_RB32(p->buf+16) <= 0) |
36 | 460 | return 0; |
37 | | |
38 | 2.22k | if (AV_RB32(p->buf+4) > 16) |
39 | 1.96k | return AVPROBE_SCORE_MAX / 5; //unsupported / unknown codec |
40 | | |
41 | 257 | return AVPROBE_SCORE_MAX / 3 * 2; |
42 | 2.22k | } |
43 | | |
44 | | static int msf_read_header(AVFormatContext *s) |
45 | 2.49k | { |
46 | 2.49k | unsigned codec, size; |
47 | 2.49k | AVStream *st; |
48 | 2.49k | int ret; |
49 | | |
50 | 2.49k | avio_skip(s->pb, 4); |
51 | | |
52 | 2.49k | st = avformat_new_stream(s, NULL); |
53 | 2.49k | if (!st) |
54 | 0 | return AVERROR(ENOMEM); |
55 | | |
56 | 2.49k | st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO; |
57 | 2.49k | codec = avio_rb32(s->pb); |
58 | 2.49k | st->codecpar->ch_layout.nb_channels = avio_rb32(s->pb); |
59 | 2.49k | if (st->codecpar->ch_layout.nb_channels <= 0 || |
60 | 2.34k | st->codecpar->ch_layout.nb_channels >= INT_MAX / 1024) |
61 | 190 | return AVERROR_INVALIDDATA; |
62 | 2.30k | size = avio_rb32(s->pb); |
63 | 2.30k | st->codecpar->sample_rate = avio_rb32(s->pb); |
64 | 2.30k | if (st->codecpar->sample_rate <= 0) |
65 | 68 | return AVERROR_INVALIDDATA; |
66 | | // avio_rb32(s->pb); /* byte flags with encoder info */ |
67 | 2.23k | switch (codec) { |
68 | 282 | case 0: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16BE; break; |
69 | 49 | case 1: st->codecpar->codec_id = AV_CODEC_ID_PCM_S16LE; break; |
70 | 375 | case 3: st->codecpar->block_align = 16 * st->codecpar->ch_layout.nb_channels; |
71 | 375 | st->codecpar->codec_id = AV_CODEC_ID_ADPCM_PSX; break; |
72 | 46 | case 4: |
73 | 77 | case 5: |
74 | 117 | case 6: st->codecpar->block_align = (codec == 4 ? 96 : codec == 5 ? 152 : 192) * st->codecpar->ch_layout.nb_channels; |
75 | 117 | if (st->codecpar->ch_layout.nb_channels > UINT16_MAX / 2048) |
76 | 20 | return AVERROR_INVALIDDATA; |
77 | 97 | ret = ff_alloc_extradata(st->codecpar, 14); |
78 | 97 | if (ret < 0) |
79 | 0 | return ret; |
80 | 97 | memset(st->codecpar->extradata, 0, st->codecpar->extradata_size); |
81 | 97 | AV_WL16(st->codecpar->extradata, 1); /* version */ |
82 | 97 | AV_WL16(st->codecpar->extradata+2, 2048 * st->codecpar->ch_layout.nb_channels); /* unknown size */ |
83 | 97 | AV_WL16(st->codecpar->extradata+6, codec == 4 ? 1 : 0); /* joint stereo */ |
84 | 97 | AV_WL16(st->codecpar->extradata+8, codec == 4 ? 1 : 0); /* joint stereo (repeat?) */ |
85 | 97 | AV_WL16(st->codecpar->extradata+10, 1); |
86 | 97 | st->codecpar->codec_id = AV_CODEC_ID_ATRAC3; break; |
87 | 1.40k | case 7: ffstream(st)->need_parsing = AVSTREAM_PARSE_FULL_RAW; |
88 | 1.40k | st->codecpar->codec_id = AV_CODEC_ID_MP3; break; |
89 | 5 | default: |
90 | 5 | avpriv_request_sample(s, "Codec %d", codec); |
91 | 5 | return AVERROR_PATCHWELCOME; |
92 | 2.23k | } |
93 | 2.21k | st->duration = av_get_audio_frame_duration2(st->codecpar, size); |
94 | 2.21k | avio_skip(s->pb, 0x40 - avio_tell(s->pb)); |
95 | 2.21k | avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate); |
96 | | |
97 | 2.21k | return 0; |
98 | 2.23k | } |
99 | | |
100 | | static int msf_read_packet(AVFormatContext *s, AVPacket *pkt) |
101 | 73.9k | { |
102 | 73.9k | AVCodecParameters *par = s->streams[0]->codecpar; |
103 | | |
104 | 73.9k | return av_get_packet(s->pb, pkt, par->block_align ? par->block_align : 1024 * par->ch_layout.nb_channels); |
105 | 73.9k | } |
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 | | }; |