Coverage Report

Created: 2026-09-14 08:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavformat/pcm.c
Line
Count
Source
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
22
#include "libavutil/mathematics.h"
23
#include "avformat.h"
24
#include "internal.h"
25
#include "pcm.h"
26
27
1.96M
#define PCM_DEMUX_TARGET_FPS  10
28
29
int ff_pcm_default_packet_size(AVCodecParameters *par)
30
2.05M
{
31
2.05M
    int nb_samples, max_samples, bits_per_sample;
32
2.05M
    int64_t bitrate;
33
34
2.05M
    if (par->block_align <= 0)
35
6.21k
        return AVERROR(EINVAL);
36
37
2.04M
    max_samples = INT_MAX / par->block_align;
38
2.04M
    bits_per_sample = av_get_bits_per_sample(par->codec_id);
39
2.04M
    bitrate = par->bit_rate;
40
41
    /* Don't trust the codecpar bitrate if we can calculate it ourselves */
42
2.04M
    if (bits_per_sample > 0 && par->sample_rate > 0 && par->ch_layout.nb_channels > 0)
43
1.93M
        if ((int64_t)par->sample_rate * par->ch_layout.nb_channels < INT64_MAX / bits_per_sample)
44
1.93M
            bitrate = bits_per_sample * (int64_t)par->sample_rate * par->ch_layout.nb_channels;
45
46
2.04M
    if (bitrate > 0) {
47
1.96M
        nb_samples = av_clip64(bitrate / 8 / PCM_DEMUX_TARGET_FPS / par->block_align, 1, max_samples);
48
1.96M
        nb_samples = 1 << av_log2(nb_samples);
49
1.96M
    } else {
50
        /* Fallback to a size based method for a non-pcm codec with unknown bitrate */
51
84.9k
        nb_samples = av_clip(4096 / par->block_align, 1, max_samples);
52
84.9k
    }
53
54
2.04M
    return par->block_align * nb_samples;
55
2.05M
}
56
57
int ff_pcm_read_packet(AVFormatContext *s, AVPacket *pkt)
58
2.01M
{
59
2.01M
    int ret, size;
60
61
2.01M
    size = ff_pcm_default_packet_size(s->streams[0]->codecpar);
62
2.01M
    if (size < 0)
63
4.13k
        return size;
64
65
2.01M
    ret = av_get_packet(s->pb, pkt, size);
66
67
2.01M
    pkt->flags &= ~AV_PKT_FLAG_CORRUPT;
68
2.01M
    pkt->stream_index = 0;
69
70
2.01M
    return ret;
71
2.01M
}
72
73
int ff_pcm_read_seek(AVFormatContext *s,
74
                     int stream_index, int64_t timestamp, int flags)
75
0
{
76
0
    AVStream *st;
77
0
    int block_align;
78
0
    int64_t byte_rate;
79
0
    int64_t pos, ret;
80
81
0
    st = s->streams[0];
82
83
0
    block_align = st->codecpar->block_align ? st->codecpar->block_align :
84
0
        (av_get_bits_per_sample(st->codecpar->codec_id) * st->codecpar->ch_layout.nb_channels) >> 3;
85
0
    byte_rate = st->codecpar->bit_rate ? st->codecpar->bit_rate >> 3 :
86
0
        block_align * (int64_t)st->codecpar->sample_rate;
87
88
0
    if (block_align <= 0 || byte_rate <= 0 || FFMAX(timestamp, st->time_base.num) > INT64_MAX / byte_rate)
89
0
        return -1;
90
0
    if (timestamp < 0) timestamp = 0;
91
92
    /* compute the position by aligning it to block_align */
93
0
    pos = av_rescale_rnd(timestamp * byte_rate,
94
0
                         st->time_base.num,
95
0
                         st->time_base.den * (int64_t)block_align,
96
0
                         (flags & AVSEEK_FLAG_BACKWARD) ? AV_ROUND_DOWN : AV_ROUND_UP);
97
98
0
    if (pos > (INT64_MAX - FFMAX(ffformatcontext(s)->data_offset, 0)) / block_align)
99
0
        return -1;
100
0
    pos *= block_align;
101
102
    /* recompute exact position */
103
0
    ffstream(st)->cur_dts = av_rescale(pos, st->time_base.den, byte_rate * (int64_t)st->time_base.num);
104
0
    if ((ret = avio_seek(s->pb, pos + ffformatcontext(s)->data_offset, SEEK_SET)) < 0)
105
0
        return ret;
106
0
    return 0;
107
0
}