Lines Matching refs:version
7 * version 2.1 of the License, or (at your option) any later version.
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
37 static int rac_check_termination(RangeCoder *c, int version)
39 if (version == 1) {
61 int i, p, actual_length, version;
66 for (version = 0; version < 2; version++) {
79 actual_length = ff_rac_terminate(&c, version);
81 ff_init_range_decoder(&c, b, version ? SIZE : actual_length);
87 av_log(NULL, AV_LOG_ERROR, "rac failure at %d pass %d version %d\n", i, p, version);
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);
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);