FFmpeg
Loading...
Searching...
No Matches
rangecoder.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#include <stdint.h>
20#include <string.h>
21
22#include "libavutil/error.h"
23#include "libavutil/lfg.h"
24#include "libavutil/log.h"
25
27
28#define SIZE 1240
29
30/**
31 * Check if at the current position there is a valid looking termination
32 * @param version version 0 requires the decoder to know the data size in bytes
33 * version 1 needs about 1 bit more space but does not need to
34 * carry the size from encoder to decoder
35 * @returns negative AVERROR code on error or non negative.
36 */
38{
39 if (version == 1) {
40 RangeCoder tmp = *c;
41 get_rac(c, (uint8_t[]) { 129 });
42
43 if (c->bytestream == tmp.bytestream && c->bytestream > c->bytestream_start)
44 tmp.low -= *--tmp.bytestream;
45 tmp.bytestream_end = tmp.bytestream;
46
47 if (get_rac(&tmp, (uint8_t[]) { 129 }))
49 } else {
50 if (c->bytestream_end != c->bytestream)
52 }
53 return 0;
54}
55
56int main(void)
57{
59 uint8_t b[9 * SIZE] = {0};
60 uint8_t r[9 * SIZE];
61 int i, p, actual_length, version;
62 uint8_t state[10];
63 AVLFG prng;
64
65 av_lfg_init(&prng, 1);
66 for (version = 0; version < 2; version++) {
67 for (p = 0; p< 1024; p++) {
69 ff_build_rac_states(&c, (1LL << 32) / 20, 128 + 64 + 32 + 16);
70
71 memset(state, 128, sizeof(state));
72
73 for (i = 0; i < SIZE; i++)
74 r[i] = av_lfg_get(&prng) % 7;
75
76 for (i = 0; i < SIZE; i++)
77 put_rac(&c, state, r[i] & 1);
78
79 actual_length = ff_rac_terminate(&c, version);
80
81 ff_init_range_decoder(&c, b, version ? SIZE : actual_length);
82
83 memset(state, 128, sizeof(state));
84
85 for (i = 0; i < SIZE; i++)
86 if ((r[i] & 1) != get_rac(&c, state)) {
87 av_log(NULL, AV_LOG_ERROR, "rac failure at %d pass %d version %d\n", i, p, version);
88 return 1;
89 }
90
91 if (rac_check_termination(&c, version) < 0) {
92 av_log(NULL, AV_LOG_ERROR, "rac failure at termination pass %d version %d\n", p, version);
93 return 1;
94 }
95 if (c.bytestream - c.bytestream_start - actual_length != version) {
96 av_log(NULL, AV_LOG_ERROR, "rac failure at pass %d version %d\n", p, version);
97 return 1;
98 }
99 }
100 }
101
102 return 0;
103}
#define SIZE
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define NULL
Definition coverity.c:32
error code definitions
static struct @346255127015250356166251341105367306144006377143 state
#define put_rac(C, S, B)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
#define r
Definition input.c:42
#define b
Definition input.c:43
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
Definition lfg.c:32
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
Definition lfg.h:53
version
Definition libkvazaar.c:313
int ff_rac_terminate(RangeCoder *c, int version)
Terminates the range coder.
Definition rangecoder.c:109
av_cold void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size)
Definition rangecoder.c:53
void ff_build_rac_states(RangeCoder *c, int factor, int max_p)
Definition rangecoder.c:68
av_cold void ff_init_range_encoder(RangeCoder *c, uint8_t *buf, int buf_size)
Definition rangecoder.c:42
Range coder.
static int get_rac(RangeCoder *c, uint8_t *const state)
Definition rangecoder.h:118
Context structure for the Lagged Fibonacci PRNG.
Definition lfg.h:33
#define av_log(a,...)
static uint8_t tmp[40]
Definition aes_ctr.c:52
static void prng(CheckasmRand *restrict xs, uint8_t *restrict buf, size_t size)
Definition utils.c:154
int main(void)
Definition rangecoder.c:56
static int rac_check_termination(RangeCoder *c, int version)
Check if at the current position there is a valid looking termination.
Definition rangecoder.c:37
static double c[64]