1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-16 08:38:24 +02:00
Files
FFmpeg/libavformat/mtv.c
T

234 lines
7.0 KiB
C
Raw Normal View History

2006-10-12 01:04:32 +00:00
/*
* mtv demuxer
* Copyright (c) 2006 Reynaldo H. Verdejo Pinochet
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file
2006-10-12 01:04:32 +00:00
* MTV demuxer.
*/
#include "libavutil/bswap.h"
#include "libavutil/intreadwrite.h"
2006-10-12 01:04:32 +00:00
#include "avformat.h"
2011-11-29 19:28:15 +01:00
#include "internal.h"
2006-10-12 01:04:32 +00:00
#define MTV_ASUBCHUNK_DATA_SIZE 500
#define MTV_HEADER_SIZE 512
#define MTV_AUDIO_PADDING_SIZE 12
#define MTV_IMAGE_DEFAULT_BPP 16
#define MTV_AUDIO_SAMPLING_RATE 44100
2006-10-12 01:04:32 +00:00
typedef struct MTVDemuxContext {
2008-12-07 01:53:31 +00:00
unsigned int file_size; ///< filesize, not always right
unsigned int segments; ///< number of 512 byte segments
unsigned int audio_identifier; ///< 'MP3' on all files I have seen
2009-11-05 02:04:21 +00:00
unsigned int audio_br; ///< bitrate of audio channel (mp3)
2008-12-07 01:53:31 +00:00
unsigned int img_colorfmt; ///< frame colorfmt rgb 565/555
unsigned int img_bpp; ///< frame bits per pixel
2013-05-23 14:46:01 +02:00
unsigned int img_width;
unsigned int img_height;
2008-12-07 01:53:31 +00:00
unsigned int img_segment_size; ///< size of image segment
2013-05-23 14:46:01 +02:00
unsigned int video_fps;
2008-12-07 01:53:31 +00:00
unsigned int full_segment_size;
2006-10-12 01:04:32 +00:00
} MTVDemuxContext;
static int mtv_probe(AVProbeData *p)
{
/* we need at least 57 bytes from the header
* to try parsing all required fields
*/
if (p->buf_size < 57)
return 0;
2006-10-12 01:04:32 +00:00
/* Magic is 'AMV' */
2012-01-07 19:07:42 +01:00
if (*p->buf != 'A' || *(p->buf + 1) != 'M' || *(p->buf + 2) != 'V')
2006-10-12 01:04:32 +00:00
return 0;
2014-01-24 18:40:04 -03:00
/* Audio magic is always MP3 */
if (p->buf[43] != 'M' || p->buf[44] != 'P' || p->buf[45] != '3')
return 0;
/* Check for nonzero in bpp and (width|height) header fields */
if(!(p->buf[51] && AV_RL16(&p->buf[52]) | AV_RL16(&p->buf[54])))
return 0;
/* If width or height are 0 then imagesize header field should not */
2009-10-19 01:42:05 +00:00
if(!AV_RL16(&p->buf[52]) || !AV_RL16(&p->buf[54]))
{
if(!!AV_RL16(&p->buf[56]))
return AVPROBE_SCORE_EXTENSION;
else
return 0;
}
/* Image bpp is not an absolutely required
* field as we latter claim it should be 16
* no matter what. All samples in the wild
* are RGB565/555.
*/
if(p->buf[51] != MTV_IMAGE_DEFAULT_BPP)
return AVPROBE_SCORE_EXTENSION / 2;
2009-11-05 01:59:07 +00:00
/* We had enough data to parse header values
* but we expect to be able to get 512 bytes
* of header to be sure.
*/
if (p->buf_size < MTV_HEADER_SIZE)
return AVPROBE_SCORE_EXTENSION;
2006-10-12 01:04:32 +00:00
return AVPROBE_SCORE_MAX;
}
static int mtv_read_header(AVFormatContext *s)
2006-10-12 01:04:32 +00:00
{
2008-12-07 01:53:31 +00:00
MTVDemuxContext *mtv = s->priv_data;
2011-02-20 11:04:12 +01:00
AVIOContext *pb = s->pb;
2008-12-07 01:53:31 +00:00
AVStream *st;
unsigned int audio_subsegments;
2006-10-12 01:04:32 +00:00
avio_skip(pb, 3);
2011-02-21 16:43:01 +01:00
mtv->file_size = avio_rl32(pb);
mtv->segments = avio_rl32(pb);
avio_skip(pb, 32);
2011-02-21 16:43:01 +01:00
mtv->audio_identifier = avio_rl24(pb);
mtv->audio_br = avio_rl16(pb);
mtv->img_colorfmt = avio_rl24(pb);
mtv->img_bpp = avio_r8(pb);
mtv->img_width = avio_rl16(pb);
mtv->img_height = avio_rl16(pb);
mtv->img_segment_size = avio_rl16(pb);
/* Assume 16bpp even if claimed otherwise.
* We know its going to be RGBG565/555 anyway
*/
if (mtv->img_bpp != MTV_IMAGE_DEFAULT_BPP) {
av_log (s, AV_LOG_WARNING, "Header claims %dbpp (!= 16). Ignoring\n",
mtv->img_bpp);
mtv->img_bpp = MTV_IMAGE_DEFAULT_BPP;
}
/* Calculate width and height if missing from header */
if (!mtv->img_width && mtv->img_height > 0 && mtv->img_bpp >= 8)
mtv->img_width=mtv->img_segment_size / (mtv->img_bpp>>3)
/ mtv->img_height;
if (!mtv->img_height && mtv->img_width > 0 && mtv->img_bpp >= 8)
mtv->img_height=mtv->img_segment_size / (mtv->img_bpp>>3)
/ mtv->img_width;
2013-09-29 20:09:56 +02:00
if(!mtv->img_height || !mtv->img_width || !mtv->img_segment_size){
av_log(s, AV_LOG_ERROR, "width or height or segment_size is invalid and I cannot calculate them from other information\n");
return AVERROR_INVALIDDATA;
2011-12-15 00:26:14 +01:00
}
avio_skip(pb, 4);
2011-02-21 16:43:01 +01:00
audio_subsegments = avio_rl16(pb);
2011-12-16 00:36:27 +05:30
if (audio_subsegments == 0) {
avpriv_request_sample(s, "MTV files without audio");
return AVERROR_PATCHWELCOME;
2011-12-15 00:26:14 +01:00
}
2011-12-16 00:36:27 +05:30
mtv->full_segment_size =
audio_subsegments * (MTV_AUDIO_PADDING_SIZE + MTV_ASUBCHUNK_DATA_SIZE) +
mtv->img_segment_size;
mtv->video_fps = (mtv->audio_br / 4) / audio_subsegments;
2006-10-12 01:04:32 +00:00
2008-11-18 03:49:33 +00:00
// FIXME Add sanity check here
2006-10-12 01:04:32 +00:00
2008-11-18 03:49:33 +00:00
// all systems go! init decoders
2006-10-12 01:04:32 +00:00
2008-11-18 03:49:33 +00:00
// video - raw rgb565
2006-10-12 01:04:32 +00:00
st = avformat_new_stream(s, NULL);
2006-10-12 01:04:32 +00:00
if(!st)
return AVERROR(ENOMEM);
2006-10-12 01:04:32 +00:00
2011-11-29 19:28:15 +01:00
avpriv_set_pts_info(st, 64, 1, mtv->video_fps);
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2012-08-05 11:11:04 +02:00
st->codec->codec_id = AV_CODEC_ID_RAWVIDEO;
st->codec->pix_fmt = AV_PIX_FMT_RGB565BE;
2006-10-12 01:04:32 +00:00
st->codec->width = mtv->img_width;
st->codec->height = mtv->img_height;
st->codec->extradata = av_strdup("BottomUp");
st->codec->extradata_size = 9;
2006-10-12 01:04:32 +00:00
2008-11-18 03:49:33 +00:00
// audio - mp3
2006-10-12 01:04:32 +00:00
st = avformat_new_stream(s, NULL);
2006-10-12 01:04:32 +00:00
if(!st)
return AVERROR(ENOMEM);
2006-10-12 01:04:32 +00:00
avpriv_set_pts_info(st, 64, 1, MTV_AUDIO_SAMPLING_RATE);
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
2012-08-05 11:11:04 +02:00
st->codec->codec_id = AV_CODEC_ID_MP3;
2006-10-12 01:04:32 +00:00
st->codec->bit_rate = mtv->audio_br;
2007-04-15 13:51:57 +00:00
st->need_parsing = AVSTREAM_PARSE_FULL;
2006-10-12 01:04:32 +00:00
2008-11-18 03:49:33 +00:00
// Jump over header
2006-10-12 01:04:32 +00:00
2011-02-28 14:57:54 +01:00
if(avio_seek(pb, MTV_HEADER_SIZE, SEEK_SET) != MTV_HEADER_SIZE)
return AVERROR(EIO);
2006-10-12 01:04:32 +00:00
return 0;
2006-10-12 01:04:32 +00:00
}
static int mtv_read_packet(AVFormatContext *s, AVPacket *pkt)
{
MTVDemuxContext *mtv = s->priv_data;
2011-02-20 11:04:12 +01:00
AVIOContext *pb = s->pb;
2006-10-12 01:04:32 +00:00
int ret;
if((avio_tell(pb) - s->internal->data_offset + mtv->img_segment_size) % mtv->full_segment_size)
2006-10-12 01:04:32 +00:00
{
avio_skip(pb, MTV_AUDIO_PADDING_SIZE);
2006-10-12 01:04:32 +00:00
ret = av_get_packet(pb, pkt, MTV_ASUBCHUNK_DATA_SIZE);
2010-03-02 21:32:56 +00:00
if(ret < 0)
return ret;
2006-10-12 01:04:32 +00:00
pkt->pos -= MTV_AUDIO_PADDING_SIZE;
pkt->stream_index = 1;
2006-10-12 01:04:32 +00:00
}else
{
ret = av_get_packet(pb, pkt, mtv->img_segment_size);
2010-03-02 21:32:56 +00:00
if(ret < 0)
return ret;
2006-10-12 01:04:32 +00:00
pkt->stream_index = 0;
2006-10-12 01:04:32 +00:00
}
return ret;
2006-10-12 01:04:32 +00:00
}
AVInputFormat ff_mtv_demuxer = {
.name = "mtv",
.long_name = NULL_IF_CONFIG_SMALL("MTV"),
.priv_data_size = sizeof(MTVDemuxContext),
.read_probe = mtv_probe,
.read_header = mtv_read_header,
.read_packet = mtv_read_packet,
2006-10-12 01:04:32 +00:00
};