2005-12-17 18:14:38 +00:00
|
|
|
/*
|
2010-08-30 23:16:35 +00:00
|
|
|
* RAW demuxers
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2005-10-29 00:52:02 +00:00
|
|
|
* Copyright (c) 2005 Alex Beregszaszi
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-05-25 22:34:32 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2001-07-22 14:18:56 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-25 22:34:32 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 14:18:56 +00:00
|
|
|
*
|
2002-05-25 22:34:32 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 14:18:56 +00:00
|
|
|
*/
|
2008-05-09 11:56:36 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
#include "avformat.h"
|
2010-08-30 23:16:35 +00:00
|
|
|
#include "rawdec.h"
|
2001-07-22 14:18:56 +00:00
|
|
|
|
|
|
|
/* raw input */
|
2010-08-30 21:17:34 +00:00
|
|
|
int ff_raw_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2009-11-08 23:48:15 +00:00
|
|
|
enum CodecID id;
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2002-05-20 16:31:13 +00:00
|
|
|
st = av_new_stream(s, 0);
|
2001-07-22 14:18:56 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2006-03-11 00:22:21 +00:00
|
|
|
|
2002-05-20 16:31:13 +00:00
|
|
|
id = s->iformat->value;
|
|
|
|
if (id == CODEC_ID_RAWVIDEO) {
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2001-07-22 14:18:56 +00:00
|
|
|
} else {
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id = id;
|
2002-05-20 16:31:13 +00:00
|
|
|
|
2005-07-17 22:24:36 +00:00
|
|
|
switch(st->codec->codec_type) {
|
2010-03-30 23:30:55 +00:00
|
|
|
case AVMEDIA_TYPE_AUDIO:
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->sample_rate = ap->sample_rate;
|
2008-10-18 10:40:31 +00:00
|
|
|
if(ap->channels) st->codec->channels = ap->channels;
|
|
|
|
else st->codec->channels = 1;
|
2009-04-12 00:25:37 +00:00
|
|
|
st->codec->bits_per_coded_sample = av_get_bits_per_sample(st->codec->codec_id);
|
|
|
|
assert(st->codec->bits_per_coded_sample > 0);
|
|
|
|
st->codec->block_align = st->codec->bits_per_coded_sample*st->codec->channels/8;
|
2005-07-17 22:24:36 +00:00
|
|
|
av_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
2010-03-30 23:30:55 +00:00
|
|
|
case AVMEDIA_TYPE_VIDEO:
|
2007-12-26 22:28:22 +00:00
|
|
|
if(ap->time_base.num)
|
|
|
|
av_set_pts_info(st, 64, ap->time_base.num, ap->time_base.den);
|
|
|
|
else
|
|
|
|
av_set_pts_info(st, 64, 1, 25);
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->width = ap->width;
|
|
|
|
st->codec->height = ap->height;
|
|
|
|
st->codec->pix_fmt = ap->pix_fmt;
|
|
|
|
if(st->codec->pix_fmt == PIX_FMT_NONE)
|
|
|
|
st->codec->pix_fmt= PIX_FMT_YUV420P;
|
2001-07-22 14:18:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
2001-08-15 13:06:33 +00:00
|
|
|
return -1;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-09-15 22:44:44 +00:00
|
|
|
#define RAW_PACKET_SIZE 1024
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2009-02-28 17:24:46 +00:00
|
|
|
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
|
2004-03-15 03:29:32 +00:00
|
|
|
{
|
|
|
|
int ret, size;
|
|
|
|
|
|
|
|
size = RAW_PACKET_SIZE;
|
|
|
|
|
|
|
|
if (av_new_packet(pkt, size) < 0)
|
2009-10-01 16:10:09 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2007-11-21 07:41:00 +00:00
|
|
|
pkt->pos= url_ftell(s->pb);
|
2004-03-15 03:29:32 +00:00
|
|
|
pkt->stream_index = 0;
|
2007-11-21 07:41:00 +00:00
|
|
|
ret = get_partial_buffer(s->pb, pkt->data, size);
|
2009-10-02 06:40:50 +00:00
|
|
|
if (ret < 0) {
|
2004-03-15 03:29:32 +00:00
|
|
|
av_free_packet(pkt);
|
2009-10-02 06:40:50 +00:00
|
|
|
return ret;
|
2004-03-15 03:29:32 +00:00
|
|
|
}
|
|
|
|
pkt->size = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-07-07 11:11:08 +00:00
|
|
|
|
2010-08-29 19:00:40 +00:00
|
|
|
int ff_raw_audio_read_header(AVFormatContext *s,
|
2008-04-28 14:14:44 +00:00
|
|
|
AVFormatParameters *ap)
|
2006-02-08 00:51:55 +00:00
|
|
|
{
|
2008-04-28 14:14:44 +00:00
|
|
|
AVStream *st = av_new_stream(s, 0);
|
2006-02-08 00:51:55 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2008-04-28 14:14:44 +00:00
|
|
|
st->codec->codec_id = s->iformat->value;
|
2007-04-15 13:51:57 +00:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2006-02-08 00:51:55 +00:00
|
|
|
/* the parameters will be extracted from the compressed bitstream */
|
2009-01-25 00:16:27 +00:00
|
|
|
|
2006-02-08 00:51:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-15 16:33:12 +00:00
|
|
|
/* MPEG-1/H.263 input */
|
2010-08-29 19:16:04 +00:00
|
|
|
int ff_raw_video_read_header(AVFormatContext *s,
|
2001-07-22 14:18:56 +00:00
|
|
|
AVFormatParameters *ap)
|
|
|
|
{
|
|
|
|
AVStream *st;
|
|
|
|
|
2002-05-20 16:31:13 +00:00
|
|
|
st = av_new_stream(s, 0);
|
2001-07-22 14:18:56 +00:00
|
|
|
if (!st)
|
2007-07-19 15:21:30 +00:00
|
|
|
return AVERROR(ENOMEM);
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id = s->iformat->value;
|
2007-04-15 13:51:57 +00:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2003-11-10 18:41:45 +00:00
|
|
|
|
2008-08-15 16:33:12 +00:00
|
|
|
/* for MJPEG, specify frame rate */
|
|
|
|
/* for MPEG-4 specify it, too (most MPEG-4 streams do not have the fixed_vop_rate set ...)*/
|
2006-03-11 00:22:21 +00:00
|
|
|
if (ap->time_base.num) {
|
2009-03-01 03:48:35 +00:00
|
|
|
st->codec->time_base= ap->time_base;
|
2005-12-17 18:14:38 +00:00
|
|
|
} else if ( st->codec->codec_id == CODEC_ID_MJPEG ||
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id == CODEC_ID_MPEG4 ||
|
2008-05-02 14:52:39 +00:00
|
|
|
st->codec->codec_id == CODEC_ID_DIRAC ||
|
2009-12-13 22:12:20 +00:00
|
|
|
st->codec->codec_id == CODEC_ID_DNXHD ||
|
2010-06-11 13:28:42 +00:00
|
|
|
st->codec->codec_id == CODEC_ID_VC1 ||
|
2005-07-17 22:24:36 +00:00
|
|
|
st->codec->codec_id == CODEC_ID_H264) {
|
2009-03-01 03:48:35 +00:00
|
|
|
st->codec->time_base= (AVRational){1,25};
|
2001-08-15 13:06:33 +00:00
|
|
|
}
|
2009-03-01 03:48:35 +00:00
|
|
|
av_set_pts_info(st, 64, 1, 1200000);
|
2005-05-06 14:19:17 +00:00
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-07-07 10:45:36 +00:00
|
|
|
/* Note: Do not forget to add new entries to the Makefile as well. */
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_GSM_DEMUXER
|
2008-04-28 18:29:42 +00:00
|
|
|
AVInputFormat gsm_demuxer = {
|
|
|
|
"gsm",
|
2009-02-16 01:55:28 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("raw GSM"),
|
2008-04-28 18:29:42 +00:00
|
|
|
0,
|
|
|
|
NULL,
|
2010-08-29 19:00:40 +00:00
|
|
|
ff_raw_audio_read_header,
|
2009-02-28 17:24:46 +00:00
|
|
|
ff_raw_read_partial_packet,
|
2008-04-28 18:29:42 +00:00
|
|
|
.flags= AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "gsm",
|
|
|
|
.value = CODEC_ID_GSM,
|
|
|
|
};
|
2008-08-15 17:28:20 +00:00
|
|
|
#endif
|
2008-04-28 18:29:42 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MJPEG_DEMUXER
|
2008-07-07 11:11:08 +00:00
|
|
|
AVInputFormat mjpeg_demuxer = {
|
|
|
|
"mjpeg",
|
2009-02-16 01:55:28 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("raw MJPEG video"),
|
2003-04-04 14:42:28 +00:00
|
|
|
0,
|
2008-07-07 11:11:08 +00:00
|
|
|
NULL,
|
2010-08-29 19:16:04 +00:00
|
|
|
ff_raw_video_read_header,
|
2009-02-28 17:24:46 +00:00
|
|
|
ff_raw_read_partial_packet,
|
2007-02-05 23:04:48 +00:00
|
|
|
.flags= AVFMT_GENERIC_INDEX,
|
2008-07-07 11:11:08 +00:00
|
|
|
.extensions = "mjpg,mjpeg",
|
|
|
|
.value = CODEC_ID_MJPEG,
|
2003-04-04 14:42:28 +00:00
|
|
|
};
|
2008-08-15 17:28:20 +00:00
|
|
|
#endif
|
2003-04-04 14:42:28 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MLP_DEMUXER
|
2008-07-07 11:11:08 +00:00
|
|
|
AVInputFormat mlp_demuxer = {
|
|
|
|
"mlp",
|
|
|
|
NULL_IF_CONFIG_SMALL("raw MLP"),
|
2002-05-20 16:31:13 +00:00
|
|
|
0,
|
2008-07-07 11:11:08 +00:00
|
|
|
NULL,
|
2010-08-29 19:00:40 +00:00
|
|
|
ff_raw_audio_read_header,
|
2009-02-28 17:24:46 +00:00
|
|
|
ff_raw_read_partial_packet,
|
2007-02-05 23:04:48 +00:00
|
|
|
.flags= AVFMT_GENERIC_INDEX,
|
2008-07-07 11:11:08 +00:00
|
|
|
.extensions = "mlp",
|
|
|
|
.value = CODEC_ID_MLP,
|
2001-07-22 14:18:56 +00:00
|
|
|
};
|
2008-08-15 17:28:20 +00:00
|
|
|
#endif
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2009-03-19 21:46:56 +00:00
|
|
|
#if CONFIG_TRUEHD_DEMUXER
|
|
|
|
AVInputFormat truehd_demuxer = {
|
|
|
|
"truehd",
|
|
|
|
NULL_IF_CONFIG_SMALL("raw TrueHD"),
|
|
|
|
0,
|
|
|
|
NULL,
|
2010-08-29 19:00:40 +00:00
|
|
|
ff_raw_audio_read_header,
|
2009-03-19 21:46:56 +00:00
|
|
|
ff_raw_read_partial_packet,
|
|
|
|
.flags= AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "thd",
|
|
|
|
.value = CODEC_ID_TRUEHD,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_SHORTEN_DEMUXER
|
2008-07-07 11:11:08 +00:00
|
|
|
AVInputFormat shorten_demuxer = {
|
|
|
|
"shn",
|
|
|
|
NULL_IF_CONFIG_SMALL("raw Shorten"),
|
|
|
|
0,
|
|
|
|
NULL,
|
2010-08-29 19:00:40 +00:00
|
|
|
ff_raw_audio_read_header,
|
2009-02-28 17:24:46 +00:00
|
|
|
ff_raw_read_partial_packet,
|
2008-07-07 11:11:08 +00:00
|
|
|
.flags= AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "shn",
|
|
|
|
.value = CODEC_ID_SHORTEN,
|
|
|
|
};
|
2008-08-15 17:28:20 +00:00
|
|
|
#endif
|
2008-07-07 11:11:08 +00:00
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_VC1_DEMUXER
|
2007-02-09 12:10:15 +00:00
|
|
|
AVInputFormat vc1_demuxer = {
|
|
|
|
"vc1",
|
2008-06-03 16:20:54 +00:00
|
|
|
NULL_IF_CONFIG_SMALL("raw VC-1"),
|
2007-02-09 12:10:15 +00:00
|
|
|
0,
|
|
|
|
NULL /* vc1_probe */,
|
2010-08-29 19:16:04 +00:00
|
|
|
ff_raw_video_read_header,
|
2009-02-28 17:24:46 +00:00
|
|
|
ff_raw_read_partial_packet,
|
2007-02-09 12:10:15 +00:00
|
|
|
.extensions = "vc1",
|
|
|
|
.value = CODEC_ID_VC1,
|
|
|
|
};
|
2008-08-15 17:28:20 +00:00
|
|
|
#endif
|