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
Xiph.Org
aom-rav1e
Commits
4fb213f3
Commit
4fb213f3
authored
Sep 26, 2016
by
Alex Converse
Browse files
Remove VP10 style bitreader and bitwriter wrappers
Change-Id: I13eed9cb6950ea4fbdd586d43b73ac0cc2d78d33
parent
0ad82c6e
Changes
9
Hide whitespace changes
Inline
Side-by-side
av1/av1_cx.mk
View file @
4fb213f3
...
...
@@ -19,7 +19,6 @@ AV1_CX_SRCS_REMOVE-no += $(AV1_COMMON_SRCS_REMOVE-no)
AV1_CX_SRCS-yes
+=
av1_cx_iface.c
AV1_CX_SRCS-yes
+=
encoder/bitstream.c
AV1_CX_SRCS-yes
+=
encoder/bitwriter.h
AV1_CX_SRCS-yes
+=
encoder/context_tree.c
AV1_CX_SRCS-yes
+=
encoder/context_tree.h
AV1_CX_SRCS-yes
+=
encoder/variance_tree.c
...
...
av1/av1_dx.mk
View file @
4fb213f3
...
...
@@ -30,6 +30,5 @@ AV1_DX_SRCS-yes += decoder/decoder.c
AV1_DX_SRCS-yes
+=
decoder/decoder.h
AV1_DX_SRCS-yes
+=
decoder/dsubexp.c
AV1_DX_SRCS-yes
+=
decoder/dsubexp.h
AV1_DX_SRCS-yes
+=
decoder/bitreader.h
AV1_DX_SRCS-yes
:=
$(
filter-out
$
(
AV1_DX_SRCS_REMOVE-yes
)
,
$
(
AV1_DX_SRCS-yes
))
av1/decoder/bitreader.h
deleted
100644 → 0
View file @
0ad82c6e
/*
* Copyright (c) 2016 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
/* The purpose of this header is to provide compile time pluggable bit reader
* implementations with a common interface. */
#ifndef AOM10_DECODER_BITREADER_H_
#define AOM10_DECODER_BITREADER_H_
#include
"./aom_config.h"
#if CONFIG_ANS
#include
"aom_dsp/ans.h"
#include
"aom/aomdx.h"
// for av1_decrypt_cb
#define aom_reader struct AnsDecoder
#define aom_reader_has_error ans_reader_has_error
#define aom_read uabs_read
#define aom_read_bit uabs_read_bit
#define aom_read_literal uabs_read_literal
#define aom_read_tree uabs_read_tree
#else
#include
"aom_dsp/bitreader.h"
#define aom_reader aom_reader
#define aom_reader_has_error aom_reader_has_error
#define aom_read aom_read
#define aom_read_bit aom_read_bit
#define aom_read_literal aom_read_literal
#define aom_read_tree aom_read_tree
#endif
#endif // AOM10_DECODER_BITREADER_H_
av1/decoder/decodemv.h
View file @
4fb213f3
...
...
@@ -12,7 +12,7 @@
#ifndef AV1_DECODER_DECODEMV_H_
#define AV1_DECODER_DECODEMV_H_
#include
"a
v1/decoder
/bitreader.h"
#include
"a
om_dsp
/bitreader.h"
#include
"av1/decoder/decoder.h"
...
...
av1/decoder/decoder.h
View file @
4fb213f3
...
...
@@ -15,7 +15,7 @@
#include
"./aom_config.h"
#include
"aom/aom_codec.h"
#include
"a
v1/decoder
/bitreader.h"
#include
"a
om_dsp
/bitreader.h"
#include
"aom_scale/yv12config.h"
#include
"aom_util/aom_thread.h"
...
...
av1/decoder/dsubexp.h
View file @
4fb213f3
...
...
@@ -12,7 +12,7 @@
#ifndef AV1_DECODER_DSUBEXP_H_
#define AV1_DECODER_DSUBEXP_H_
#include
"a
v1/decoder
/bitreader.h"
#include
"a
om_dsp
/bitreader.h"
#ifdef __cplusplus
extern
"C"
{
...
...
av1/encoder/bitwriter.h
deleted
100644 → 0
View file @
0ad82c6e
/*
* Copyright (c) 2016 The WebM project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
/* The purpose of this header is to provide compile time pluggable bit writer
* implementations with a common interface. */
#ifndef AOM10_ENCODER_BITWRITER_H_
#define AOM10_ENCODER_BITWRITER_H_
#include
"aom_dsp/bitwriter.h"
#endif // AOM10_ENCODER_BITWRITER_H_
av1/encoder/subexp.c
View file @
4fb213f3
...
...
@@ -8,7 +8,7 @@
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#include
"a
v1/encoder
/bitwriter.h"
#include
"a
om_dsp
/bitwriter.h"
#include
"av1/common/common.h"
#include
"av1/common/entropy.h"
...
...
av1/encoder/treewriter.h
View file @
4fb213f3
...
...
@@ -17,7 +17,7 @@
#define tree_writer aom_dk_writer
#define tree_bit_write aom_dk_write
#else
#include
"a
v1/encoder
/bitwriter.h"
#include
"a
om_dsp
/bitwriter.h"
#define tree_writer aom_writer
#define tree_bit_write aom_write
#endif
...
...
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