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
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav 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
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; 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"
|
2011-11-29 18:28:15 +00:00
|
|
|
#include "internal.h"
|
2011-02-21 18:28:16 +00:00
|
|
|
#include "avio_internal.h"
|
2010-08-30 23:16:35 +00:00
|
|
|
#include "rawdec.h"
|
2011-05-23 18:05:55 +00:00
|
|
|
#include "libavutil/opt.h"
|
2011-05-24 05:43:01 +00:00
|
|
|
#include "libavutil/parseutils.h"
|
2011-05-24 07:02:11 +00:00
|
|
|
#include "libavutil/pixdesc.h"
|
2001-07-22 14:18:56 +00:00
|
|
|
|
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
|
|
|
|
2011-03-03 19:11:45 +00:00
|
|
|
pkt->pos= avio_tell(s->pb);
|
2004-03-15 03:29:32 +00:00
|
|
|
pkt->stream_index = 0;
|
2011-02-21 18:28:16 +00:00
|
|
|
ret = ffio_read_partial(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;
|
2012-12-01 22:42:11 +00:00
|
|
|
} else if (ret < size) {
|
|
|
|
/* initialize end of packet for partial reads to avoid reading
|
|
|
|
* uninitialized data on allowed overreads */
|
|
|
|
memset(pkt->data + ret, 0, FF_INPUT_BUFFER_PADDING_SIZE);
|
2004-03-15 03:29:32 +00:00
|
|
|
}
|
|
|
|
pkt->size = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-07-07 11:11:08 +00:00
|
|
|
|
2012-01-12 12:20:36 +00:00
|
|
|
int ff_raw_audio_read_header(AVFormatContext *s)
|
2006-02-08 00:51:55 +00:00
|
|
|
{
|
2011-06-18 09:43:24 +00:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
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;
|
2012-01-31 06:50:31 +00:00
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
2007-04-15 13:51:57 +00:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2011-12-28 05:50:32 +00:00
|
|
|
st->start_time = 0;
|
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 */
|
2012-01-12 12:20:36 +00:00
|
|
|
int ff_raw_video_read_header(AVFormatContext *s)
|
2001-07-22 14:18:56 +00:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2011-06-03 12:13:14 +00:00
|
|
|
FFRawVideoDemuxerContext *s1 = s->priv_data;
|
|
|
|
AVRational framerate;
|
|
|
|
int ret = 0;
|
|
|
|
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2011-06-18 09:43:24 +00:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2011-06-03 12:13:14 +00:00
|
|
|
if (!st) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
2001-07-22 14:18:56 +00:00
|
|
|
|
2010-03-30 23:30:55 +00:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2012-01-31 06:50:31 +00:00
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
2007-04-15 13:51:57 +00:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2003-11-10 18:41:45 +00:00
|
|
|
|
2011-06-03 12:13:14 +00: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 13:06:33 +00:00
|
|
|
}
|
2011-06-03 12:13:14 +00:00
|
|
|
|
2012-06-26 11:10:01 +00:00
|
|
|
st->avg_frame_rate = framerate;
|
2012-02-07 07:13:05 +00:00
|
|
|
avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
|
2005-05-06 14:19:17 +00:00
|
|
|
|
2011-06-03 12:13:14 +00:00
|
|
|
fail:
|
|
|
|
return ret;
|
2001-07-22 14:18:56 +00:00
|
|
|
}
|
|
|
|
|
2008-07-07 10:45:36 +00:00
|
|
|
/* Note: Do not forget to add new entries to the Makefile as well. */
|
|
|
|
|
2011-05-24 05:43:01 +00:00
|
|
|
#define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
|
|
|
|
#define DEC AV_OPT_FLAG_DECODING_PARAM
|
2011-09-14 12:03:55 +00:00
|
|
|
const AVOption ff_rawvideo_options[] = {
|
2011-10-04 05:38:01 +00:00
|
|
|
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC},
|
2011-05-24 05:43:01 +00:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
2011-09-06 20:08:29 +00: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 14:50:48 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "latm",
|
2012-08-05 09:11:04 +00:00
|
|
|
.raw_codec_id = AV_CODEC_ID_AAC_LATM,
|
2011-09-06 20:08:29 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_MJPEG_DEMUXER
|
2012-08-05 09:11:04 +00:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER(mjpeg, "raw MJPEG video", NULL, "mjpg,mjpeg", AV_CODEC_ID_MJPEG)
|
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
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_mlp_demuxer = {
|
2011-07-16 20:18:12 +00: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 14:50:48 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "mlp",
|
2012-08-05 09:11:04 +00:00
|
|
|
.raw_codec_id = AV_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
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_truehd_demuxer = {
|
2011-07-16 20:18:12 +00: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 14:50:48 +00:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "thd",
|
2012-08-05 09:11:04 +00:00
|
|
|
.raw_codec_id = AV_CODEC_ID_TRUEHD,
|
2009-03-19 21:46:56 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-01-13 23:44:16 +00:00
|
|
|
#if CONFIG_SHORTEN_DEMUXER
|
2011-01-25 22:03:28 +00:00
|
|
|
AVInputFormat ff_shorten_demuxer = {
|
2011-07-16 20:18:12 +00: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 16:03:22 +00:00
|
|
|
.flags = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH | AVFMT_NO_BYTE_SEEK,
|
2012-04-06 14:50:48 +00:00
|
|
|
.extensions = "shn",
|
2012-08-05 09:11:04 +00:00
|
|
|
.raw_codec_id = AV_CODEC_ID_SHORTEN,
|
2008-07-07 11:11:08 +00:00
|
|
|
};
|
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
|
2012-08-05 09:11:04 +00:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER(vc1, "raw VC-1", NULL, "vc1", AV_CODEC_ID_VC1)
|
2008-08-15 17:28:20 +00:00
|
|
|
#endif
|