]> git.sesse.net Git - ffmpeg/blob - libavformat/mtv.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / mtv.c
1 /*
2  * mtv demuxer
3  * Copyright (c) 2006 Reynaldo H. Verdejo Pinochet
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 /**
23  * @file
24  * MTV demuxer.
25  */
26
27 #include "libavutil/bswap.h"
28 #include "libavutil/intreadwrite.h"
29 #include "avformat.h"
30 #include "internal.h"
31
32 #define MTV_ASUBCHUNK_DATA_SIZE 500
33 #define MTV_HEADER_SIZE 512
34 #define MTV_AUDIO_PADDING_SIZE 12
35 #define AUDIO_SAMPLING_RATE 44100
36
37 typedef struct MTVDemuxContext {
38
39     unsigned int file_size;         ///< filesize, not always right
40     unsigned int segments;          ///< number of 512 byte segments
41     unsigned int audio_identifier;  ///< 'MP3' on all files I have seen
42     unsigned int audio_br;          ///< bitrate of audio channel (mp3)
43     unsigned int img_colorfmt;      ///< frame colorfmt rgb 565/555
44     unsigned int img_bpp;           ///< frame bits per pixel
45     unsigned int img_width;         //
46     unsigned int img_height;        //
47     unsigned int img_segment_size;  ///< size of image segment
48     unsigned int video_fps;         //
49     unsigned int full_segment_size;
50
51 } MTVDemuxContext;
52
53 static int mtv_probe(AVProbeData *p)
54 {
55     /* Magic is 'AMV' */
56     if(*(p->buf) != 'A' || *(p->buf+1) != 'M' || *(p->buf+2) != 'V')
57         return 0;
58
59     /* Check for nonzero in bpp and (width|height) header fields */
60     if(!(p->buf[51] && AV_RL16(&p->buf[52]) | AV_RL16(&p->buf[54])))
61         return 0;
62
63     /* If width or height are 0 then imagesize header field should not */
64     if(!AV_RL16(&p->buf[52]) || !AV_RL16(&p->buf[54]))
65     {
66         if(!!AV_RL16(&p->buf[56]))
67             return AVPROBE_SCORE_MAX/2;
68         else
69             return 0;
70     }
71
72     if(p->buf[51] != 16)
73         return AVPROBE_SCORE_MAX/4; // But we are going to assume 16bpp anyway ..
74
75     return AVPROBE_SCORE_MAX;
76 }
77
78 static int mtv_read_header(AVFormatContext *s, AVFormatParameters *ap)
79 {
80     MTVDemuxContext *mtv = s->priv_data;
81     AVIOContext   *pb  = s->pb;
82     AVStream        *st;
83     unsigned int    audio_subsegments;
84
85     avio_skip(pb, 3);
86     mtv->file_size         = avio_rl32(pb);
87     mtv->segments          = avio_rl32(pb);
88     avio_skip(pb, 32);
89     mtv->audio_identifier  = avio_rl24(pb);
90     mtv->audio_br          = avio_rl16(pb);
91     mtv->img_colorfmt      = avio_rl24(pb);
92     mtv->img_bpp           = avio_r8(pb);
93     mtv->img_width         = avio_rl16(pb);
94     mtv->img_height        = avio_rl16(pb);
95     mtv->img_segment_size  = avio_rl16(pb);
96
97     /* Calculate width and height if missing from header */
98
99     if(mtv->img_bpp>>3){
100     if(!mtv->img_width && mtv->img_height)
101         mtv->img_width=mtv->img_segment_size / (mtv->img_bpp>>3)
102                         / mtv->img_height;
103
104     if(!mtv->img_height && mtv->img_width)
105         mtv->img_height=mtv->img_segment_size / (mtv->img_bpp>>3)
106                         / mtv->img_width;
107     }
108     if(!mtv->img_height || !mtv->img_width){
109         av_log(s, AV_LOG_ERROR, "width or height is invalid and I cannot calculate them from other information\n");
110         return AVERROR(EINVAL);
111     }
112
113     avio_skip(pb, 4);
114     audio_subsegments = avio_rl16(pb);
115     if(!audio_subsegments){
116         av_log(s, AV_LOG_ERROR, "audio_subsegments is 0\n");
117         return AVERROR(EINVAL);
118     }
119     mtv->full_segment_size =
120         audio_subsegments * (MTV_AUDIO_PADDING_SIZE + MTV_ASUBCHUNK_DATA_SIZE) +
121         mtv->img_segment_size;
122     mtv->video_fps         = (mtv->audio_br / 4) / audio_subsegments;
123
124     // FIXME Add sanity check here
125
126     // all systems go! init decoders
127
128     // video - raw rgb565
129
130     st = avformat_new_stream(s, NULL);
131     if(!st)
132         return AVERROR(ENOMEM);
133
134     avpriv_set_pts_info(st, 64, 1, mtv->video_fps);
135     st->codec->codec_type      = AVMEDIA_TYPE_VIDEO;
136     st->codec->codec_id        = CODEC_ID_RAWVIDEO;
137     st->codec->pix_fmt         = PIX_FMT_RGB565;
138     st->codec->width           = mtv->img_width;
139     st->codec->height          = mtv->img_height;
140     st->codec->sample_rate     = mtv->video_fps;
141     st->codec->extradata       = av_strdup("BottomUp");
142     st->codec->extradata_size  = 9;
143
144     // audio - mp3
145
146     st = avformat_new_stream(s, NULL);
147     if(!st)
148         return AVERROR(ENOMEM);
149
150     avpriv_set_pts_info(st, 64, 1, AUDIO_SAMPLING_RATE);
151     st->codec->codec_type      = AVMEDIA_TYPE_AUDIO;
152     st->codec->codec_id        = CODEC_ID_MP3;
153     st->codec->bit_rate        = mtv->audio_br;
154     st->need_parsing           = AVSTREAM_PARSE_FULL;
155
156     // Jump over header
157
158     if(avio_seek(pb, MTV_HEADER_SIZE, SEEK_SET) != MTV_HEADER_SIZE)
159         return AVERROR(EIO);
160
161     return 0;
162
163 }
164
165 static int mtv_read_packet(AVFormatContext *s, AVPacket *pkt)
166 {
167     MTVDemuxContext *mtv = s->priv_data;
168     AVIOContext *pb = s->pb;
169     int ret;
170 #if !HAVE_BIGENDIAN
171     int i;
172 #endif
173
174     if((avio_tell(pb) - s->data_offset + mtv->img_segment_size) % mtv->full_segment_size)
175     {
176         avio_skip(pb, MTV_AUDIO_PADDING_SIZE);
177
178         ret = av_get_packet(pb, pkt, MTV_ASUBCHUNK_DATA_SIZE);
179         if(ret < 0)
180             return ret;
181
182         pkt->pos -= MTV_AUDIO_PADDING_SIZE;
183         pkt->stream_index = 1;
184
185     }else
186     {
187         ret = av_get_packet(pb, pkt, mtv->img_segment_size);
188         if(ret < 0)
189             return ret;
190
191 #if !HAVE_BIGENDIAN
192
193         /* pkt->data is GGGRRRR BBBBBGGG
194          * and we need RRRRRGGG GGGBBBBB
195          * for PIX_FMT_RGB565 so here we
196          * just swap bytes as they come
197          */
198
199         for(i=0;i<mtv->img_segment_size/2;i++)
200             *((uint16_t *)pkt->data+i) = av_bswap16(*((uint16_t *)pkt->data+i));
201 #endif
202         pkt->stream_index = 0;
203     }
204
205     return ret;
206 }
207
208 AVInputFormat ff_mtv_demuxer = {
209     .name           = "MTV",
210     .long_name      = NULL_IF_CONFIG_SMALL("MTV format"),
211     .priv_data_size = sizeof(MTVDemuxContext),
212     .read_probe     = mtv_probe,
213     .read_header    = mtv_read_header,
214     .read_packet    = mtv_read_packet,
215 };