rsodec.c
Go to the documentation of this file.
1 /*
2  * RSO demuxer
3  * Copyright (c) 2001 Fabrice Bellard (original AU code)
4  * Copyright (c) 2010 Rafael Carre
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 #include "libavutil/intreadwrite.h"
24 #include "avformat.h"
25 #include "internal.h"
26 #include "pcm.h"
27 #include "riff.h"
28 #include "rso.h"
29 
31 {
32  AVIOContext *pb = s->pb;
33  int id, rate, bps;
34  unsigned int size;
35  enum CodecID codec;
36  AVStream *st;
37 
38  id = avio_rb16(pb);
39  size = avio_rb16(pb);
40  rate = avio_rb16(pb);
41  avio_rb16(pb); /* play mode ? (0x0000 = don't loop) */
42 
44 
45  if (codec == CODEC_ID_ADPCM_IMA_WAV) {
46  av_log(s, AV_LOG_ERROR, "ADPCM in RSO not implemented\n");
47  return AVERROR_PATCHWELCOME;
48  }
49 
50  bps = av_get_bits_per_sample(codec);
51  if (!bps) {
52  av_log_ask_for_sample(s, "could not determine bits per sample\n");
53  return AVERROR_INVALIDDATA;
54  }
55 
56  /* now we are ready: build format streams */
57  st = avformat_new_stream(s, NULL);
58  if (!st)
59  return AVERROR(ENOMEM);
60 
61  st->duration = (size * 8) / bps;
63  st->codec->codec_tag = id;
64  st->codec->codec_id = codec;
65  st->codec->channels = 1;
66  st->codec->sample_rate = rate;
67 
68  avpriv_set_pts_info(st, 64, 1, rate);
69 
70  return 0;
71 }
72 
73 #define BLOCK_SIZE 1024 /* in samples */
74 
76 {
78  int ret = av_get_packet(s->pb, pkt, BLOCK_SIZE * bps >> 3);
79 
80  if (ret < 0)
81  return ret;
82 
83  pkt->stream_index = 0;
84 
85  /* note: we need to modify the packet size here to handle the last packet */
86  pkt->size = ret;
87 
88  return 0;
89 }
90 
92  .name = "rso",
93  .long_name = NULL_IF_CONFIG_SMALL("Lego Mindstorms RSO format"),
94  .extensions = "rso",
95  .read_header = rso_read_header,
96  .read_packet = rso_read_packet,
97  .read_seek = pcm_read_seek,
98  .codec_tag = (const AVCodecTag* const []){ff_codec_rso_tags, 0},
99 };
Bytestream IO Context.
Definition: avio.h:68
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
int size
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the pts for a given stream.
Definition: utils.c:3828
static int rso_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rsodec.c:75
int size
Definition: avcodec.h:909
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:754
AVInputFormat ff_rso_demuxer
Definition: rsodec.c:91
Format I/O context.
Definition: avformat.h:863
AVStream ** streams
Definition: avformat.h:908
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:269
int av_get_bits_per_sample(enum CodecID codec_id)
Return codec bits per sample.
Definition: utils.c:1634
enum CodecID ff_codec_get_id(const AVCodecTag *tags, unsigned int tag)
Definition: utils.c:2206
#define BLOCK_SIZE
Definition: rsodec.c:73
#define AVERROR(e)
Definition: error.h:43
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:140
AVStream * avformat_new_stream(AVFormatContext *s, AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:2776
static int rso_read_header(AVFormatContext *s, AVFormatParameters *ap)
Definition: rsodec.c:30
AVCodecContext * codec
codec context
Definition: avformat.h:623
internal header for RIFF based (de)muxers do NOT include this in end user applications ...
const AVCodecTag ff_codec_rso_tags[]
Definition: rso.c:26
Stream structure.
Definition: avformat.h:620
#define AVERROR_PATCHWELCOME
Not yet implemented in Libav, patches welcome.
Definition: error.h:57
int pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition: pcm.c:26
NULL
Definition: eval.c:50
enum AVMediaType codec_type
Definition: avcodec.h:1574
int sample_rate
samples per second
Definition: avcodec.h:1456
AVIOContext * pb
Definition: avformat.h:896
void av_log_ask_for_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message asking for a sample.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:111
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1590
enum CodecID id
Definition: mxfenc.c:85
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:684
Main libavformat public API header.
unsigned bps
Definition: movenc.c:671
CodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:83
int channels
number of audio channels
Definition: avcodec.h:1457
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:460
int stream_index
Definition: avcodec.h:910
enum CodecID codec_id
Definition: avcodec.h:1575