FFmpeg
Loading...
Searching...
No Matches
pcm.c
Go to the documentation of this file.
1/*
2 * PCM common functions
3 * Copyright (c) 2003 Fabrice Bellard
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#include "pcm.h"
26
27#define PCM_DEMUX_TARGET_FPS 10
28
30{
31 int nb_samples, max_samples, bits_per_sample;
33
34 if (par->block_align <= 0)
35 return AVERROR(EINVAL);
36
37 max_samples = INT_MAX / par->block_align;
38 bits_per_sample = av_get_bits_per_sample(par->codec_id);
39 bitrate = par->bit_rate;
40
41 /* Don't trust the codecpar bitrate if we can calculate it ourselves */
42 if (bits_per_sample > 0 && par->sample_rate > 0 && par->ch_layout.nb_channels > 0)
43 if ((int64_t)par->sample_rate * par->ch_layout.nb_channels < INT64_MAX / bits_per_sample)
44 bitrate = bits_per_sample * (int64_t)par->sample_rate * par->ch_layout.nb_channels;
45
46 if (bitrate > 0) {
47 nb_samples = av_clip64(bitrate / 8 / PCM_DEMUX_TARGET_FPS / par->block_align, 1, max_samples);
48 nb_samples = 1 << av_log2(nb_samples);
49 } else {
50 /* Fallback to a size based method for a non-pcm codec with unknown bitrate */
51 nb_samples = av_clip(4096 / par->block_align, 1, max_samples);
52 }
53
54 return par->block_align * nb_samples;
55}
56
58{
59 int ret, size;
60
61 size = ff_pcm_default_packet_size(s->streams[0]->codecpar);
62 if (size < 0)
63 return size;
64
65 ret = av_get_packet(s->pb, pkt, size);
66
67 pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
68 pkt->stream_index = 0;
69
70 return ret;
71}
72
74 int stream_index, int64_t timestamp, int flags)
75{
76 AVStream *st;
77 int block_align;
78 int64_t byte_rate;
79 int64_t pos, ret;
80
81 st = s->streams[0];
82
83 block_align = st->codecpar->block_align ? st->codecpar->block_align :
85 byte_rate = st->codecpar->bit_rate ? st->codecpar->bit_rate >> 3 :
86 block_align * (int64_t)st->codecpar->sample_rate;
87
88 if (block_align <= 0 || byte_rate <= 0 || FFMAX(timestamp, st->time_base.num) > INT64_MAX / byte_rate)
89 return -1;
90 if (timestamp < 0) timestamp = 0;
91
92 /* compute the position by aligning it to block_align */
93 pos = av_rescale_rnd(timestamp * byte_rate,
94 st->time_base.num,
95 st->time_base.den * (int64_t)block_align,
97
98 if (pos > (INT64_MAX - FFMAX(ffformatcontext(s)->data_offset, 0)) / block_align)
99 return -1;
100 pos *= block_align;
101
102 /* recompute exact position */
103 ffstream(st)->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num);
104 if ((ret = avio_seek(s->pb, pos + ffformatcontext(s)->data_offset, SEEK_SET)) < 0)
105 return ret;
106 return 0;
107}
Main libavformat public API header.
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:98
#define AVSEEK_FLAG_BACKWARD
seek backward
Definition avformat.h:2616
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition aviobuf.c:236
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define av_clip
Definition common.h:100
#define av_clip64
Definition common.h:103
long long int64_t
Definition coverity.c:34
static AVPacket * pkt
int av_get_bits_per_sample(enum AVCodecID codec_id)
Return codec bits per sample.
Definition utils.c:556
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition packet.h:651
#define AVERROR(e)
Definition error.h:45
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
Definition mathematics.c:58
@ AV_ROUND_DOWN
Round toward -infinity.
@ AV_ROUND_UP
Round toward +infinity.
#define av_log2
Definition intmath.h:84
static av_always_inline FFStream * ffstream(AVStream *st)
Definition internal.h:365
static av_always_inline FFFormatContext * ffformatcontext(AVFormatContext *s)
Definition internal.h:130
#define PCM_DEMUX_TARGET_FPS
Definition pcm.c:27
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition pcm.c:57
int ff_pcm_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
Definition pcm.c:73
int ff_pcm_default_packet_size(AVCodecParameters *par)
Definition pcm.c:29
#define FFMAX(a, b)
Definition macros.h:47
unsigned int pos
Definition spdifenc.c:431
int nb_channels
Number of channels in this layout.
This struct describes the properties of an encoded stream.
Definition codec_par.h:49
AVChannelLayout ch_layout
The channel layout and number of channels.
Definition codec_par.h:207
int64_t bit_rate
The average bitrate of the encoded data (in bits per second).
Definition codec_par.h:99
int block_align
The number of bytes per coded audio frame, required by some formats.
Definition codec_par.h:221
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition codec_par.h:57
int sample_rate
The number of audio samples per second.
Definition codec_par.h:213
Format I/O context.
Definition avformat.h:1333
This structure stores compressed data.
Definition packet.h:580
int num
Numerator.
Definition rational.h:59
int den
Denominator.
Definition rational.h:60
Stream structure.
Definition avformat.h:766
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition avformat.h:789
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented.
Definition avformat.h:805
int64_t cur_dts
Definition internal.h:360
int64_t bitrate
Definition av1_levels.c:47
int size