2005-12-17 19:14:38 +01:00
|
|
|
/*
|
2010-08-31 01:16:35 +02:00
|
|
|
* RAW demuxers
|
2009-01-19 16:46:40 +01:00
|
|
|
* Copyright (c) 2001 Fabrice Bellard
|
2005-10-29 02:52:02 +02:00
|
|
|
* Copyright (c) 2005 Alex Beregszaszi
|
2001-07-22 16:18:56 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* This file is part of Libav.
|
2006-10-07 17:30:46 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-05-26 00:34:32 +02:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 17:30:46 +02:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-07-22 16:18:56 +02:00
|
|
|
*
|
2011-03-18 18:35:10 +01:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2001-07-22 16:18:56 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2002-05-26 00:34:32 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-07-22 16:18:56 +02:00
|
|
|
*
|
2002-05-26 00:34:32 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2011-03-18 18:35:10 +01:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 23:43:26 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-07-22 16:18:56 +02:00
|
|
|
*/
|
2008-05-09 13:56:36 +02:00
|
|
|
|
2001-07-22 16:18:56 +02:00
|
|
|
#include "avformat.h"
|
2011-11-29 19:28:15 +01:00
|
|
|
#include "internal.h"
|
2011-02-21 19:28:16 +01:00
|
|
|
#include "avio_internal.h"
|
2010-08-31 01:16:35 +02:00
|
|
|
#include "rawdec.h"
|
2011-05-23 20:05:55 +02:00
|
|
|
#include "libavutil/opt.h"
|
2011-05-24 07:43:01 +02:00
|
|
|
#include "libavutil/parseutils.h"
|
2011-05-24 09:02:11 +02:00
|
|
|
#include "libavutil/pixdesc.h"
|
2001-07-22 16:18:56 +02:00
|
|
|
|
|
|
|
/* raw input */
|
2012-01-12 13:20:36 +01:00
|
|
|
int ff_raw_read_header(AVFormatContext *s)
|
2001-07-22 16:18:56 +02:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2009-11-09 00:48:15 +01:00
|
|
|
enum CodecID id;
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2011-06-18 11:43:24 +02:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2001-07-22 16:18:56 +02:00
|
|
|
if (!st)
|
2007-07-19 17:21:30 +02:00
|
|
|
return AVERROR(ENOMEM);
|
2006-03-11 01:22:21 +01:00
|
|
|
|
2012-01-31 07:50:31 +01:00
|
|
|
id = s->iformat->raw_codec_id;
|
2002-05-20 18:31:13 +02:00
|
|
|
if (id == CODEC_ID_RAWVIDEO) {
|
2010-03-31 01:30:55 +02:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2001-07-22 16:18:56 +02:00
|
|
|
} else {
|
2010-03-31 01:30:55 +02:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2001-07-22 16:18:56 +02:00
|
|
|
}
|
2005-07-18 00:24:36 +02:00
|
|
|
st->codec->codec_id = id;
|
2002-05-20 18:31:13 +02:00
|
|
|
|
2005-07-18 00:24:36 +02:00
|
|
|
switch(st->codec->codec_type) {
|
2011-05-23 20:05:55 +02:00
|
|
|
case AVMEDIA_TYPE_AUDIO: {
|
|
|
|
RawAudioDemuxerContext *s1 = s->priv_data;
|
|
|
|
|
2011-07-17 07:45:33 +02:00
|
|
|
st->codec->channels = 1;
|
2011-05-23 20:05:55 +02:00
|
|
|
|
2011-09-14 08:55:27 +02:00
|
|
|
if (id == CODEC_ID_ADPCM_G722)
|
|
|
|
st->codec->sample_rate = 16000;
|
|
|
|
|
|
|
|
if (s1 && s1->sample_rate)
|
2011-05-23 20:05:55 +02:00
|
|
|
st->codec->sample_rate = s1->sample_rate;
|
2011-09-14 08:55:27 +02:00
|
|
|
if (s1 && s1->channels)
|
2011-05-23 20:05:55 +02:00
|
|
|
st->codec->channels = s1->channels;
|
|
|
|
|
2009-04-12 02:25:37 +02: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;
|
2011-11-29 19:28:15 +01:00
|
|
|
avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
|
2001-07-22 16:18:56 +02:00
|
|
|
break;
|
2011-05-23 20:05:55 +02:00
|
|
|
}
|
2011-05-24 07:43:01 +02:00
|
|
|
case AVMEDIA_TYPE_VIDEO: {
|
|
|
|
FFRawVideoDemuxerContext *s1 = s->priv_data;
|
2011-06-03 13:40:54 +02:00
|
|
|
int width = 0, height = 0, ret = 0;
|
2011-05-24 09:02:11 +02:00
|
|
|
enum PixelFormat pix_fmt;
|
2011-06-03 14:13:14 +02:00
|
|
|
AVRational framerate;
|
2011-05-24 09:02:11 +02:00
|
|
|
|
|
|
|
if (s1->video_size && (ret = av_parse_video_size(&width, &height, s1->video_size)) < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Couldn't parse video size.\n");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if ((pix_fmt = av_get_pix_fmt(s1->pixel_format)) == PIX_FMT_NONE) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "No such pixel format: %s.\n", s1->pixel_format);
|
|
|
|
ret = AVERROR(EINVAL);
|
|
|
|
goto fail;
|
2011-05-24 07:43:01 +02:00
|
|
|
}
|
2011-06-03 14:13:14 +02:00
|
|
|
if ((ret = av_parse_video_rate(&framerate, s1->framerate)) < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s1->framerate);
|
|
|
|
goto fail;
|
|
|
|
}
|
2011-11-29 19:28:15 +01:00
|
|
|
avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
|
2011-05-24 07:43:01 +02:00
|
|
|
st->codec->width = width;
|
|
|
|
st->codec->height = height;
|
2011-05-24 09:02:11 +02:00
|
|
|
st->codec->pix_fmt = pix_fmt;
|
|
|
|
fail:
|
|
|
|
return ret;
|
2011-05-24 07:43:01 +02:00
|
|
|
}
|
2001-07-22 16:18:56 +02:00
|
|
|
default:
|
2001-08-15 15:06:33 +02:00
|
|
|
return -1;
|
2001-07-22 16:18:56 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-09-16 00:44:44 +02:00
|
|
|
#define RAW_PACKET_SIZE 1024
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2009-02-28 18:24:46 +01:00
|
|
|
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
|
2004-03-15 04:29:32 +01:00
|
|
|
{
|
|
|
|
int ret, size;
|
|
|
|
|
|
|
|
size = RAW_PACKET_SIZE;
|
|
|
|
|
|
|
|
if (av_new_packet(pkt, size) < 0)
|
2009-10-01 18:10:09 +02:00
|
|
|
return AVERROR(ENOMEM);
|
2005-12-17 19:14:38 +01:00
|
|
|
|
2011-03-03 20:11:45 +01:00
|
|
|
pkt->pos= avio_tell(s->pb);
|
2004-03-15 04:29:32 +01:00
|
|
|
pkt->stream_index = 0;
|
2011-02-21 19:28:16 +01:00
|
|
|
ret = ffio_read_partial(s->pb, pkt->data, size);
|
2009-10-02 08:40:50 +02:00
|
|
|
if (ret < 0) {
|
2004-03-15 04:29:32 +01:00
|
|
|
av_free_packet(pkt);
|
2009-10-02 08:40:50 +02:00
|
|
|
return ret;
|
2004-03-15 04:29:32 +01:00
|
|
|
}
|
|
|
|
pkt->size = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-07-07 13:11:08 +02:00
|
|
|
|
2012-01-12 13:20:36 +01:00
|
|
|
int ff_raw_audio_read_header(AVFormatContext *s)
|
2006-02-08 01:51:55 +01:00
|
|
|
{
|
2011-06-18 11:43:24 +02:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
2006-02-08 01:51:55 +01:00
|
|
|
if (!st)
|
2007-07-19 17:21:30 +02:00
|
|
|
return AVERROR(ENOMEM);
|
2010-03-31 01:30:55 +02:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
|
2012-01-31 07:50:31 +01:00
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
2007-04-15 15:51:57 +02:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2011-12-28 06:50:32 +01:00
|
|
|
st->start_time = 0;
|
2006-02-08 01:51:55 +01:00
|
|
|
/* the parameters will be extracted from the compressed bitstream */
|
2009-01-25 01:16:27 +01:00
|
|
|
|
2006-02-08 01:51:55 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-08-15 18:33:12 +02:00
|
|
|
/* MPEG-1/H.263 input */
|
2012-01-12 13:20:36 +01:00
|
|
|
int ff_raw_video_read_header(AVFormatContext *s)
|
2001-07-22 16:18:56 +02:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2011-06-03 14:13:14 +02:00
|
|
|
FFRawVideoDemuxerContext *s1 = s->priv_data;
|
|
|
|
AVRational framerate;
|
|
|
|
int ret = 0;
|
|
|
|
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2011-06-18 11:43:24 +02:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2011-06-03 14:13:14 +02:00
|
|
|
if (!st) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2010-03-31 01:30:55 +02:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2012-01-31 07:50:31 +01:00
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
2007-04-15 15:51:57 +02:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2003-11-10 19:41:45 +01:00
|
|
|
|
2011-06-03 14:13:14 +02:00
|
|
|
if ((ret = av_parse_video_rate(&framerate, s1->framerate)) < 0) {
|
|
|
|
av_log(s, AV_LOG_ERROR, "Could not parse framerate: %s.\n", s1->framerate);
|
|
|
|
goto fail;
|
2001-08-15 15:06:33 +02:00
|
|
|
}
|
2011-06-03 14:13:14 +02:00
|
|
|
|
2011-12-10 12:40:05 +01:00
|
|
|
st->r_frame_rate = st->avg_frame_rate = framerate;
|
2012-02-07 08:13:05 +01:00
|
|
|
avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
|
2005-05-06 16:19:17 +02:00
|
|
|
|
2011-06-03 14:13:14 +02:00
|
|
|
fail:
|
|
|
|
return ret;
|
2001-07-22 16:18:56 +02:00
|
|
|
}
|
|
|
|
|
2008-07-07 12:45:36 +02:00
|
|
|
/* Note: Do not forget to add new entries to the Makefile as well. */
|
|
|
|
|
2011-05-24 07:43:01 +02:00
|
|
|
#define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
|
|
|
|
#define DEC AV_OPT_FLAG_DECODING_PARAM
|
2011-09-14 14:03:55 +02:00
|
|
|
const AVOption ff_rawvideo_options[] = {
|
2011-10-04 07:38:01 +02:00
|
|
|
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC},
|
2011-05-24 07:43:01 +02:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
2010-09-09 21:27:41 +02:00
|
|
|
#if CONFIG_G722_DEMUXER
|
2011-01-25 23:03:28 +01:00
|
|
|
AVInputFormat ff_g722_demuxer = {
|
2011-07-16 22:18:12 +02:00
|
|
|
.name = "g722",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw G.722"),
|
|
|
|
.read_header = ff_raw_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
2012-04-06 16:50:48 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "g722,722",
|
2012-01-31 07:50:31 +01:00
|
|
|
.raw_codec_id = CODEC_ID_ADPCM_G722,
|
2010-09-09 21:27:41 +02:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2011-09-06 22:08:29 +02:00
|
|
|
#if CONFIG_LATM_DEMUXER
|
|
|
|
AVInputFormat ff_latm_demuxer = {
|
|
|
|
.name = "latm",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw LOAS/LATM"),
|
|
|
|
.read_header = ff_raw_audio_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
2012-04-06 16:50:48 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "latm",
|
2012-01-31 07:50:31 +01:00
|
|
|
.raw_codec_id = CODEC_ID_AAC_LATM,
|
2011-09-06 22:08:29 +02:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-01-14 00:44:16 +01:00
|
|
|
#if CONFIG_MJPEG_DEMUXER
|
2011-05-25 08:14:13 +02:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER(mjpeg, "raw MJPEG video", NULL, "mjpg,mjpeg", CODEC_ID_MJPEG)
|
2008-08-15 19:28:20 +02:00
|
|
|
#endif
|
2003-04-04 16:42:28 +02:00
|
|
|
|
2009-01-14 00:44:16 +01:00
|
|
|
#if CONFIG_MLP_DEMUXER
|
2011-01-25 23:03:28 +01:00
|
|
|
AVInputFormat ff_mlp_demuxer = {
|
2011-07-16 22:18:12 +02:00
|
|
|
.name = "mlp",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw MLP"),
|
|
|
|
.read_header = ff_raw_audio_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
2012-04-06 16:50:48 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "mlp",
|
2012-01-31 07:50:31 +01:00
|
|
|
.raw_codec_id = CODEC_ID_MLP,
|
2001-07-22 16:18:56 +02:00
|
|
|
};
|
2008-08-15 19:28:20 +02:00
|
|
|
#endif
|
2001-07-22 16:18:56 +02:00
|
|
|
|
2009-03-19 22:46:56 +01:00
|
|
|
#if CONFIG_TRUEHD_DEMUXER
|
2011-01-25 23:03:28 +01:00
|
|
|
AVInputFormat ff_truehd_demuxer = {
|
2011-07-16 22:18:12 +02:00
|
|
|
.name = "truehd",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw TrueHD"),
|
|
|
|
.read_header = ff_raw_audio_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
2012-04-06 16:50:48 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "thd",
|
2012-01-31 07:50:31 +01:00
|
|
|
.raw_codec_id = CODEC_ID_TRUEHD,
|
2009-03-19 22:46:56 +01:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-01-14 00:44:16 +01:00
|
|
|
#if CONFIG_SHORTEN_DEMUXER
|
2011-01-25 23:03:28 +01:00
|
|
|
AVInputFormat ff_shorten_demuxer = {
|
2011-07-16 22:18:12 +02:00
|
|
|
.name = "shn",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw Shorten"),
|
|
|
|
.read_header = ff_raw_audio_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
2011-10-02 18:03:22 +02:00
|
|
|
.flags = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH | AVFMT_NO_BYTE_SEEK,
|
2012-04-06 16:50:48 +02:00
|
|
|
.extensions = "shn",
|
2012-01-31 07:50:31 +01:00
|
|
|
.raw_codec_id = CODEC_ID_SHORTEN,
|
2008-07-07 13:11:08 +02:00
|
|
|
};
|
2008-08-15 19:28:20 +02:00
|
|
|
#endif
|
2008-07-07 13:11:08 +02:00
|
|
|
|
2009-01-14 00:44:16 +01:00
|
|
|
#if CONFIG_VC1_DEMUXER
|
2011-05-25 08:14:13 +02:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER(vc1, "raw VC-1", NULL, "vc1", CODEC_ID_VC1)
|
2008-08-15 19:28:20 +02:00
|
|
|
#endif
|