1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-16 08:38:24 +02:00
Files
FFmpeg/libavformat/rawdec.c
T

248 lines
6.8 KiB
C
Raw Normal View History

2005-12-17 18:14:38 +00:00
/*
2010-08-30 23:16:35 +00:00
* RAW demuxers
* Copyright (c) 2001 Fabrice Bellard
* Copyright (c) 2005 Alex Beregszaszi
2001-07-22 14:18:56 +00:00
*
* This file is part of FFmpeg.
*
* FFmpeg 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
* version 2.1 of the License, or (at your option) any later version.
2001-07-22 14:18:56 +00:00
*
* FFmpeg 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
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2001-07-22 14:18:56 +00:00
*/
2001-07-22 14:18:56 +00: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-30 23:16:35 +00:00
#include "rawdec.h"
#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"
2012-06-14 23:52:40 +02:00
#include "libavutil/avassert.h"
2014-04-26 20:32:47 +02:00
#include "libavutil/intreadwrite.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
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
{
int ret, size;
size = RAW_PACKET_SIZE;
if (av_new_packet(pkt, size) < 0)
return AVERROR(ENOMEM);
2005-12-17 18:14:38 +00:00
pkt->pos= avio_tell(s->pb);
pkt->stream_index = 0;
2011-02-21 19:28:16 +01:00
ret = ffio_read_partial(s->pb, pkt->data, size);
if (ret < 0) {
av_free_packet(pkt);
return ret;
}
2012-01-08 16:56:46 +01:00
av_shrink_packet(pkt, ret);
return ret;
}
int ff_raw_audio_read_header(AVFormatContext *s)
2006-02-08 00:51:55 +00:00
{
AVStream *st = avformat_new_stream(s, NULL);
2006-02-08 00:51:55 +00:00
if (!st)
return AVERROR(ENOMEM);
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = s->iformat->raw_codec_id;
st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
2011-04-25 00:47:40 +02:00
st->start_time = 0;
2006-02-08 00:51:55 +00:00
/* the parameters will be extracted from the compressed bitstream */
2006-02-08 00:51:55 +00:00
return 0;
}
2008-08-15 16:33:12 +00:00
/* MPEG-1/H.263 input */
int ff_raw_video_read_header(AVFormatContext *s)
2001-07-22 14:18:56 +00:00
{
AVStream *st;
2011-06-03 14:13:14 +02:00
FFRawVideoDemuxerContext *s1 = s->priv_data;
int ret = 0;
2001-07-22 14:18:56 +00: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 14:18:56 +00:00
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->codec->codec_id = s->iformat->raw_codec_id;
st->need_parsing = AVSTREAM_PARSE_FULL_RAW;
2003-11-10 18:41:45 +00:00
st->codec->framerate = s1->framerate;
2013-04-05 14:52:52 +00:00
st->codec->time_base = av_inv_q(s1->framerate);
2011-11-29 19:28:15 +01:00
avpriv_set_pts_info(st, 64, 1, 1200000);
2011-06-03 14:13:14 +02:00
fail:
return ret;
2001-07-22 14:18:56 +00:00
}
int ff_raw_data_read_header(AVFormatContext *s)
2013-04-29 20:46:00 +02:00
{
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;
}
/* 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
const AVOption ff_rawvideo_options[] = {
2013-04-05 14:52:52 +00:00
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC},
2011-05-24 07:43:01 +02:00
{ NULL },
};
2013-04-29 20:46:00 +02: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,
.flags = AVFMT_NOTIMESTAMPS,
2013-04-29 20:46:00 +02:00
};
#endif
2011-09-06 22:08:29 +02:00
#if CONFIG_LATM_DEMUXER
2014-04-26 20:32:47 +02:00
2011-09-06 22:08:29 +02: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,
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
2012-04-06 17:50:48 +03:00
.extensions = "latm",
2012-08-05 11:11:04 +02:00
.raw_codec_id = AV_CODEC_ID_AAC_LATM,
2011-09-06 22:08:29 +02:00
};
#endif
#if CONFIG_MJPEG_DEMUXER
2014-06-09 17:52:44 +02: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++;
}
}
}
if (nb_invalid*4 + 1 < nb_frames) {
2015-07-29 22:11:18 +02:00
static const char ct_jpeg[] = "\r\nContent-Type: image/jpeg\r\n";
int i;
2015-07-29 22:33:44 +02:00
for (i=0; i<FFMIN(p->buf_size - (int)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 17:52:44 +02:00
return AVPROBE_SCORE_EXTENSION / 4;
}
2014-06-09 17:52:44 +02:00
return 0;
}
FF_DEF_RAWVIDEO_DEMUXER2(mjpeg, "raw MJPEG video", mjpeg_probe, "mjpg,mjpeg,mpo", AV_CODEC_ID_MJPEG, AVFMT_GENERIC_INDEX|AVFMT_NOTIMESTAMPS)
#endif
2003-04-04 14:42:28 +00:00
#if CONFIG_MLP_DEMUXER
AVInputFormat ff_mlp_demuxer = {
.name = "mlp",
.long_name = NULL_IF_CONFIG_SMALL("raw MLP"),
.read_header = ff_raw_audio_read_header,
.read_packet = ff_raw_read_partial_packet,
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
2012-04-06 17:50:48 +03:00
.extensions = "mlp",
2012-08-05 11:11:04 +02:00
.raw_codec_id = AV_CODEC_ID_MLP,
2001-07-22 14:18:56 +00:00
};
#endif
2001-07-22 14:18:56 +00:00
2009-03-19 21:46:56 +00:00
#if CONFIG_TRUEHD_DEMUXER
AVInputFormat ff_truehd_demuxer = {
.name = "truehd",
.long_name = NULL_IF_CONFIG_SMALL("raw TrueHD"),
.read_header = ff_raw_audio_read_header,
.read_packet = ff_raw_read_partial_packet,
.flags = AVFMT_GENERIC_INDEX | AVFMT_NOTIMESTAMPS,
2012-04-06 17:50:48 +03:00
.extensions = "thd",
2012-08-05 11:11:04 +02:00
.raw_codec_id = AV_CODEC_ID_TRUEHD,
2009-03-19 21:46:56 +00:00
};
#endif
#if CONFIG_SHORTEN_DEMUXER
AVInputFormat ff_shorten_demuxer = {
.name = "shn",
.long_name = NULL_IF_CONFIG_SMALL("raw Shorten"),
.read_header = ff_raw_audio_read_header,
.read_packet = ff_raw_read_partial_packet,
.flags = AVFMT_NOBINSEARCH | AVFMT_NOGENSEARCH | AVFMT_NO_BYTE_SEEK|AVFMT_NOTIMESTAMPS,
2012-04-06 17:50:48 +03:00
.extensions = "shn",
2012-08-05 11:11:04 +02:00
.raw_codec_id = AV_CODEC_ID_SHORTEN,
};
#endif
#if CONFIG_VC1_DEMUXER
FF_DEF_RAWVIDEO_DEMUXER2(vc1, "raw VC-1", NULL, "vc1", AV_CODEC_ID_VC1, AVFMT_GENERIC_INDEX|AVFMT_NOTIMESTAMPS)
#endif