Files
ffmpeg/libavformat/rawdec.c
T

252 lines
7.6 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"
2001-07-22 14:18:56 +00:00
/* raw input */
2010-08-30 21:17:34 +00:00
int ff_raw_read_header(AVFormatContext *s, AVFormatParameters *ap)
2001-07-22 14:18:56 +00:00
{
AVStream *st;
enum CodecID id;
2001-07-22 14:18:56 +00:00
st = avformat_new_stream(s, NULL);
2001-07-22 14:18:56 +00:00
if (!st)
return AVERROR(ENOMEM);
2006-03-11 00:22:21 +00:00
2002-05-20 16:31:13 +00:00
id = s->iformat->value;
if (id == CODEC_ID_RAWVIDEO) {
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
2001-07-22 14:18:56 +00:00
} else {
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
2001-07-22 14:18:56 +00:00
}
st->codec->codec_id = id;
2002-05-20 16:31:13 +00:00
switch(st->codec->codec_type) {
case AVMEDIA_TYPE_AUDIO: {
RawAudioDemuxerContext *s1 = s->priv_data;
st->codec->channels = 1;
2011-09-14 08:55:27 +02:00
if (id == CODEC_ID_ADPCM_G722)
st->codec->sample_rate = 16000;
if (s1 && s1->sample_rate)
st->codec->sample_rate = s1->sample_rate;
2011-10-27 01:38:21 +02:00
if (st->codec->sample_rate <= 0) {
av_log(s, AV_LOG_WARNING, "Invalid sample rate %d specified using default of 44100\n",
2011-10-27 01:38:21 +02:00
st->codec->sample_rate);
st->codec->sample_rate= 44100;
2011-10-27 01:38:21 +02:00
}
2011-09-14 08:55:27 +02:00
if (s1 && s1->channels)
st->codec->channels = s1->channels;
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 14:18:56 +00:00
break;
}
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 14:18:56 +00:00
default:
2001-08-15 13:06:33 +00:00
return -1;
2001-07-22 14:18:56 +00:00
}
return 0;
}
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;
}
2010-08-29 19:00:40 +00:00
int ff_raw_audio_read_header(AVFormatContext *s,
AVFormatParameters *ap)
2003-02-09 18:07:16 +00:00
{
AVStream *st = avformat_new_stream(s, NULL);
if (!st)
return AVERROR(ENOMEM);
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = s->iformat->value;
2007-04-15 13:51:57 +00:00
st->need_parsing = AVSTREAM_PARSE_FULL;
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 */
2010-08-29 19:16:04 +00:00
int ff_raw_video_read_header(AVFormatContext *s,
2001-07-22 14:18:56 +00:00
AVFormatParameters *ap)
{
AVStream *st;
2011-06-03 14:13:14 +02:00
FFRawVideoDemuxerContext *s1 = s->priv_data;
AVRational framerate;
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->value;
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 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 13:06:33 +00:00
}
2011-06-03 14:13:14 +02:00
st->codec->time_base = (AVRational){framerate.den, framerate.num};
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
}
/* 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[] = {
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "25"}, 0, 0, DEC},
2011-05-24 07:43:01 +02:00
{ NULL },
};
2010-09-09 19:27:41 +00:00
#if CONFIG_G722_DEMUXER
AVInputFormat ff_g722_demuxer = {
.name = "g722",
.long_name = NULL_IF_CONFIG_SMALL("raw G.722"),
.read_header = ff_raw_read_header,
.read_packet = ff_raw_read_partial_packet,
2010-09-09 19:27:41 +00:00
.flags= AVFMT_GENERIC_INDEX,
.extensions = "g722,722",
.value = CODEC_ID_ADPCM_G722,
};
#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,
.flags= AVFMT_GENERIC_INDEX,
.extensions = "latm",
.value = CODEC_ID_AAC_LATM,
};
#endif
#if CONFIG_MJPEG_DEMUXER
2011-11-17 03:13:50 +01:00
FF_DEF_RAWVIDEO_DEMUXER(mjpeg, "raw MJPEG video", NULL, "mjpg,mjpeg,mpo", CODEC_ID_MJPEG)
#endif
#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,
.extensions = "mlp",
.value = 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,
2009-03-19 21:46:56 +00:00
.flags= AVFMT_GENERIC_INDEX,
.extensions = "thd",
.value = CODEC_ID_TRUEHD,
};
#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,
.extensions = "shn",
.value = CODEC_ID_SHORTEN,
};
#endif
#if CONFIG_VC1_DEMUXER
FF_DEF_RAWVIDEO_DEMUXER(vc1, "raw VC-1", NULL, "vc1", CODEC_ID_VC1)
#endif