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"
|
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"
|
2012-12-19 03:31:19 +04:00
|
|
|
|
2013-01-06 06:20:25 +04:00
|
|
|
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
|
|
|
|
#define MAX(x, y) (((x) > (y)) ? (x) : (y))
|
|
|
|
|
2013-03-08 00:24:35 +04:00
|
|
|
#define ROUND_POWER_OF_TWO(value, n) (((value) + (1 << ((n) - 1))) >> (n))
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-03-08 00:24:35 +04:00
|
|
|
/* If we don't want to use ROUND_POWER_OF_TWO macro
|
|
|
|
static INLINE int16_t round_power_of_two(int16_t value, int n) {
|
|
|
|
return (value + (1 << (n - 1))) >> n;
|
|
|
|
}*/
|
2010-05-18 19:58:33 +04:00
|
|
|
|
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)); \
|
|
|
|
vpx_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)); \
|
|
|
|
vpx_memcpy(dest, src, n * sizeof(*src)); \
|
|
|
|
}
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-03-08 00:24:35 +04:00
|
|
|
#define vp9_zero(dest) vpx_memset(&dest, 0, sizeof(dest));
|
|
|
|
#define vp9_zero_array(dest, n) vpx_memset(dest, 0, n * sizeof(*dest));
|
2010-05-18 19:58:33 +04:00
|
|
|
|
2013-02-07 00:45:28 +04:00
|
|
|
static INLINE uint8_t clip_pixel(int val) {
|
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
|
|
|
return (val > 255) ? 255u : (val < 0) ? 0u : val;
|
|
|
|
}
|
|
|
|
|
2013-03-12 04:02:27 +04:00
|
|
|
static INLINE int clamp(int value, int low, int high) {
|
|
|
|
return value < low ? low : (value > high ? high : value);
|
|
|
|
}
|
|
|
|
|
2013-05-09 05:13:46 +04:00
|
|
|
static INLINE double fclamp(double value, double low, double high) {
|
|
|
|
return value < low ? low : (value > high ? high : value);
|
|
|
|
}
|
|
|
|
|
2013-04-02 05:23:04 +04:00
|
|
|
static INLINE int multiple16(int value) {
|
|
|
|
return (value + 15) & ~15;
|
|
|
|
}
|
|
|
|
|
2013-05-29 05:07:54 +04:00
|
|
|
#define SYNC_CODE_0 0x49
|
|
|
|
#define SYNC_CODE_1 0x83
|
|
|
|
#define SYNC_CODE_2 0x42
|
|
|
|
|
|
|
|
|
2012-12-19 03:31:19 +04:00
|
|
|
#endif // VP9_COMMON_VP9_COMMON_H_
|