]> git.sesse.net Git - ffmpeg/blob - libavformat/pmpdec.c
Merge remote-tracking branch 'cus/stable'
[ffmpeg] / libavformat / pmpdec.c
1 /*
2  * PMP demuxer.
3  * Copyright (c) 2011 Reimar Döffinger
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
25 typedef struct {
26     int cur_stream;
27     int num_streams;
28     int audio_packets;
29     int current_packet;
30     uint32_t *packet_sizes;
31     int packet_sizes_alloc;
32 } PMPContext;
33
34 static int pmp_probe(AVProbeData *p) {
35     if (AV_RN32(p->buf) == AV_RN32("pmpm") &&
36         AV_RL32(p->buf + 4) == 1)
37         return AVPROBE_SCORE_MAX;
38     return 0;
39 }
40
41 static int pmp_header(AVFormatContext *s, AVFormatParameters *ap) {
42     PMPContext *pmp = s->priv_data;
43     AVIOContext *pb = s->pb;
44     int tb_num, tb_den;
45     int index_cnt;
46     int audio_codec_id = CODEC_ID_NONE;
47     int srate, channels;
48     int i;
49     uint64_t pos;
50     AVStream *vst = avformat_new_stream(s, NULL);
51     if (!vst)
52         return AVERROR(ENOMEM);
53     vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
54     avio_skip(pb, 8);
55     switch (avio_rl32(pb)) {
56     case 0:
57         vst->codec->codec_id = CODEC_ID_MPEG4;
58         break;
59     case 1:
60         vst->codec->codec_id = CODEC_ID_H264;
61         break;
62     default:
63         av_log(s, AV_LOG_ERROR, "Unsupported video format\n");
64         break;
65     }
66     index_cnt = avio_rl32(pb);
67     vst->codec->width  = avio_rl32(pb);
68     vst->codec->height = avio_rl32(pb);
69
70     tb_num = avio_rl32(pb);
71     tb_den = avio_rl32(pb);
72     av_set_pts_info(vst, 32, tb_num, tb_den);
73     vst->nb_frames = index_cnt;
74     vst->duration = index_cnt;
75
76     switch (avio_rl32(pb)) {
77     case 0:
78         audio_codec_id = CODEC_ID_MP3;
79         break;
80     case 1:
81         av_log(s, AV_LOG_ERROR, "AAC not yet correctly supported\n");
82         audio_codec_id = CODEC_ID_AAC;
83         break;
84     default:
85         av_log(s, AV_LOG_ERROR, "Unsupported audio format\n");
86         break;
87     }
88     pmp->num_streams = avio_rl16(pb) + 1;
89     avio_skip(pb, 10);
90     srate = avio_rl32(pb);
91     channels = avio_rl32(pb) + 1;
92     for (i = 1; i < pmp->num_streams; i++) {
93         AVStream *ast = avformat_new_stream(s, NULL);
94         if (!ast)
95             return AVERROR(ENOMEM);
96         ast->id = i;
97         ast->codec->codec_type = AVMEDIA_TYPE_AUDIO;
98         ast->codec->codec_id = audio_codec_id;
99         ast->codec->channels = channels;
100         ast->codec->sample_rate = srate;
101         av_set_pts_info(ast, 32, 1, srate);
102     }
103     pos = avio_tell(pb) + 4*index_cnt;
104     for (i = 0; i < index_cnt; i++) {
105         int size = avio_rl32(pb);
106         int flags = size & 1 ? AVINDEX_KEYFRAME : 0;
107         size >>= 1;
108         av_add_index_entry(vst, pos, i, size, 0, flags);
109         pos += size;
110     }
111     return 0;
112 }
113
114 static int pmp_packet(AVFormatContext *s, AVPacket *pkt) {
115     PMPContext *pmp = s->priv_data;
116     AVIOContext *pb = s->pb;
117     int ret = 0;
118     int i;
119
120     if (url_feof(pb))
121         return AVERROR_EOF;
122     if (pmp->cur_stream == 0) {
123         int num_packets;
124         pmp->audio_packets = avio_r8(pb);
125         num_packets = (pmp->num_streams - 1) * pmp->audio_packets + 1;
126         avio_skip(pb, 8);
127         pmp->current_packet = 0;
128         av_fast_malloc(&pmp->packet_sizes,
129                        &pmp->packet_sizes_alloc,
130                        num_packets * sizeof(*pmp->packet_sizes));
131         for (i = 0; i < num_packets; i++)
132             pmp->packet_sizes[i] = avio_rl32(pb);
133     }
134     ret = av_get_packet(pb, pkt, pmp->packet_sizes[pmp->current_packet]);
135     if (ret >= 0) {
136         ret = 0;
137         // FIXME: this is a hack that should be remove once
138         // compute_pkt_fields can handle
139         if (pmp->cur_stream == 0)
140             pkt->dts = s->streams[0]->cur_dts++;
141         pkt->stream_index = pmp->cur_stream;
142     }
143     if (pmp->current_packet % pmp->audio_packets == 0)
144         pmp->cur_stream = (pmp->cur_stream + 1) % pmp->num_streams;
145     pmp->current_packet++;
146     return ret;
147 }
148
149 static int pmp_seek(AVFormatContext *s, int stream_index,
150                      int64_t ts, int flags) {
151     PMPContext *pmp = s->priv_data;
152     pmp->cur_stream = 0;
153     // fallback to default seek now
154     return -1;
155 }
156
157 static int pmp_close(AVFormatContext *s)
158 {
159     PMPContext *pmp = s->priv_data;
160     av_freep(&pmp->packet_sizes);
161     return 0;
162 }
163
164 AVInputFormat ff_pmp_demuxer = {
165     .name           = "pmp",
166     .long_name      = NULL_IF_CONFIG_SMALL("Playstation Portable PMP format"),
167     .priv_data_size = sizeof(PMPContext),
168     .read_probe     = pmp_probe,
169     .read_header    = pmp_header,
170     .read_packet    = pmp_packet,
171     .read_seek      = pmp_seek,
172     .read_close     = pmp_close,
173 };