Coverage Report

Created: 2026-01-16 07:48

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/ffmpeg/libavcodec/bitstream.c
Line
Count
Source
1
/*
2
 * Common bit i/o utils
3
 * Copyright (c) 2000, 2001 Fabrice Bellard
4
 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5
 * Copyright (c) 2010 Loren Merritt
6
 *
7
 * alternative bitstream reader & writer by Michael Niedermayer <michaelni@gmx.at>
8
 *
9
 * This file is part of FFmpeg.
10
 *
11
 * FFmpeg is free software; you can redistribute it and/or
12
 * modify it under the terms of the GNU Lesser General Public
13
 * License as published by the Free Software Foundation; either
14
 * version 2.1 of the License, or (at your option) any later version.
15
 *
16
 * FFmpeg is distributed in the hope that it will be useful,
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19
 * Lesser General Public License for more details.
20
 *
21
 * You should have received a copy of the GNU Lesser General Public
22
 * License along with FFmpeg; if not, write to the Free Software
23
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24
 */
25
26
/**
27
 * @file
28
 * bitstream api.
29
 */
30
31
#include <stdint.h>
32
#include <string.h>
33
34
#include "config.h"
35
#include "libavutil/avassert.h"
36
#include "libavutil/intreadwrite.h"
37
#include "put_bits.h"
38
39
void ff_put_string(PutBitContext *pb, const char *string, int terminate_string)
40
74.5k
{
41
604k
    while (*string) {
42
530k
        put_bits(pb, 8, *string);
43
530k
        string++;
44
530k
    }
45
74.5k
    if (terminate_string)
46
26.4k
        put_bits(pb, 8, 0);
47
74.5k
}
48
49
void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
50
7.43M
{
51
7.43M
    int words = length >> 4;
52
7.43M
    int bits  = length & 15;
53
7.43M
    int i;
54
55
7.43M
    if (length == 0)
56
2.92M
        return;
57
58
4.50M
    av_assert0(length <= put_bits_left(pb));
59
60
4.50M
    if (CONFIG_SMALL || words < 16 || put_bits_count(pb) & 7) {
61
25.9M
        for (i = 0; i < words; i++)
62
21.5M
            put_bits(pb, 16, AV_RB16(src + 2 * i));
63
4.41M
    } else {
64
205k
        for (i = 0; put_bits_count(pb) & 31; i++)
65
116k
            put_bits(pb, 8, src[i]);
66
89.6k
        flush_put_bits(pb);
67
89.6k
        memcpy(put_bits_ptr(pb), src + i, 2 * words - i);
68
89.6k
        skip_put_bytes(pb, 2 * words - i);
69
89.6k
    }
70
71
4.50M
    put_bits(pb, bits, AV_RB16(src + 2 * words) >> (16 - bits));
72
4.50M
}