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