Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Raphael Zumer
aom-rav1e
Commits
c5f11912
Commit
c5f11912
authored
Aug 31, 2015
by
Johann
Browse files
Include vpx_dsp_common.h when using VPXMIN/MAX
Change-Id: I2e387a06484a06301f3cd6600c4ba2f4335b61ee
parent
9a9b1cf7
Changes
62
Hide whitespace changes
Inline
Side-by-side
vp10/common/blockd.h
View file @
c5f11912
...
...
@@ -14,6 +14,7 @@
#include
"./vpx_config.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_ports/mem.h"
#include
"vpx_scale/yv12config.h"
...
...
vp10/common/common_data.h
View file @
c5f11912
...
...
@@ -13,6 +13,7 @@
#include
"vp10/common/enums.h"
#include
"vpx/vpx_integer.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#ifdef __cplusplus
extern
"C"
{
...
...
vp10/common/loopfilter.c
View file @
c5f11912
...
...
@@ -13,6 +13,7 @@
#include
"vp10/common/loopfilter.h"
#include
"vp10/common/onyxc_int.h"
#include
"vp10/common/reconinter.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/mem.h"
...
...
vp10/common/postproc.c
View file @
c5f11912
...
...
@@ -16,6 +16,7 @@
#include
"./vpx_scale_rtcd.h"
#include
"./vp10_rtcd.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_ports/mem.h"
#include
"vpx_ports/system_state.h"
#include
"vpx_scale/vpx_scale.h"
...
...
vp10/common/pred_common.h
View file @
c5f11912
...
...
@@ -13,6 +13,7 @@
#include
"vp10/common/blockd.h"
#include
"vp10/common/onyxc_int.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#ifdef __cplusplus
extern
"C"
{
...
...
vp10/common/thread_common.c
View file @
c5f11912
...
...
@@ -9,6 +9,7 @@
*/
#include
"./vpx_config.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vp10/common/entropymode.h"
#include
"vp10/common/thread_common.h"
...
...
vp10/common/tile_common.c
View file @
c5f11912
...
...
@@ -9,8 +9,8 @@
*/
#include
"vp10/common/tile_common.h"
#include
"vp10/common/onyxc_int.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#define MIN_TILE_WIDTH_B64 4
#define MAX_TILE_WIDTH_B64 64
...
...
vp10/decoder/decodeframe.c
View file @
c5f11912
...
...
@@ -17,6 +17,7 @@
#include
"vpx_dsp/bitreader_buffer.h"
#include
"vpx_dsp/bitreader.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/mem.h"
#include
"vpx_ports/mem_ops.h"
...
...
vp10/decoder/decodemv.c
View file @
c5f11912
...
...
@@ -22,6 +22,8 @@
#include
"vp10/decoder/decodemv.h"
#include
"vp10/decoder/decodeframe.h"
#include
"vpx_dsp/vpx_dsp_common.h"
static
PREDICTION_MODE
read_intra_mode
(
vpx_reader
*
r
,
const
vpx_prob
*
p
)
{
return
(
PREDICTION_MODE
)
vpx_read_tree
(
r
,
vp10_intra_mode_tree
,
p
);
}
...
...
vp10/encoder/aq_complexity.c
View file @
c5f11912
...
...
@@ -16,6 +16,7 @@
#include
"vp10/encoder/encodeframe.h"
#include
"vp10/common/seg_common.h"
#include
"vp10/encoder/segmentation.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_ports/system_state.h"
#define AQ_C_SEGMENTS 5
...
...
vp10/encoder/aq_cyclicrefresh.c
View file @
c5f11912
...
...
@@ -15,6 +15,7 @@
#include
"vp10/encoder/aq_cyclicrefresh.h"
#include
"vp10/encoder/ratectrl.h"
#include
"vp10/encoder/segmentation.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_ports/system_state.h"
struct
CYCLIC_REFRESH
{
...
...
vp10/encoder/bitstream.c
View file @
c5f11912
...
...
@@ -14,6 +14,7 @@
#include
"vpx/vpx_encoder.h"
#include
"vpx_dsp/bitwriter_buffer.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/mem_ops.h"
#include
"vpx_ports/system_state.h"
...
...
vp10/encoder/denoiser.c
View file @
c5f11912
...
...
@@ -11,6 +11,7 @@
#include
<assert.h>
#include
<limits.h>
#include
"./vpx_dsp_rtcd.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_scale/yv12config.h"
#include
"vpx/vpx_integer.h"
#include
"vp10/common/reconinter.h"
...
...
vp10/encoder/encodeframe.c
View file @
c5f11912
...
...
@@ -16,6 +16,7 @@
#include
"./vpx_dsp_rtcd.h"
#include
"./vpx_config.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_ports/mem.h"
#include
"vpx_ports/vpx_timer.h"
#include
"vpx_ports/system_state.h"
...
...
vp10/encoder/encodemv.c
View file @
c5f11912
...
...
@@ -16,6 +16,8 @@
#include
"vp10/encoder/cost.h"
#include
"vp10/encoder/encodemv.h"
#include
"vpx_dsp/vpx_dsp_common.h"
static
struct
vp10_token
mv_joint_encodings
[
MV_JOINTS
];
static
struct
vp10_token
mv_class_encodings
[
MV_CLASSES
];
static
struct
vp10_token
mv_fp_encodings
[
MV_FP_SIZE
];
...
...
vp10/encoder/encoder.c
View file @
c5f11912
...
...
@@ -51,6 +51,7 @@
#if CONFIG_INTERNAL_STATS
#include
"vpx_dsp/ssim.h"
#endif
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_dsp/vpx_filter.h"
#include
"vpx_ports/mem.h"
#include
"vpx_ports/system_state.h"
...
...
vp10/encoder/ethread.c
View file @
c5f11912
...
...
@@ -11,6 +11,7 @@
#include
"vp10/encoder/encodeframe.h"
#include
"vp10/encoder/encoder.h"
#include
"vp10/encoder/ethread.h"
#include
"vpx_dsp/vpx_dsp_common.h"
static
void
accumulate_rd_opt
(
ThreadData
*
td
,
ThreadData
*
td_t
)
{
int
i
,
j
,
k
,
l
,
m
,
n
;
...
...
vp10/encoder/extend.c
View file @
c5f11912
...
...
@@ -8,6 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/mem.h"
...
...
vp10/encoder/firstpass.c
View file @
c5f11912
...
...
@@ -15,6 +15,7 @@
#include
"./vpx_dsp_rtcd.h"
#include
"./vpx_scale_rtcd.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/mem.h"
#include
"vpx_ports/system_state.h"
...
...
vp10/encoder/mbgraph.c
View file @
c5f11912
...
...
@@ -13,6 +13,7 @@
#include
"./vp10_rtcd.h"
#include
"./vpx_dsp_rtcd.h"
#include
"vpx_dsp/vpx_dsp_common.h"
#include
"vpx_mem/vpx_mem.h"
#include
"vpx_ports/system_state.h"
#include
"vp10/encoder/segmentation.h"
...
...
Prev
1
2
3
4
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment