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"
|
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"
|
2012-06-15 00:52:40 +03:00
|
|
|
#include "libavutil/avassert.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) {
|
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
|
|
|
}
|
2012-01-08 18:56:46 +03:00
|
|
|
av_shrink_packet(pkt, ret);
|
2004-03-15 05:29:32 +02:00
|
|
|
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;
|
2012-07-26 03:11:06 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
|
2011-04-25 01:47:40 +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;
|
|
|
|
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;
|
2012-05-21 15:33:09 +03:00
|
|
|
st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
|
2003-11-10 20:41:45 +02:00
|
|
|
|
2014-10-15 17:24:43 +03:00
|
|
|
st->codec->framerate = s1->framerate;
|
2013-04-05 17:52:52 +03:00
|
|
|
st->codec->time_base = av_inv_q(s1->framerate);
|
2011-11-29 21:28:15 +03:00
|
|
|
avpriv_set_pts_info(st, 64, 1, 1200000);
|
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
|
|
|
}
|
|
|
|
|
2013-04-29 21:46:00 +03:00
|
|
|
static int ff_raw_data_read_header(AVFormatContext *s)
|
|
|
|
{
|
|
|
|
AVStream *st = avformat_new_stream(s, NULL);
|
|
|
|
if (!st)
|
|
|
|
return AVERROR(ENOMEM);
|
|
|
|
st->codec->codec_type = AVMEDIA_TYPE_DATA;
|
|
|
|
st->codec->codec_id = s->iformat->raw_codec_id;
|
|
|
|
st->start_time = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
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[] = {
|
2013-04-05 17:52:52 +03:00
|
|
|
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC},
|
2011-05-24 08:43:01 +03:00
|
|
|
{ NULL },
|
|
|
|
};
|
|
|
|
|
2013-04-29 21:46:00 +03:00
|
|
|
#if CONFIG_DATA_DEMUXER
|
|
|
|
AVInputFormat ff_data_demuxer = {
|
|
|
|
.name = "data",
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("raw data"),
|
|
|
|
.read_header = ff_raw_data_read_header,
|
|
|
|
.read_packet = ff_raw_read_partial_packet,
|
|
|
|
.raw_codec_id = AV_CODEC_ID_NONE,
|
2014-11-24 16:20:53 +02:00
|
|
|
.flags = AVFMT_NOTIMESTAMPS,
|
2013-04-29 21:46:00 +03:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2011-09-06 23:08:29 +03:00
|
|
|
#if CONFIG_LATM_DEMUXER
|
2014-04-26 21:32:47 +03:00
|
|
|
|
2011-09-06 23:08:29 +03:00
|
|
|
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,
|
2014-11-24 16:20:53 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
|
2012-04-06 17:50:48 +03:00
|
|
|
.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
|
2014-06-09 18:52:44 +03:00
|
|
|
static int mjpeg_probe(AVProbeData *p)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int state = -1;
|
|
|
|
int nb_invalid = 0;
|
|
|
|
int nb_frames = 0;
|
|
|
|
|
|
|
|
for (i=0; i<p->buf_size-2; i++) {
|
|
|
|
int c;
|
|
|
|
if (p->buf[i] != 0xFF)
|
|
|
|
continue;
|
|
|
|
c = p->buf[i+1];
|
|
|
|
switch (c) {
|
|
|
|
case 0xD8:
|
|
|
|
state = 0xD8;
|
|
|
|
break;
|
|
|
|
case 0xC0:
|
|
|
|
case 0xC1:
|
|
|
|
case 0xC2:
|
|
|
|
case 0xC3:
|
|
|
|
case 0xC5:
|
|
|
|
case 0xC6:
|
|
|
|
case 0xC7:
|
|
|
|
case 0xF7:
|
|
|
|
if (state == 0xD8) {
|
|
|
|
state = 0xC0;
|
|
|
|
} else
|
|
|
|
nb_invalid++;
|
|
|
|
break;
|
|
|
|
case 0xDA:
|
|
|
|
if (state == 0xC0) {
|
|
|
|
state = 0xDA;
|
|
|
|
} else
|
|
|
|
nb_invalid++;
|
|
|
|
break;
|
|
|
|
case 0xD9:
|
|
|
|
if (state == 0xDA) {
|
|
|
|
state = 0xD9;
|
|
|
|
nb_frames++;
|
|
|
|
} else
|
|
|
|
nb_invalid++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if ( (c >= 0x02 && c <= 0xBF)
|
|
|
|
|| c == 0xC8) {
|
|
|
|
nb_invalid++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-10 15:23:06 +03:00
|
|
|
if (nb_invalid*4 + 1 < nb_frames) {
|
|
|
|
static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n\r\n";
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<FFMIN(p->buf_size - sizeof(ct_jpeg), 100); i++)
|
|
|
|
if (!memcmp(p->buf + i, ct_jpeg, sizeof(ct_jpeg) - 1))
|
|
|
|
return AVPROBE_SCORE_EXTENSION;
|
|
|
|
|
|
|
|
if (nb_invalid == 0 && nb_frames > 2)
|
|
|
|
return AVPROBE_SCORE_EXTENSION / 2;
|
2014-06-09 18:52:44 +03:00
|
|
|
return AVPROBE_SCORE_EXTENSION / 4;
|
2014-06-10 15:23:06 +03:00
|
|
|
}
|
2014-06-09 18:52:44 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-10 15:21:24 +03:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER2(mjpeg, "raw MJPEG video", mjpeg_probe, "mjpg,mjpeg,mpo", AV_CODEC_ID_MJPEG, AVFMT_GENERIC_INDEX|AVFMT_NOTIMESTAMPS)
|
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,
|
2014-11-24 16:20:53 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
|
2012-04-06 17:50:48 +03:00
|
|
|
.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,
|
2014-11-24 16:20:53 +02:00
|
|
|
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
|
2012-04-06 17:50:48 +03:00
|
|
|
.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,
|
2014-11-24 16:20:53 +02:00
|
|
|
.flags = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH | AVFMT_NO_BYTE_SEEK|AVFMT_NOTIMESTAMPS,
|
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
|
2014-06-10 15:21:24 +03:00
|
|
|
FF_DEF_RAWVIDEO_DEMUXER2(vc1, "raw VC-1", NULL, "vc1", AV_CODEC_ID_VC1, AVFMT_GENERIC_INDEX|AVFMT_NOTIMESTAMPS)
|
2008-08-15 20:28:20 +03:00
|
|
|
#endif
|