afc.c
Go to the documentation of this file.
1 /*
2  * AFC demuxer
3  * Copyright (c) 2012 Paul B Mahol
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
23 #include "avformat.h"
24 #include "internal.h"
25 
26 typedef struct AFCDemuxContext {
27  int64_t data_end;
29 
31 {
33  AVStream *st;
34 
35  st = avformat_new_stream(s, NULL);
36  if (!st)
37  return AVERROR(ENOMEM);
40  st->codec->channels = 2;
42  st->codec->extradata_size = 1;
43 
45  if (!st->codec->extradata)
46  return AVERROR(ENOMEM);
47  st->codec->extradata[0] = 8 * st->codec->channels;
48 
49  c->data_end = avio_rb32(s->pb) + 32LL;
50  st->duration = avio_rb32(s->pb);
51  st->codec->sample_rate = avio_rb16(s->pb);
52  avio_skip(s->pb, 22);
53  avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
54 
55  return 0;
56 }
57 
59 {
61  int64_t size;
62  int ret;
63 
64  size = FFMIN(c->data_end - avio_tell(s->pb), 18 * 128);
65  if (size <= 0)
66  return AVERROR_EOF;
67 
68  ret = av_get_packet(s->pb, pkt, size);
69  pkt->stream_index = 0;
70  return ret;
71 }
72 
74  .name = "afc",
75  .long_name = NULL_IF_CONFIG_SMALL("AFC"),
76  .priv_data_size = sizeof(AFCDemuxContext),
79  .extensions = "afc",
81 };
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
#define AVFMT_NOBINSEARCH
Format does not allow to fallback to binary search via read_timestamp.
Definition: avformat.h:358
const char * s
Definition: avisynth_c.h:668
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.
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:256
#define AV_CH_LAYOUT_STEREO
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:595
Format I/O context.
Definition: avformat.h:944
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:610
static AVPacket pkt
Definition: demuxing.c:56
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
static int afc_read_header(AVFormatContext *s)
Definition: afc.c:30
struct AFCDemuxContext AFCDemuxContext
#define AVERROR_EOF
End of file.
Definition: error.h:55
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.
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:248
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
int size
uint64_t channel_layout
Audio channel layout.
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
#define FF_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
audio channel layout utility functions
#define FFMIN(a, b)
Definition: common.h:58
ret
Definition: avfilter.c:821
int64_t data_end
Definition: afc.c:27
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
Stream structure.
Definition: avformat.h:643
NULL
Definition: eval.c:55
enum AVMediaType codec_type
enum AVCodecID codec_id
int sample_rate
samples per second
AVIOContext * pb
I/O context.
Definition: avformat.h:977
static int afc_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: afc.c:58
#define AVFMT_NOGENSEARCH
Format does not allow to fallback to generic search.
Definition: avformat.h:359
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
static int flags
Definition: cpu.c:23
AVInputFormat ff_afc_demuxer
Definition: afc.c:73
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:696
Main libavformat public API header.
static double c[64]
#define AVFMT_NO_BYTE_SEEK
Format does not allow seeking by bytes.
Definition: avformat.h:360
int channels
number of audio channels
void * priv_data
Format private data.
Definition: avformat.h:964
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:461
This structure stores compressed data.