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
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* This file is part of Libav.
|
2006-10-07 18:30:46 +03:00
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav 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
|
|
|
*
|
2011-03-18 19:35:10 +02:00
|
|
|
* Libav 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
|
2011-03-18 19:35:10 +02:00
|
|
|
* License along with Libav; 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"
|
2011-11-29 21:28:15 +03:00
|
|
|
#include "internal.h"
|
2011-02-21 20:28:16 +02:00
|
|
|
#include "avio_internal.h"
|
2010-08-31 02:16:35 +03:00
|
|
|
#include "rawdec.h"
|
2011-05-23 21:05:55 +03:00
|
|
|
#include "libavutil/opt.h"
|
2011-05-24 08:43:01 +03:00
|
|
|
#include "libavutil/parseutils.h"
|
2011-05-24 10:02:11 +03:00
|
|
|
#include "libavutil/pixdesc.h"
|
2014-04-26 21:32:47 +03:00
|
|
|
#include "libavutil/intreadwrite.h"
|
2001-07-22 17:18:56 +03:00
|
|
|
|
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
|
|
|
|
2011-03-03 21:11:45 +02:00
|
|
|
pkt->pos= avio_tell(s->pb);
|
2004-03-15 05:29:32 +02:00
|
|
|
pkt->stream_index = 0;
|
2011-02-21 20:28:16 +02:00
|
|
|
ret = ffio_read_partial(s->pb, pkt->data, size);
|
2009-10-02 09:40:50 +03:00
|
|
|
if (ret < 0) {
|
2015-10-23 11:11:31 +02:00
|
|
|
av_packet_unref(pkt);
|
2009-10-02 09:40:50 +03:00
|
|
|
return ret;
|
2012-12-02 01:42:11 +03:00
|
|
|
} else if (ret < size) {
|
|
|
|
/* initialize end of packet for partial reads to avoid reading
|
|
|
|
* uninitialized data on allowed overreads */
|
2015-06-29 23:48:34 +02:00
|
|
|
memset(pkt->data + ret, 0, AV_INPUT_BUFFER_PADDING_SIZE);
|
2004-03-15 05:29:32 +02:00
|
|
|
}
|
|
|
|
pkt->size = ret;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-07-07 14:11:08 +03:00
|
|
|
|
2012-01-12 15:20:36 +03:00
|
|
|
int ff_raw_audio_read_header(AVFormatContext *s)
|
2006-02-08 02:51:55 +02:00
|
|
|
{
|
2011-06-18 12:43:24 +03:00
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
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;
|
2012-01-31 09:50:31 +03:00
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
2007-04-15 16:51:57 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2011-12-28 08:50:32 +03:00
|
|
|
st->start_time = 0;
|
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 */
|
2012-01-12 15:20:36 +03:00
|
|
|
int ff_raw_video_read_header(AVFormatContext *s)
|
2001-07-22 17:18:56 +03:00
|
|
|
{
|
|
|
|
AVStream *st;
|
2011-06-03 15:13:14 +03:00
|
|
|
FFRawVideoDemuxerContext *s1 = s->priv_data;
|
|
|
|
AVRational framerate;
|
|
|
|
int ret = 0;
|
|
|
|
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2011-06-18 12:43:24 +03:00
|
|
|
st = avformat_new_stream(s, NULL);
|
2011-06-03 15:13:14 +03:00
|
|
|
if (!st) {
|
|
|
|
ret = AVERROR(ENOMEM);
|
|
|
|
goto fail;
|
|
|
|
}
|
2001-07-22 17:18:56 +03:00
|
|
|
|
2010-03-31 02:30:55 +03:00
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
|
2012-01-31 09:50:31 +03:00
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
2007-04-15 16:51:57 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL;
|
2003-11-10 20:41:45 +02:00
|
|
|
|
2011-06-03 15:13:14 +03: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 16:06:33 +03:00
|
|
|
}
|
2011-06-03 15:13:14 +03:00
|
|
|
|
2012-06-26 14:10:01 +03:00
|
|
|
st->avg_frame_rate = framerate;
|
2012-02-07 10:13:05 +03:00
|
|
|
avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
|
2005-05-06 17:19:17 +03:00
|
|
|
|
2011-06-03 15:13:14 +03:00
|
|
|
fail:
|
|
|
|
return ret;
|
2001-07-22 17:18:56 +03:00
|
|
|
}
|
|
|
|
|
2008-07-07 13:45:36 +03:00
|
|
|
/* Note: Do not forget to add new entries to the Makefile as well. */
|
|
|
|
|
2011-05-24 08:43:01 +03:00
|
|
|
#define OFFSET(x) offsetof(FFRawVideoDemuxerContext, x)
|
|
|
|
#define DEC AV_OPT_FLAG_DECODING_PARAM
|
2011-09-14 15:03:55 +03:00
|
|
|
const AVOption ff_rawvideo_options[] = {
|
2011-10-04 08:38:01 +03:00
|
|
|
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC},
|
2011-05-24 08:43:01 +03:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
2011-09-06 23:08:29 +03:00
|
|
|
#if CONFIG_LATM_DEMUXER
|
2014-04-26 21:32:47 +03:00
|
|
|
|
|
|
|
#define LOAS_SYNC_WORD 0x2b7
|
|
|
|
|
|
|
|
static int latm_read_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
int max_frames = 0, first_frames = 0;
|
|
|
|
int fsize, frames;
|
|
|
|
uint8_t *buf0 = p->buf;
|
|
|
|
uint8_t *buf2;
|
|
|
|
uint8_t *buf;
|
|
|
|
uint8_t *end = buf0 + p->buf_size - 3;
|
|
|
|
|
|
|
|
buf = buf0;
|
|
|
|
|
|
|
|
for (; buf < end; buf = buf2 + 1) {
|
|
|
|
buf2 = buf;
|
|
|
|
|
|
|
|
for (frames = 0; buf2 < end; frames++) {
|
|
|
|
uint32_t header = AV_RB24(buf2);
|
|
|
|
if ((header >> 13) != LOAS_SYNC_WORD) {
|
|
|
|
if (buf != buf0) {
|
|
|
|
// Found something that isn't a LOAS header, starting
|
|
|
|
// from a position other than the start of the buffer.
|
|
|
|
// Discard the count we've accumulated so far since it
|
|
|
|
// probably was a false positive.
|
|
|
|
frames = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fsize = (header & 0x1FFF) + 3;
|
|
|
|
if (fsize < 7)
|
|
|
|
break;
|
|
|
|
buf2 += fsize;
|
|
|
|
}
|
|
|
|
max_frames = FFMAX(max_frames, frames);
|
|
|
|
if (buf == buf0)
|
|
|
|
first_frames = frames;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (first_frames >= 3)
|
|
|
|
return AVPROBE_SCORE_EXTENSION + 1;
|
|
|
|
else if (max_frames > 100)
|
|
|
|
return AVPROBE_SCORE_EXTENSION;
|
|
|
|
else if (max_frames >= 3)
|
|
|
|
return AVPROBE_SCORE_EXTENSION / 2;
|
2014-12-05 16:31:20 +02:00
|
|
|
else if (max_frames > 1)
|
2014-04-26 21:32:47 +03:00
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-06 23:08:29 +03:00
|
|
|
AVInputFormat ff_latm_demuxer = {
|
|
|
|
.name = "latm",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw LOAS/LATM"),
|
2014-04-26 21:32:47 +03:00
|
|
|
.read_probe = latm_read_probe,
|
2011-09-06 23:08:29 +03:00
|
|
|
.read_header = ff_raw_audio_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
2012-04-06 17:50:48 +03:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "latm",
|
2012-08-05 12:11:04 +03:00
|
|
|
.raw_codec_id = AV_CODEC_ID_AAC_LATM,
|
2011-09-06 23:08:29 +03:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2009-01-14 01:44:16 +02:00
|
|
|
#if CONFIG_MJPEG_DEMUXER
|
2012-08-05 12:11:04 +03:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER(mjpeg, "raw MJPEG video", NULL, "mjpg,mjpeg", AV_CODEC_ID_MJPEG)
|
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 = {
|
2011-07-16 23:18:12 +03: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 17:50:48 +03:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "mlp",
|
2012-08-05 12:11:04 +03:00
|
|
|
.raw_codec_id = AV_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 = {
|
2011-07-16 23:18:12 +03: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 17:50:48 +03:00
|
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
|
|
.extensions = "thd",
|
2012-08-05 12:11:04 +03:00
|
|
|
.raw_codec_id = AV_CODEC_ID_TRUEHD,
|
2009-03-19 23:46:56 +02:00
|
|
|
};
|
|
|
|
#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 = {
|
2011-07-16 23:18:12 +03: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 19:03:22 +03:00
|
|
|
.flags = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH | AVFMT_NO_BYTE_SEEK,
|
2012-04-06 17:50:48 +03:00
|
|
|
.extensions = "shn",
|
2012-08-05 12:11:04 +03:00
|
|
|
.raw_codec_id = AV_CODEC_ID_SHORTEN,
|
2008-07-07 14:11:08 +03:00
|
|
|
};
|
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
|
2012-08-05 12:11:04 +03:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER(vc1, "raw VC-1", NULL, "vc1", AV_CODEC_ID_VC1)
|
2008-08-15 20:28:20 +03:00
|
|
|
#endif
|