Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
87d2c3c0
Commit
87d2c3c0
authored
Jul 17, 2015
by
Yaowu Xu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed vp9_ prefix from vpx_dsp/bitreader file names
Change-Id: I0426126d0a65f13f9250983e44cc366b1b1a9c4a
parent
97279ed2
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
34 additions
and
35 deletions
+34
-35
test/vp9_boolcoder_test.cc
test/vp9_boolcoder_test.cc
+1
-1
vp9/common/vp9_entropy.h
vp9/common/vp9_entropy.h
+1
-1
vp9/common/vp9_entropymv.h
vp9/common/vp9_entropymv.h
+1
-1
vp9/common/vp9_seg_common.h
vp9/common/vp9_seg_common.h
+1
-1
vp9/decoder/vp9_decodeframe.c
vp9/decoder/vp9_decodeframe.c
+2
-2
vp9/decoder/vp9_decodemv.h
vp9/decoder/vp9_decodemv.h
+1
-1
vp9/decoder/vp9_decoder.h
vp9/decoder/vp9_decoder.h
+1
-1
vp9/decoder/vp9_detokenize.h
vp9/decoder/vp9_detokenize.h
+1
-2
vp9/decoder/vp9_dsubexp.h
vp9/decoder/vp9_dsubexp.h
+1
-1
vp9/encoder/vp9_cost.h
vp9/encoder/vp9_cost.h
+1
-1
vp9/encoder/vp9_subexp.h
vp9/encoder/vp9_subexp.h
+1
-1
vp9/encoder/vp9_writer.h
vp9/encoder/vp9_writer.h
+1
-1
vp9/vp9_dx_iface.c
vp9/vp9_dx_iface.c
+1
-1
vpx_dsp/bitreader.c
vpx_dsp/bitreader.c
+2
-2
vpx_dsp/bitreader.h
vpx_dsp/bitreader.h
+4
-4
vpx_dsp/bitreader_buffer.c
vpx_dsp/bitreader_buffer.c
+1
-1
vpx_dsp/bitreader_buffer.h
vpx_dsp/bitreader_buffer.h
+3
-3
vpx_dsp/prob.c
vpx_dsp/prob.c
+1
-1
vpx_dsp/prob.h
vpx_dsp/prob.h
+3
-3
vpx_dsp/vpx_dsp.mk
vpx_dsp/vpx_dsp.mk
+6
-6
No files found.
test/vp9_boolcoder_test.cc
View file @
87d2c3c0
...
...
@@ -15,7 +15,7 @@
#include "third_party/googletest/src/include/gtest/gtest.h"
#include "vpx/vpx_integer.h"
#include "vpx_dsp/
vp9_
reader.h"
#include "vpx_dsp/
bit
reader.h"
#include "vp9/encoder/vp9_writer.h"
...
...
vp9/common/vp9_entropy.h
View file @
87d2c3c0
...
...
@@ -12,7 +12,7 @@
#define VP9_COMMON_VP9_ENTROPY_H_
#include "vpx/vpx_integer.h"
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
#include "vp9/common/vp9_common.h"
#include "vp9/common/vp9_enums.h"
...
...
vp9/common/vp9_entropymv.h
View file @
87d2c3c0
...
...
@@ -14,7 +14,7 @@
#include "./vpx_config.h"
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
#include "vp9/common/vp9_mv.h"
...
...
vp9/common/vp9_seg_common.h
View file @
87d2c3c0
...
...
@@ -11,7 +11,7 @@
#ifndef VP9_COMMON_VP9_SEG_COMMON_H_
#define VP9_COMMON_VP9_SEG_COMMON_H_
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
#ifdef __cplusplus
extern
"C"
{
...
...
vp9/decoder/vp9_decodeframe.c
View file @
87d2c3c0
...
...
@@ -14,8 +14,8 @@
#include "./vp9_rtcd.h"
#include "./vpx_scale_rtcd.h"
#include "vpx_dsp/
vp9_read_bit
_buffer.h"
#include "vpx_dsp/
vp9_
reader.h"
#include "vpx_dsp/
bitreader
_buffer.h"
#include "vpx_dsp/
bit
reader.h"
#include "vpx_mem/vpx_mem.h"
#include "vpx_ports/mem.h"
#include "vpx_ports/mem_ops.h"
...
...
vp9/decoder/vp9_decodemv.h
View file @
87d2c3c0
...
...
@@ -11,7 +11,7 @@
#ifndef VP9_DECODER_VP9_DECODEMV_H_
#define VP9_DECODER_VP9_DECODEMV_H_
#include "vpx_dsp/
vp9_
reader.h"
#include "vpx_dsp/
bit
reader.h"
#include "vp9/decoder/vp9_decoder.h"
...
...
vp9/decoder/vp9_decoder.h
View file @
87d2c3c0
...
...
@@ -14,7 +14,7 @@
#include "./vpx_config.h"
#include "vpx/vpx_codec.h"
#include "vpx_dsp/
vp9_
reader.h"
#include "vpx_dsp/
bit
reader.h"
#include "vpx_scale/yv12config.h"
#include "vpx_util/vpx_thread.h"
...
...
vp9/decoder/vp9_detokenize.h
View file @
87d2c3c0
...
...
@@ -12,8 +12,7 @@
#ifndef VP9_DECODER_VP9_DETOKENIZE_H_
#define VP9_DECODER_VP9_DETOKENIZE_H_
#include "vpx_dsp/vp9_reader.h"
#include "vpx_dsp/bitreader.h"
#include "vp9/decoder/vp9_decoder.h"
#include "vp9/common/vp9_scan.h"
...
...
vp9/decoder/vp9_dsubexp.h
View file @
87d2c3c0
...
...
@@ -12,7 +12,7 @@
#ifndef VP9_DECODER_VP9_DSUBEXP_H_
#define VP9_DECODER_VP9_DSUBEXP_H_
#include "vpx_dsp/
vp9_
reader.h"
#include "vpx_dsp/
bit
reader.h"
#ifdef __cplusplus
extern
"C"
{
...
...
vp9/encoder/vp9_cost.h
View file @
87d2c3c0
...
...
@@ -11,7 +11,7 @@
#ifndef VP9_ENCODER_VP9_COST_H_
#define VP9_ENCODER_VP9_COST_H_
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
#ifdef __cplusplus
extern
"C"
{
...
...
vp9/encoder/vp9_subexp.h
View file @
87d2c3c0
...
...
@@ -16,7 +16,7 @@
extern
"C"
{
#endif
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
struct
vp9_writer
;
...
...
vp9/encoder/vp9_writer.h
View file @
87d2c3c0
...
...
@@ -13,7 +13,7 @@
#include "vpx_ports/mem.h"
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
#ifdef __cplusplus
extern
"C"
{
...
...
vp9/vp9_dx_iface.c
View file @
87d2c3c0
...
...
@@ -17,7 +17,7 @@
#include "vpx/internal/vpx_codec_internal.h"
#include "vpx/vp8dx.h"
#include "vpx/vpx_decoder.h"
#include "vpx_dsp/
vp9_read_bit
_buffer.h"
#include "vpx_dsp/
bitreader
_buffer.h"
#include "vpx_util/vpx_thread.h"
#include "vp9/common/vp9_alloccommon.h"
...
...
vpx_dsp/
vp9_
reader.c
→
vpx_dsp/
bit
reader.c
View file @
87d2c3c0
...
...
@@ -7,8 +7,8 @@
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "./
vp9_prob
.h"
#include "./
vp9_reader
.h"
#include "./
bitreader
.h"
#include "./
prob
.h"
#include "vpx_ports/mem.h"
#include "vpx_mem/vpx_mem.h"
...
...
vpx_dsp/
vp9_
reader.h
→
vpx_dsp/
bit
reader.h
View file @
87d2c3c0
...
...
@@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef VP
9_DECODER_VP9_
READER_H_
#define VP
9_DECODER_VP9_
READER_H_
#ifndef VP
X_DSP_BIT
READER_H_
#define VP
X_DSP_BIT
READER_H_
#include <stddef.h>
#include <limits.h>
...
...
@@ -18,7 +18,7 @@
#include "vpx_ports/mem.h"
#include "vpx/vp8dx.h"
#include "vpx/vpx_integer.h"
#include "vpx_dsp/
vp9_
prob.h"
#include "vpx_dsp/prob.h"
#ifdef __cplusplus
extern
"C"
{
...
...
@@ -137,4 +137,4 @@ static INLINE int vp9_read_tree(vp9_reader *r, const vp9_tree_index *tree,
}
// extern "C"
#endif
#endif // VP
9_DECODER_VP9_
READER_H_
#endif // VP
X_DSP_BIT
READER_H_
vpx_dsp/
vp9_read_bit
_buffer.c
→
vpx_dsp/
bitreader
_buffer.c
View file @
87d2c3c0
...
...
@@ -7,7 +7,7 @@
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "./
vp9_read_bit
_buffer.h"
#include "./
bitreader
_buffer.h"
size_t
vp9_rb_bytes_read
(
struct
vp9_read_bit_buffer
*
rb
)
{
return
(
rb
->
bit_offset
+
7
)
>>
3
;
...
...
vpx_dsp/
vp9_read_bit
_buffer.h
→
vpx_dsp/
bitreader
_buffer.h
View file @
87d2c3c0
...
...
@@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef VP
9_DECODER_VP9_READ_BIT
_BUFFER_H_
#define VP
9_DECODER_VP9_READ_BIT
_BUFFER_H_
#ifndef VP
X_DSP_BITREADER
_BUFFER_H_
#define VP
X_DSP_BITREADER
_BUFFER_H_
#include <limits.h>
...
...
@@ -42,4 +42,4 @@ int vp9_rb_read_signed_literal(struct vp9_read_bit_buffer *rb, int bits);
}
// extern "C"
#endif
#endif // VP
9_DECODER_VP9_READ_BIT
_BUFFER_H_
#endif // VP
X_DSP_BITREADER
_BUFFER_H_
vpx_dsp/
vp9_
prob.c
→
vpx_dsp/prob.c
View file @
87d2c3c0
...
...
@@ -8,7 +8,7 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#include "./
vp9_
prob.h"
#include "./prob.h"
const
uint8_t
vp9_norm
[
256
]
=
{
0
,
7
,
6
,
6
,
5
,
5
,
5
,
5
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
4
,
...
...
vpx_dsp/
vp9_
prob.h
→
vpx_dsp/prob.h
View file @
87d2c3c0
...
...
@@ -8,8 +8,8 @@
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef VP
9_COMMON_VP9
_PROB_H_
#define VP
9_COMMON_VP9
_PROB_H_
#ifndef VP
X_DSP
_PROB_H_
#define VP
X_DSP
_PROB_H_
#include "./vpx_config.h"
#include "./vpx_dsp_common.h"
...
...
@@ -100,4 +100,4 @@ DECLARE_ALIGNED(16, extern const uint8_t, vp9_norm[256]);
}
// extern "C"
#endif
#endif // VP
9_COMMON_VP9
_PROB_H_
#endif // VP
X_DSP
_PROB_H_
vpx_dsp/vpx_dsp.mk
View file @
87d2c3c0
...
...
@@ -14,14 +14,14 @@ DSP_SRCS-yes += vpx_dsp_common.h
DSP_SRCS-$(HAVE_MSA)
+=
mips/macros_msa.h
# bit reader
DSP_SRCS-yes
+=
vp9_
prob.h
DSP_SRCS-yes
+=
vp9_
prob.c
DSP_SRCS-yes
+=
prob.h
DSP_SRCS-yes
+=
prob.c
ifeq
($(CONFIG_DECODERS),yes)
DSP_SRCS-yes
+=
vp9_
reader.h
DSP_SRCS-yes
+=
vp9_
reader.c
DSP_SRCS-yes
+=
vp9_read_bit
_buffer.c
DSP_SRCS-yes
+=
vp9_read_bit
_buffer.h
DSP_SRCS-yes
+=
bit
reader.h
DSP_SRCS-yes
+=
bit
reader.c
DSP_SRCS-yes
+=
bitreader
_buffer.c
DSP_SRCS-yes
+=
bitreader
_buffer.h
endif
# loop filters
...
...
Write
Preview
Markdown
is supported
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