Go to the documentation of this file.
45 if (
ctx->par_in->ch_layout.nb_channels <= 0 ||
ctx->par_in->sample_rate <= 0)
49 s->sample_size =
ctx->par_in->ch_layout.nb_channels *
52 if (
s->frame_rate.num) {
55 min_samples =
s->nb_out_samples;
57 if (min_samples <= 0 || min_samples > INT_MAX /
s->sample_size - 1)
62 if (!
s->in_pkt || !
s->out_pkt)
103 if (
s->frame_rate.num) {
107 return s->nb_out_samples;
120 memset(buf,
c,
size);
127 int data_size = nb_samples *
s->sample_size;
131 if (
s->in_pkt->size) {
132 if (
s->out_pkt->size ||
s->in_pkt->size < data_size) {
133 int drain =
FFMIN(
s->in_pkt->size, data_size -
s->out_pkt->size);
134 if (!
s->out_pkt->size) {
143 s->out_pkt->size = 0;
145 memcpy(
s->out_pkt->data +
s->out_pkt->size,
s->in_pkt->data, drain);
146 s->out_pkt->size += drain;
148 if (!
s->in_pkt->size)
150 if (
s->out_pkt->size == data_size) {
155 }
else if (
s->in_pkt->size > data_size) {
173 set_silence(
ctx->par_in,
s->out_pkt->data +
s->out_pkt->size, data_size -
s->out_pkt->size);
174 s->out_pkt->size = data_size;
176 nb_samples =
s->out_pkt->size /
s->sample_size;
188 #define OFFSET(x) offsetof(PCMContext, x)
189 #define FLAGS (AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_BSF_PARAM)
191 {
"nb_out_samples",
"set the number of per-packet output samples",
OFFSET(nb_out_samples),
AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX,
FLAGS },
192 {
"n",
"set the number of per-packet output samples",
OFFSET(nb_out_samples),
AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX,
FLAGS },
233 .
p.
name =
"pcm_rechunk",
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame 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. Frame references ownership and permissions
This struct describes the properties of an encoded stream.
const FFBitStreamFilter ff_pcm_rechunk_bsf
#define AVERROR_EOF
End of file.
static void set_silence(AVCodecParameters *par, uint8_t *buf, size_t size)
void(* filter)(uint8_t *src, int stride, int qscale)
static void drain_packet(AVPacket *pkt, int drain_data, int drain_samples)
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
@ AV_OPT_TYPE_RATIONAL
Underlying C type is AVRational.
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
The bitstream filter state.
static int init(AVBSFContext *ctx)
static const AVOption options[]
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static const AVClass pcm_rechunk_class
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
static int rechunk_filter(AVBSFContext *ctx, AVPacket *pkt)
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
Rational number (pair of numerator and denominator).
const char * av_default_item_name(void *ptr)
Return the context name.
int av_packet_ref(AVPacket *dst, const AVPacket *src)
Setup a new reference to the data described by a given packet.
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
AVCodecID
Identify the syntax and semantics of the bitstream.
@ AV_ROUND_DOWN
Round toward -infinity.
AVBitStreamFilter p
The public AVBitStreamFilter.
static AVRational av_make_q(int num, int den)
Create an AVRational.
#define AV_NOPTS_VALUE
Undefined timestamp value.
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
static int send_packet(PCMContext *s, int nb_samples, AVPacket *pkt)
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
void av_packet_rescale_ts(AVPacket *pkt, AVRational src_tb, AVRational dst_tb)
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another.
static enum AVCodecID codec_ids[]
static void uninit(AVBSFContext *ctx)
int av_packet_copy_props(AVPacket *dst, const AVPacket *src)
Copy only "properties" fields from src to dst.
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
static av_always_inline AVRational av_inv_q(AVRational q)
Invert a rational.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
@ AV_OPT_TYPE_INT
Underlying C type is int.
static int get_next_nb_samples(AVBSFContext *ctx)
static void flush(AVBSFContext *ctx)
@ AV_CODEC_ID_PCM_S24DAUD
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
This structure stores compressed data.
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
Called by bitstream filters to get packet for filtering.
void * priv_data
Format private data.
int64_t av_rescale_q_rnd(int64_t a, AVRational bq, AVRational cq, enum AVRounding rnd)
Rescale a 64-bit integer by 2 rational numbers with specified rounding.