Libav
adxdec.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Justin Ruggles
3  *
4  * This file is part of Libav.
5  *
6  * Libav is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * Libav is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with Libav; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
26 #include "libavutil/intreadwrite.h"
27 #include "libavcodec/adx.h"
28 #include "avformat.h"
29 #include "internal.h"
30 
31 #define BLOCK_SIZE 18
32 #define BLOCK_SAMPLES 32
33 
34 typedef struct ADXDemuxerContext {
37 
39 {
41  AVCodecContext *avctx = s->streams[0]->codec;
42  int ret, size;
43 
44  size = BLOCK_SIZE * avctx->channels;
45 
46  pkt->pos = avio_tell(s->pb);
47  pkt->stream_index = 0;
48 
49  ret = av_get_packet(s->pb, pkt, size);
50  if (ret != size) {
51  av_free_packet(pkt);
52  return ret < 0 ? ret : AVERROR(EIO);
53  }
54  if (AV_RB16(pkt->data) & 0x8000) {
55  av_free_packet(pkt);
56  return AVERROR_EOF;
57  }
58  pkt->size = size;
59  pkt->duration = 1;
60  pkt->pts = (pkt->pos - c->header_size) / size;
61 
62  return 0;
63 }
64 
66 {
68  AVCodecContext *avctx;
69  int ret;
70 
72  if (!st)
73  return AVERROR(ENOMEM);
74  avctx = s->streams[0]->codec;
75 
76  if (avio_rb16(s->pb) != 0x8000)
77  return AVERROR_INVALIDDATA;
78  c->header_size = avio_rb16(s->pb) + 4;
79  avio_seek(s->pb, -4, SEEK_CUR);
80 
82  if (!avctx->extradata)
83  return AVERROR(ENOMEM);
84  if (avio_read(s->pb, avctx->extradata, c->header_size) < c->header_size) {
85  av_freep(&avctx->extradata);
86  return AVERROR(EIO);
87  }
88  avctx->extradata_size = c->header_size;
89 
90  ret = avpriv_adx_decode_header(avctx, avctx->extradata,
91  avctx->extradata_size, &c->header_size,
92  NULL);
93  if (ret)
94  return ret;
95 
98 
100 
101  return 0;
102 }
103 
105  .name = "adx",
106  .long_name = NULL_IF_CONFIG_SMALL("CRI ADX"),
107  .priv_data_size = sizeof(ADXDemuxerContext),
110  .extensions = "adx",
111  .raw_codec_id = AV_CODEC_ID_ADPCM_ADX,
113 };
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
int size
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:242
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1002
static int adx_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: adxdec.c:38
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:3208
int size
Definition: avcodec.h:974
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:186
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:574
#define BLOCK_SAMPLES
Definition: adxdec.c:32
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
Definition: mem.c:198
Format I/O context.
Definition: avformat.h:871
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1162
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:935
uint8_t * data
Definition: avcodec.h:973
static int flags
Definition: log.c:44
#define AVERROR_EOF
End of file.
Definition: error.h:51
static int adx_read_header(AVFormatContext *s)
Definition: adxdec.c:65
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:118
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:219
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:995
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:446
#define BLOCK_SIZE
Definition: adxdec.c:31
#define AV_RB16
Definition: intreadwrite.h:53
#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:142
AVStream * avformat_new_stream(AVFormatContext *s, AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:2662
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:702
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:509
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:536
Stream structure.
Definition: avformat.h:683
NULL
Definition: eval.c:55
enum AVMediaType codec_type
Definition: avcodec.h:1062
enum AVCodecID codec_id
Definition: avcodec.h:1065
int sample_rate
samples per second
Definition: avcodec.h:1779
AVIOContext * pb
I/O context.
Definition: avformat.h:913
main external API structure.
Definition: avcodec.h:1054
int extradata_size
Definition: avcodec.h:1163
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:408
int raw_codec_id
Raw demuxers store their codec ID here.
Definition: avformat.h:555
int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, int bufsize, int *header_size, int *coeff)
Decode ADX stream header.
Definition: adx.c:38
Main libavformat public API header.
struct AVInputFormat * iformat
The input container format.
Definition: avformat.h:883
int channels
number of audio channels
Definition: avcodec.h:1780
void * priv_data
Format private data.
Definition: avformat.h:899
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:516
int stream_index
Definition: avcodec.h:975
SEGA CRI adx codecs.
AVInputFormat ff_adx_demuxer
Definition: adxdec.c:104
This structure stores compressed data.
Definition: avcodec.h:950
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:205
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:966