Files
FFmpeg/libavformat/rsodec.c
T

84 lines
2.5 KiB
C
Raw Normal View History

2010-07-20 14:13:24 +00:00
/*
* RSO demuxer
* Copyright (c) 2001 Fabrice Bellard (original AU code)
* Copyright (c) 2010 Rafael Carre
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* 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.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* 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
*/
2012-04-07 18:18:37 -04:00
#include "libavutil/channel_layout.h"
2010-07-20 14:13:24 +00:00
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
2010-08-30 21:17:34 +00:00
#include "pcm.h"
2010-07-20 14:13:24 +00:00
#include "rso.h"
static int rso_read_header(AVFormatContext *s)
2010-07-20 14:13:24 +00:00
{
2011-02-20 11:04:12 +01:00
AVIOContext *pb = s->pb;
2010-07-20 14:13:24 +00:00
int id, rate, bps;
unsigned int size;
2012-08-05 11:11:04 +02:00
enum AVCodecID codec;
2010-07-20 14:13:24 +00:00
AVStream *st;
2011-02-21 16:43:01 +01:00
id = avio_rb16(pb);
size = avio_rb16(pb);
rate = avio_rb16(pb);
avio_rb16(pb); /* play mode ? (0x0000 = don't loop) */
2010-07-20 14:13:24 +00:00
codec = ff_codec_get_id(ff_codec_rso_tags, id);
2012-08-05 11:11:04 +02:00
if (codec == AV_CODEC_ID_ADPCM_IMA_WAV) {
2010-07-20 14:13:24 +00:00
av_log(s, AV_LOG_ERROR, "ADPCM in RSO not implemented\n");
return AVERROR_PATCHWELCOME;
}
bps = av_get_bits_per_sample(codec);
if (!bps) {
av_log_ask_for_sample(s, "could not determine bits per sample\n");
return AVERROR_PATCHWELCOME;
2010-07-20 14:13:24 +00:00
}
/* now we are ready: build format streams */
st = avformat_new_stream(s, NULL);
2010-07-20 14:13:24 +00:00
if (!st)
return AVERROR(ENOMEM);
st->duration = (size * 8) / bps;
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_tag = id;
st->codec->codec_id = codec;
st->codec->channels = 1;
2012-04-07 18:18:37 -04:00
st->codec->channel_layout = AV_CH_LAYOUT_MONO;
2010-07-20 14:13:24 +00:00
st->codec->sample_rate = rate;
2012-12-03 17:47:11 +00:00
st->codec->block_align = 1;
2010-07-20 14:13:24 +00:00
2011-11-29 19:28:15 +01:00
avpriv_set_pts_info(st, 64, 1, rate);
2010-07-20 14:13:24 +00:00
return 0;
}
AVInputFormat ff_rso_demuxer = {
2010-07-20 14:13:24 +00:00
.name = "rso",
.long_name = NULL_IF_CONFIG_SMALL("Lego Mindstorms RSO"),
2010-07-20 14:13:24 +00:00
.extensions = "rso",
.read_header = rso_read_header,
2012-12-03 17:47:11 +00:00
.read_packet = ff_pcm_read_packet,
.read_seek = ff_pcm_read_seek,
2010-07-20 14:13:24 +00:00
.codec_tag = (const AVCodecTag* const []){ff_codec_rso_tags, 0},
};