2010-05-18 19:58:33 +04:00
|
|
|
/*
|
2010-09-09 16:16:39 +04:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 19:58:33 +04:00
|
|
|
*
|
2010-06-18 20:39:21 +04:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-05 00:19:40 +04:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 20:39:21 +04:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-05 00:19:40 +04:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 19:58:33 +04:00
|
|
|
*/
|
|
|
|
|
2012-11-30 04:36:10 +04:00
|
|
|
#ifndef VP9_COMMON_VP9_COMMON_H_
|
|
|
|
#define VP9_COMMON_VP9_COMMON_H_
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
/* Interface header for common constant data structures and lookup tables */
|
|
|
|
|
2013-03-06 02:12:16 +04:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "./vpx_config.h"
|
2015-07-15 23:02:01 +03:00
|
|
|
#include "vpx_dsp/vpx_dsp_common.h"
|
2010-05-18 19:58:33 +04:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
Consistently use get_prob(), clip_prob() and newly added clip_pixel().
Add a function clip_pixel() to clip a pixel value to the [0,255] range
of allowed values, and use this where-ever appropriate (e.g. prediction,
reconstruction). Likewise, consistently use the recently added function
clip_prob(), which calculates a binary probability in the [1,255] range.
If possible, try to use get_prob() or its sister get_binary_prob() to
calculate binary probabilities, for consistency.
Since in some places, this means that binary probability calculations
are changed (we use {255,256}*count0/(total) in a range of places,
and all of these are now changed to use 256*count0+(total>>1)/total),
this changes the encoding result, so this patch warrants some extensive
testing.
Change-Id: Ibeeff8d886496839b8e0c0ace9ccc552351f7628
2012-12-11 00:09:07 +04:00
|
|
|
#include "vpx/vpx_integer.h"
|
2015-08-10 21:28:04 +03:00
|
|
|
#include "vpx_ports/bitops.h"
|
2012-12-19 03:31:19 +04:00
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-03-08 00:24:35 +04:00
|
|
|
// Only need this for fixed-size arrays, for structs just assign.
|
|
|
|
#define vp9_copy(dest, src) { \
|
|
|
|
assert(sizeof(dest) == sizeof(src)); \
|
2015-04-24 06:42:19 +03:00
|
|
|
memcpy(dest, src, sizeof(src)); \
|
2012-07-14 02:21:29 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-03-08 00:24:35 +04:00
|
|
|
// Use this for variably-sized arrays.
|
|
|
|
#define vp9_copy_array(dest, src, n) { \
|
|
|
|
assert(sizeof(*dest) == sizeof(*src)); \
|
2015-04-24 06:42:19 +03:00
|
|
|
memcpy(dest, src, n * sizeof(*src)); \
|
2013-03-08 00:24:35 +04:00
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2015-04-24 06:47:40 +03:00
|
|
|
#define vp9_zero(dest) memset(&(dest), 0, sizeof(dest))
|
|
|
|
#define vp9_zero_array(dest, n) memset(dest, 0, n * sizeof(*dest))
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2014-02-04 00:12:01 +04:00
|
|
|
static INLINE int get_unsigned_bits(unsigned int num_values) {
|
|
|
|
return num_values > 0 ? get_msb(num_values) + 1 : 0;
|
2013-06-25 22:52:44 +04:00
|
|
|
}
|
|
|
|
|
2013-06-28 21:36:20 +04:00
|
|
|
#if CONFIG_DEBUG
|
|
|
|
#define CHECK_MEM_ERROR(cm, lval, expr) do { \
|
|
|
|
lval = (expr); \
|
|
|
|
if (!lval) \
|
|
|
|
vpx_internal_error(&cm->error, VPX_CODEC_MEM_ERROR, \
|
|
|
|
"Failed to allocate "#lval" at %s:%d", \
|
|
|
|
__FILE__, __LINE__); \
|
|
|
|
} while (0)
|
|
|
|
#else
|
|
|
|
#define CHECK_MEM_ERROR(cm, lval, expr) do { \
|
|
|
|
lval = (expr); \
|
|
|
|
if (!lval) \
|
|
|
|
vpx_internal_error(&cm->error, VPX_CODEC_MEM_ERROR, \
|
|
|
|
"Failed to allocate "#lval); \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2013-10-24 04:24:17 +04:00
|
|
|
#define VP9_SYNC_CODE_0 0x49
|
|
|
|
#define VP9_SYNC_CODE_1 0x83
|
|
|
|
#define VP9_SYNC_CODE_2 0x42
|
|
|
|
|
|
|
|
#define VP9_FRAME_MARKER 0x2
|
2013-05-29 05:07:54 +04:00
|
|
|
|
|
|
|
|
2014-01-19 00:16:11 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
#endif // VP9_COMMON_VP9_COMMON_H_
|