Correct guard macros in header files
Change-Id: Ifce12a95c1cdc36dc6ac5a72759249a17407da9e
This commit is contained in:
parent
4622af69e6
commit
2dcefd9c7f
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_COMMON_VP9_ALLOCCOMMON_H_
|
||||
#define VP9_COMMON_VP9_ALLOCCOMMON_H_
|
||||
#ifndef VP10_COMMON_ALLOCCOMMON_H_
|
||||
#define VP10_COMMON_ALLOCCOMMON_H_
|
||||
|
||||
#define INVALID_IDX -1 // Invalid buffer index.
|
||||
|
||||
@ -41,4 +41,4 @@ void vp10_swap_current_and_last_seg_map(struct VP9Common *cm);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_ALLOCCOMMON_H_
|
||||
#endif // VP10_COMMON_ALLOCCOMMON_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_COMMON_VP9_BLOCKD_H_
|
||||
#define VP9_COMMON_VP9_BLOCKD_H_
|
||||
#ifndef VP10_COMMON_BLOCKD_H_
|
||||
#define VP10_COMMON_BLOCKD_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
|
||||
@ -315,4 +315,4 @@ void vp10_set_contexts(const MACROBLOCKD *xd, struct macroblockd_plane *pd,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_BLOCKD_H_
|
||||
#endif // VP10_COMMON_BLOCKD_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_COMMON_H_
|
||||
#define VP9_COMMON_VP9_COMMON_H_
|
||||
#ifndef VP10_COMMON_COMMON_H_
|
||||
#define VP10_COMMON_COMMON_H_
|
||||
|
||||
/* Interface header for common constant data structures and lookup tables */
|
||||
|
||||
@ -72,4 +72,4 @@ static INLINE int get_unsigned_bits(unsigned int num_values) {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_COMMON_H_
|
||||
#endif // VP10_COMMON_COMMON_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_COMMON_DATA_H_
|
||||
#define VP9_COMMON_VP9_COMMON_DATA_H_
|
||||
#ifndef VP10_COMMON_COMMON_DATA_H_
|
||||
#define VP10_COMMON_COMMON_DATA_H_
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -171,4 +171,4 @@ static const struct {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_COMMON_DATA_H_
|
||||
#endif // VP10_COMMON_COMMON_DATA_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_ENTROPY_H_
|
||||
#define VP9_COMMON_VP9_ENTROPY_H_
|
||||
#ifndef VP10_COMMON_ENTROPY_H_
|
||||
#define VP10_COMMON_ENTROPY_H_
|
||||
|
||||
#include "vpx/vpx_integer.h"
|
||||
#include "vpx_dsp/prob.h"
|
||||
@ -212,4 +212,4 @@ static INLINE int get_entropy_context(TX_SIZE tx_size, const ENTROPY_CONTEXT *a,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_ENTROPY_H_
|
||||
#endif // VP10_COMMON_ENTROPY_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_ENTROPYMODE_H_
|
||||
#define VP9_COMMON_VP9_ENTROPYMODE_H_
|
||||
#ifndef VP10_COMMON_ENTROPYMODE_H_
|
||||
#define VP10_COMMON_ENTROPYMODE_H_
|
||||
|
||||
#include "vp10/common/entropy.h"
|
||||
#include "vp10/common/entropymv.h"
|
||||
@ -104,4 +104,4 @@ void vp10_tx_counts_to_branch_counts_8x8(const unsigned int *tx_count_8x8p,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_ENTROPYMODE_H_
|
||||
#endif // VP10_COMMON_ENTROPYMODE_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_COMMON_VP9_ENTROPYMV_H_
|
||||
#define VP9_COMMON_VP9_ENTROPYMV_H_
|
||||
#ifndef VP10_COMMON_ENTROPYMV_H_
|
||||
#define VP10_COMMON_ENTROPYMV_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
|
||||
@ -130,4 +130,4 @@ void vp10_inc_mv(const MV *mv, nmv_context_counts *mvctx);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_ENTROPYMV_H_
|
||||
#endif // VP10_COMMON_ENTROPYMV_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_ENUMS_H_
|
||||
#define VP9_COMMON_VP9_ENUMS_H_
|
||||
#ifndef VP10_COMMON_ENUMS_H_
|
||||
#define VP10_COMMON_ENUMS_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -144,4 +144,4 @@ typedef uint8_t PREDICTION_MODE;
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_ENUMS_H_
|
||||
#endif // VP10_COMMON_ENUMS_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_FILTER_H_
|
||||
#define VP9_COMMON_VP9_FILTER_H_
|
||||
#ifndef VP10_COMMON_FILTER_H_
|
||||
#define VP10_COMMON_FILTER_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -39,4 +39,4 @@ extern const InterpKernel *vp10_filter_kernels[4];
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_FILTER_H_
|
||||
#endif // VP10_COMMON_FILTER_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_FRAME_BUFFERS_H_
|
||||
#define VP9_COMMON_VP9_FRAME_BUFFERS_H_
|
||||
#ifndef VP10_COMMON_FRAME_BUFFERS_H_
|
||||
#define VP10_COMMON_FRAME_BUFFERS_H_
|
||||
|
||||
#include "vpx/vpx_frame_buffer.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -50,4 +50,4 @@ int vp10_release_frame_buffer(void *cb_priv, vpx_codec_frame_buffer_t *fb);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_FRAME_BUFFERS_H_
|
||||
#endif // VP10_COMMON_FRAME_BUFFERS_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_IDCT_H_
|
||||
#define VP9_COMMON_VP9_IDCT_H_
|
||||
#ifndef VP10_COMMON_IDCT_H_
|
||||
#define VP10_COMMON_IDCT_H_
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
@ -78,4 +78,4 @@ void vp10_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_IDCT_H_
|
||||
#endif // VP10_COMMON_IDCT_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_LOOPFILTER_H_
|
||||
#define VP9_COMMON_VP9_LOOPFILTER_H_
|
||||
#ifndef VP10_COMMON_LOOPFILTER_H_
|
||||
#define VP10_COMMON_LOOPFILTER_H_
|
||||
|
||||
#include "vpx_ports/mem.h"
|
||||
#include "./vpx_config.h"
|
||||
@ -152,4 +152,4 @@ int vp10_loop_filter_worker(LFWorkerData *const lf_data, void *unused);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_LOOPFILTER_H_
|
||||
#endif // VP10_COMMON_LOOPFILTER_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_MFQE_H_
|
||||
#define VP9_COMMON_VP9_MFQE_H_
|
||||
#ifndef VP10_COMMON_MFQE_H_
|
||||
#define VP10_COMMON_MFQE_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -28,4 +28,4 @@ void vp10_mfqe(struct VP9Common *cm);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_MFQE_H_
|
||||
#endif // VP10_COMMON_MFQE_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_MV_H_
|
||||
#define VP9_COMMON_VP9_MV_H_
|
||||
#ifndef VP10_COMMON_MV_H_
|
||||
#define VP10_COMMON_MV_H_
|
||||
|
||||
#include "vpx/vpx_integer.h"
|
||||
|
||||
@ -52,4 +52,4 @@ static INLINE void clamp_mv(MV *mv, int min_col, int max_col,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_MV_H_
|
||||
#endif // VP10_COMMON_MV_H_
|
||||
|
@ -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.
|
||||
*/
|
||||
#ifndef VP9_COMMON_VP9_MVREF_COMMON_H_
|
||||
#define VP9_COMMON_VP9_MVREF_COMMON_H_
|
||||
#ifndef VP10_COMMON_MVREF_COMMON_H_
|
||||
#define VP10_COMMON_MVREF_COMMON_H_
|
||||
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
@ -229,4 +229,4 @@ void vp10_append_sub8x8_mvs_for_idx(VP9_COMMON *cm, MACROBLOCKD *xd,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_MVREF_COMMON_H_
|
||||
#endif // VP10_COMMON_MVREF_COMMON_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_ONYXC_INT_H_
|
||||
#define VP9_COMMON_VP9_ONYXC_INT_H_
|
||||
#ifndef VP10_COMMON_ONYXC_INT_H_
|
||||
#define VP10_COMMON_ONYXC_INT_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vpx/internal/vpx_codec_internal.h"
|
||||
@ -467,4 +467,4 @@ static INLINE int partition_plane_context(const MACROBLOCKD *xd,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_ONYXC_INT_H_
|
||||
#endif // VP10_COMMON_ONYXC_INT_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_COMMON_VP9_POSTPROC_H_
|
||||
#define VP9_COMMON_VP9_POSTPROC_H_
|
||||
#ifndef VP10_COMMON_POSTPROC_H_
|
||||
#define VP10_COMMON_POSTPROC_H_
|
||||
|
||||
#include "vpx_ports/mem.h"
|
||||
#include "vpx_scale/yv12config.h"
|
||||
@ -50,4 +50,4 @@ void vp10_deblock(const YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, int q)
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_POSTPROC_H_
|
||||
#endif // VP10_COMMON_POSTPROC_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_PPFLAGS_H_
|
||||
#define VP9_COMMON_VP9_PPFLAGS_H_
|
||||
#ifndef VP10_COMMON_PPFLAGS_H_
|
||||
#define VP10_COMMON_PPFLAGS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -40,4 +40,4 @@ typedef struct {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_PPFLAGS_H_
|
||||
#endif // VP10_COMMON_PPFLAGS_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_PRED_COMMON_H_
|
||||
#define VP9_COMMON_VP9_PRED_COMMON_H_
|
||||
#ifndef VP10_COMMON_PRED_COMMON_H_
|
||||
#define VP10_COMMON_PRED_COMMON_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
@ -167,4 +167,4 @@ static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_PRED_COMMON_H_
|
||||
#endif // VP10_COMMON_PRED_COMMON_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_QUANT_COMMON_H_
|
||||
#define VP9_COMMON_VP9_QUANT_COMMON_H_
|
||||
#ifndef VP10_COMMON_QUANT_COMMON_H_
|
||||
#define VP10_COMMON_QUANT_COMMON_H_
|
||||
|
||||
#include "vpx/vpx_codec.h"
|
||||
#include "vp10/common/seg_common.h"
|
||||
@ -33,4 +33,4 @@ int vp10_get_qindex(const struct segmentation *seg, int segment_id,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_QUANT_COMMON_H_
|
||||
#endif // VP10_COMMON_QUANT_COMMON_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_RECONINTER_H_
|
||||
#define VP9_COMMON_VP9_RECONINTER_H_
|
||||
#ifndef VP10_COMMON_RECONINTER_H_
|
||||
#define VP10_COMMON_RECONINTER_H_
|
||||
|
||||
#include "vp10/common/filter.h"
|
||||
#include "vp10/common/onyxc_int.h"
|
||||
@ -192,4 +192,4 @@ void vp10_setup_pre_planes(MACROBLOCKD *xd, int idx,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_RECONINTER_H_
|
||||
#endif // VP10_COMMON_RECONINTER_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_RECONINTRA_H_
|
||||
#define VP9_COMMON_VP9_RECONINTRA_H_
|
||||
#ifndef VP10_COMMON_RECONINTRA_H_
|
||||
#define VP10_COMMON_RECONINTRA_H_
|
||||
|
||||
#include "vpx/vpx_integer.h"
|
||||
#include "vp10/common/blockd.h"
|
||||
@ -29,4 +29,4 @@ void vp10_predict_intra_block(const MACROBLOCKD *xd, int bwl_in,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_RECONINTRA_H_
|
||||
#endif // VP10_COMMON_RECONINTRA_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_SCALE_H_
|
||||
#define VP9_COMMON_VP9_SCALE_H_
|
||||
#ifndef VP10_COMMON_SCALE_H_
|
||||
#define VP10_COMMON_SCALE_H_
|
||||
|
||||
#include "vp10/common/mv.h"
|
||||
#include "vpx_dsp/vpx_convolve.h"
|
||||
@ -72,4 +72,4 @@ static INLINE int valid_ref_frame_size(int ref_width, int ref_height,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_SCALE_H_
|
||||
#endif // VP10_COMMON_SCALE_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_SCAN_H_
|
||||
#define VP9_COMMON_VP9_SCAN_H_
|
||||
#ifndef VP10_COMMON_SCAN_H_
|
||||
#define VP10_COMMON_SCAN_H_
|
||||
|
||||
#include "vpx/vpx_integer.h"
|
||||
#include "vpx_ports/mem.h"
|
||||
@ -54,4 +54,4 @@ static INLINE const scan_order *get_scan(const MACROBLOCKD *xd, TX_SIZE tx_size,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_SCAN_H_
|
||||
#endif // VP10_COMMON_SCAN_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_SEG_COMMON_H_
|
||||
#define VP9_COMMON_VP9_SEG_COMMON_H_
|
||||
#ifndef VP10_COMMON_SEG_COMMON_H_
|
||||
#define VP10_COMMON_SEG_COMMON_H_
|
||||
|
||||
#include "vpx_dsp/prob.h"
|
||||
|
||||
@ -82,5 +82,5 @@ extern const vpx_tree_index vp10_segment_tree[TREE_SIZE(MAX_SEGMENTS)];
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_SEG_COMMON_H_
|
||||
#endif // VP10_COMMON_SEG_COMMON_H_
|
||||
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_TEXTBLIT_H_
|
||||
#define VP9_COMMON_VP9_TEXTBLIT_H_
|
||||
#ifndef VP10_COMMON_TEXTBLIT_H_
|
||||
#define VP10_COMMON_TEXTBLIT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -24,4 +24,4 @@ void vp10_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_TEXTBLIT_H_
|
||||
#endif // VP10_COMMON_TEXTBLIT_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_LOOPFILTER_THREAD_H_
|
||||
#define VP9_COMMON_VP9_LOOPFILTER_THREAD_H_
|
||||
#ifndef VP10_COMMON_LOOPFILTER_THREAD_H_
|
||||
#define VP10_COMMON_LOOPFILTER_THREAD_H_
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/common/loopfilter.h"
|
||||
#include "vpx_util/vpx_thread.h"
|
||||
@ -54,4 +54,4 @@ void vp10_loop_filter_frame_mt(YV12_BUFFER_CONFIG *frame,
|
||||
void vp10_accumulate_frame_counts(struct VP9Common *cm,
|
||||
struct FRAME_COUNTS *counts, int is_dec);
|
||||
|
||||
#endif // VP9_COMMON_VP9_LOOPFILTER_THREAD_H_
|
||||
#endif // VP10_COMMON_LOOPFILTER_THREAD_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_COMMON_VP9_TILE_COMMON_H_
|
||||
#define VP9_COMMON_VP9_TILE_COMMON_H_
|
||||
#ifndef VP10_COMMON_TILE_COMMON_H_
|
||||
#define VP10_COMMON_TILE_COMMON_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -37,4 +37,4 @@ void vp10_get_tile_n_bits(int mi_cols,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_COMMON_VP9_TILE_COMMON_H_
|
||||
#endif // VP10_COMMON_TILE_COMMON_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_DECODER_VP9_DECODEFRAME_H_
|
||||
#define VP9_DECODER_VP9_DECODEFRAME_H_
|
||||
#ifndef VP10_DECODER_DECODEFRAME_H_
|
||||
#define VP10_DECODER_DECODEFRAME_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -32,4 +32,4 @@ void vp10_decode_frame(struct VP9Decoder *pbi,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_DECODER_VP9_DECODEFRAME_H_
|
||||
#endif // VP10_DECODER_DECODEFRAME_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_DECODER_VP9_DECODEMV_H_
|
||||
#define VP9_DECODER_VP9_DECODEMV_H_
|
||||
#ifndef VP10_DECODER_DECODEMV_H_
|
||||
#define VP10_DECODER_DECODEMV_H_
|
||||
|
||||
#include "vpx_dsp/bitreader.h"
|
||||
|
||||
@ -27,4 +27,4 @@ void vp10_read_mode_info(VP9Decoder *const pbi, MACROBLOCKD *xd,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_DECODER_VP9_DECODEMV_H_
|
||||
#endif // VP10_DECODER_DECODEMV_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_DECODER_VP9_DECODER_H_
|
||||
#define VP9_DECODER_VP9_DECODER_H_
|
||||
#ifndef VP10_DECODER_DECODER_H_
|
||||
#define VP10_DECODER_DECODER_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
|
||||
@ -138,4 +138,4 @@ static INLINE void decrease_ref_count(int idx, RefCntBuffer *const frame_bufs,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_DECODER_VP9_DECODER_H_
|
||||
#endif // VP10_DECODER_DECODER_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_DECODER_VP9_DETOKENIZE_H_
|
||||
#define VP9_DECODER_VP9_DETOKENIZE_H_
|
||||
#ifndef VP10_DECODER_DETOKENIZE_H_
|
||||
#define VP10_DECODER_DETOKENIZE_H_
|
||||
|
||||
#include "vpx_dsp/bitreader.h"
|
||||
#include "vp10/decoder/decoder.h"
|
||||
@ -30,4 +30,4 @@ int vp10_decode_block_tokens(MACROBLOCKD *xd,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_DECODER_VP9_DETOKENIZE_H_
|
||||
#endif // VP10_DECODER_DETOKENIZE_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_DECODER_VP9_DSUBEXP_H_
|
||||
#define VP9_DECODER_VP9_DSUBEXP_H_
|
||||
#ifndef VP10_DECODER_DSUBEXP_H_
|
||||
#define VP10_DECODER_DSUBEXP_H_
|
||||
|
||||
#include "vpx_dsp/bitreader.h"
|
||||
|
||||
@ -24,4 +24,4 @@ void vp10_diff_update_prob(vpx_reader *r, vpx_prob* p);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_DECODER_VP9_DSUBEXP_H_
|
||||
#endif // VP10_DECODER_DSUBEXP_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_DECODER_VP9_DTHREAD_H_
|
||||
#define VP9_DECODER_VP9_DTHREAD_H_
|
||||
#ifndef VP10_DECODER_DTHREAD_H_
|
||||
#define VP10_DECODER_DTHREAD_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vpx_util/vpx_thread.h"
|
||||
@ -63,4 +63,4 @@ void vp10_frameworker_broadcast(RefCntBuffer *const buf, int row);
|
||||
void vp10_frameworker_copy_context(VPxWorker *const dst_worker,
|
||||
VPxWorker *const src_worker);
|
||||
|
||||
#endif // VP9_DECODER_VP9_DTHREAD_H_
|
||||
#endif // VP10_DECODER_DTHREAD_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_AQ_COMPLEXITY_H_
|
||||
#define VP9_ENCODER_VP9_AQ_COMPLEXITY_H_
|
||||
#ifndef VP10_ENCODER_AQ_COMPLEXITY_H_
|
||||
#define VP10_ENCODER_AQ_COMPLEXITY_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -34,4 +34,4 @@ void vp10_setup_in_frame_q_adj(struct VP9_COMP *cpi);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_AQ_COMPLEXITY_H_
|
||||
#endif // VP10_ENCODER_AQ_COMPLEXITY_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_AQ_CYCLICREFRESH_H_
|
||||
#define VP9_ENCODER_VP9_AQ_CYCLICREFRESH_H_
|
||||
#ifndef VP10_ENCODER_AQ_CYCLICREFRESH_H_
|
||||
#define VP10_ENCODER_AQ_CYCLICREFRESH_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
|
||||
@ -95,4 +95,4 @@ static INLINE int cyclic_refresh_segment_id(int segment_id) {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_AQ_CYCLICREFRESH_H_
|
||||
#endif // VP10_ENCODER_AQ_CYCLICREFRESH_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_AQ_VARIANCE_H_
|
||||
#define VP9_ENCODER_VP9_AQ_VARIANCE_H_
|
||||
#ifndef VP10_ENCODER_AQ_VARIANCE_H_
|
||||
#define VP10_ENCODER_AQ_VARIANCE_H_
|
||||
|
||||
#include "vp10/encoder/encoder.h"
|
||||
|
||||
@ -28,4 +28,4 @@ double vp10_log_block_var(VP9_COMP *cpi, MACROBLOCK *x, BLOCK_SIZE bs);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_AQ_VARIANCE_H_
|
||||
#endif // VP10_ENCODER_AQ_VARIANCE_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_BITSTREAM_H_
|
||||
#define VP9_ENCODER_VP9_BITSTREAM_H_
|
||||
#ifndef VP10_ENCODER_BITSTREAM_H_
|
||||
#define VP10_ENCODER_BITSTREAM_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -34,4 +34,4 @@ static INLINE int vp10_preserve_existing_gf(VP9_COMP *cpi) {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_BITSTREAM_H_
|
||||
#endif // VP10_ENCODER_BITSTREAM_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_BLOCK_H_
|
||||
#define VP9_ENCODER_VP9_BLOCK_H_
|
||||
#ifndef VP10_ENCODER_BLOCK_H_
|
||||
#define VP10_ENCODER_BLOCK_H_
|
||||
|
||||
#include "vp10/common/entropymv.h"
|
||||
#include "vp10/common/entropy.h"
|
||||
@ -147,4 +147,4 @@ struct macroblock {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_BLOCK_H_
|
||||
#endif // VP10_ENCODER_BLOCK_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_CONTEXT_TREE_H_
|
||||
#define VP9_ENCODER_VP9_CONTEXT_TREE_H_
|
||||
#ifndef VP10_ENCODER_CONTEXT_TREE_H_
|
||||
#define VP10_ENCODER_CONTEXT_TREE_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/encoder/block.h"
|
||||
@ -84,4 +84,4 @@ typedef struct PC_TREE {
|
||||
void vp10_setup_pc_tree(struct VP9Common *cm, struct ThreadData *td);
|
||||
void vp10_free_pc_tree(struct ThreadData *td);
|
||||
|
||||
#endif /* VP9_ENCODER_VP9_CONTEXT_TREE_H_ */
|
||||
#endif /* VP10_ENCODER_CONTEXT_TREE_H_ */
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_COST_H_
|
||||
#define VP9_ENCODER_VP9_COST_H_
|
||||
#ifndef VP10_ENCODER_COST_H_
|
||||
#define VP10_ENCODER_COST_H_
|
||||
|
||||
#include "vpx_dsp/prob.h"
|
||||
|
||||
@ -52,4 +52,4 @@ void vp10_cost_tokens_skip(int *costs, const vpx_prob *probs, vpx_tree tree);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_COST_H_
|
||||
#endif // VP10_ENCODER_COST_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_ENCODEFRAME_H_
|
||||
#define VP9_ENCODER_VP9_ENCODEFRAME_H_
|
||||
#ifndef VP10_ENCODER_ENCODEFRAME_H_
|
||||
#define VP10_ENCODER_ENCODEFRAME_H_
|
||||
|
||||
#include "vpx/vpx_integer.h"
|
||||
|
||||
@ -46,4 +46,4 @@ void vp10_set_variance_partition_thresholds(struct VP9_COMP *cpi, int q);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_ENCODEFRAME_H_
|
||||
#endif // VP10_ENCODER_ENCODEFRAME_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_ENCODEMB_H_
|
||||
#define VP9_ENCODER_VP9_ENCODEMB_H_
|
||||
#ifndef VP10_ENCODER_ENCODEMB_H_
|
||||
#define VP10_ENCODER_ENCODEMB_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/encoder/block.h"
|
||||
@ -43,4 +43,4 @@ void vp10_encode_intra_block_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_ENCODEMB_H_
|
||||
#endif // VP10_ENCODER_ENCODEMB_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_ENCODEMV_H_
|
||||
#define VP9_ENCODER_VP9_ENCODEMV_H_
|
||||
#ifndef VP10_ENCODER_ENCODEMV_H_
|
||||
#define VP10_ENCODER_ENCODEMV_H_
|
||||
|
||||
#include "vp10/encoder/encoder.h"
|
||||
|
||||
@ -35,4 +35,4 @@ void vp10_update_mv_count(ThreadData *td);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_ENCODEMV_H_
|
||||
#endif // VP10_ENCODER_ENCODEMV_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_ENCODER_H_
|
||||
#define VP9_ENCODER_VP9_ENCODER_H_
|
||||
#ifndef VP10_ENCODER_ENCODER_H_
|
||||
#define VP10_ENCODER_ENCODER_H_
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -664,4 +664,4 @@ void vp10_new_framerate(VP9_COMP *cpi, double framerate);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_ENCODER_H_
|
||||
#endif // VP10_ENCODER_ENCODER_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_ETHREAD_H_
|
||||
#define VP9_ENCODER_VP9_ETHREAD_H_
|
||||
#ifndef VP10_ENCODER_ETHREAD_H_
|
||||
#define VP10_ENCODER_ETHREAD_H_
|
||||
|
||||
struct VP9_COMP;
|
||||
struct ThreadData;
|
||||
@ -22,4 +22,4 @@ typedef struct EncWorkerData {
|
||||
|
||||
void vp10_encode_tiles_mt(struct VP9_COMP *cpi);
|
||||
|
||||
#endif // VP9_ENCODER_VP9_ETHREAD_H_
|
||||
#endif // VP10_ENCODER_ETHREAD_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_EXTEND_H_
|
||||
#define VP9_ENCODER_VP9_EXTEND_H_
|
||||
#ifndef VP10_ENCODER_EXTEND_H_
|
||||
#define VP10_ENCODER_EXTEND_H_
|
||||
|
||||
#include "vpx_scale/yv12config.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -30,4 +30,4 @@ void vp10_copy_and_extend_frame_with_rect(const YV12_BUFFER_CONFIG *src,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_EXTEND_H_
|
||||
#endif // VP10_ENCODER_EXTEND_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_FIRSTPASS_H_
|
||||
#define VP9_ENCODER_VP9_FIRSTPASS_H_
|
||||
#ifndef VP10_ENCODER_FIRSTPASS_H_
|
||||
#define VP10_ENCODER_FIRSTPASS_H_
|
||||
|
||||
#include "vp10/encoder/lookahead.h"
|
||||
#include "vp10/encoder/ratectrl.h"
|
||||
@ -163,4 +163,4 @@ void vp10_calculate_coded_size(struct VP9_COMP *cpi,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_FIRSTPASS_H_
|
||||
#endif // VP10_ENCODER_FIRSTPASS_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_LOOKAHEAD_H_
|
||||
#define VP9_ENCODER_VP9_LOOKAHEAD_H_
|
||||
#ifndef VP10_ENCODER_LOOKAHEAD_H_
|
||||
#define VP10_ENCODER_LOOKAHEAD_H_
|
||||
|
||||
#include "vpx_scale/yv12config.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -121,4 +121,4 @@ unsigned int vp10_lookahead_depth(struct lookahead_ctx *ctx);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_LOOKAHEAD_H_
|
||||
#endif // VP10_ENCODER_LOOKAHEAD_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_MBGRAPH_H_
|
||||
#define VP9_ENCODER_VP9_MBGRAPH_H_
|
||||
#ifndef VP10_ENCODER_MBGRAPH_H_
|
||||
#define VP10_ENCODER_MBGRAPH_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -37,4 +37,4 @@ void vp10_update_mbgraph_stats(struct VP9_COMP *cpi);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_MBGRAPH_H_
|
||||
#endif // VP10_ENCODER_MBGRAPH_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_MCOMP_H_
|
||||
#define VP9_ENCODER_VP9_MCOMP_H_
|
||||
#ifndef VP10_ENCODER_MCOMP_H_
|
||||
#define VP10_ENCODER_MCOMP_H_
|
||||
|
||||
#include "vp10/encoder/block.h"
|
||||
#include "vpx_dsp/variance.h"
|
||||
@ -162,4 +162,4 @@ int vp10_full_pixel_search(struct VP9_COMP *cpi, MACROBLOCK *x,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_MCOMP_H_
|
||||
#endif // VP10_ENCODER_MCOMP_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_PICKLPF_H_
|
||||
#define VP9_ENCODER_VP9_PICKLPF_H_
|
||||
#ifndef VP10_ENCODER_PICKLPF_H_
|
||||
#define VP10_ENCODER_PICKLPF_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -27,4 +27,4 @@ void vp10_pick_filter_level(const struct yv12_buffer_config *sd,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_PICKLPF_H_
|
||||
#endif // VP10_ENCODER_PICKLPF_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_PICKMODE_H_
|
||||
#define VP9_ENCODER_VP9_PICKMODE_H_
|
||||
#ifndef VP10_ENCODER_PICKMODE_H_
|
||||
#define VP10_ENCODER_PICKMODE_H_
|
||||
|
||||
#include "vp10/encoder/encoder.h"
|
||||
|
||||
@ -35,4 +35,4 @@ void vp10_pick_inter_mode_sub8x8(VP9_COMP *cpi, MACROBLOCK *x,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_PICKMODE_H_
|
||||
#endif // VP10_ENCODER_PICKMODE_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_QUANTIZE_H_
|
||||
#define VP9_ENCODER_VP9_QUANTIZE_H_
|
||||
#ifndef VP10_ENCODER_QUANTIZE_H_
|
||||
#define VP10_ENCODER_QUANTIZE_H_
|
||||
|
||||
#include "./vpx_config.h"
|
||||
#include "vp10/encoder/block.h"
|
||||
@ -59,4 +59,4 @@ int vp10_qindex_to_quantizer(int qindex);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_QUANTIZE_H_
|
||||
#endif // VP10_ENCODER_QUANTIZE_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_RATECTRL_H_
|
||||
#define VP9_ENCODER_VP9_RATECTRL_H_
|
||||
#ifndef VP10_ENCODER_RATECTRL_H_
|
||||
#define VP10_ENCODER_RATECTRL_H_
|
||||
|
||||
#include "vpx/vpx_codec.h"
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -260,4 +260,4 @@ int vp10_resize_one_pass_cbr(struct VP9_COMP *cpi);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_RATECTRL_H_
|
||||
#endif // VP10_ENCODER_RATECTRL_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_RD_H_
|
||||
#define VP9_ENCODER_VP9_RD_H_
|
||||
#ifndef VP10_ENCODER_RD_H_
|
||||
#define VP10_ENCODER_RD_H_
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
@ -185,4 +185,4 @@ int vp10_get_intra_cost_penalty(int qindex, int qdelta,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_RD_H_
|
||||
#endif // VP10_ENCODER_RD_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_RDOPT_H_
|
||||
#define VP9_ENCODER_VP9_RDOPT_H_
|
||||
#ifndef VP10_ENCODER_RDOPT_H_
|
||||
#define VP10_ENCODER_RDOPT_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
|
||||
@ -71,4 +71,4 @@ void vp10_rd_pick_inter_mode_sub8x8(struct VP9_COMP *cpi,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_RDOPT_H_
|
||||
#endif // VP10_ENCODER_RDOPT_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_RESIZE_H_
|
||||
#define VP9_ENCODER_VP9_RESIZE_H_
|
||||
#ifndef VP10_ENCODER_RESIZE_H_
|
||||
#define VP10_ENCODER_RESIZE_H_
|
||||
|
||||
#include <stdio.h>
|
||||
#include "vpx/vpx_integer.h"
|
||||
@ -121,4 +121,4 @@ void vp10_highbd_resize_frame444(const uint8_t *const y,
|
||||
int owidth,
|
||||
int bd);
|
||||
#endif // CONFIG_VP9_HIGHBITDEPTH
|
||||
#endif // VP9_ENCODER_VP9_RESIZE_H_
|
||||
#endif // VP10_ENCODER_RESIZE_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_SEGMENTATION_H_
|
||||
#define VP9_ENCODER_VP9_SEGMENTATION_H_
|
||||
#ifndef VP10_ENCODER_SEGMENTATION_H_
|
||||
#define VP10_ENCODER_SEGMENTATION_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
#include "vp10/encoder/encoder.h"
|
||||
@ -50,4 +50,4 @@ void vp10_reset_segment_features(struct segmentation *seg);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_SEGMENTATION_H_
|
||||
#endif // VP10_ENCODER_SEGMENTATION_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_SKIN_MAP_H_
|
||||
#define VP9_ENCODER_VP9_SKIN_MAP_H_
|
||||
#ifndef VP10_ENCODER_SKIN_MAP_H_
|
||||
#define VP10_ENCODER_SKIN_MAP_H_
|
||||
|
||||
#include "vp10/common/blockd.h"
|
||||
|
||||
@ -32,4 +32,4 @@ void vp10_compute_skin_map(VP9_COMP *const cpi, FILE *yuv_skinmap_file);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_SKIN_MAP_H_
|
||||
#endif // VP10_ENCODER_SKIN_MAP_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_SPEED_FEATURES_H_
|
||||
#define VP9_ENCODER_VP9_SPEED_FEATURES_H_
|
||||
#ifndef VP10_ENCODER_SPEED_FEATURES_H_
|
||||
#define VP10_ENCODER_SPEED_FEATURES_H_
|
||||
|
||||
#include "vp10/common/enums.h"
|
||||
|
||||
@ -429,4 +429,4 @@ void vp10_set_speed_features_framesize_dependent(struct VP9_COMP *cpi);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_SPEED_FEATURES_H_
|
||||
#endif // VP10_ENCODER_SPEED_FEATURES_H_
|
||||
|
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_SUBEXP_H_
|
||||
#define VP9_ENCODER_VP9_SUBEXP_H_
|
||||
#ifndef VP10_ENCODER_SUBEXP_H_
|
||||
#define VP10_ENCODER_SUBEXP_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -41,4 +41,4 @@ int vp10_prob_diff_update_savings_search_model(const unsigned int *ct,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_SUBEXP_H_
|
||||
#endif // VP10_ENCODER_SUBEXP_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_SVC_LAYERCONTEXT_H_
|
||||
#define VP9_ENCODER_VP9_SVC_LAYERCONTEXT_H_
|
||||
#ifndef VP10_ENCODER_SVC_LAYERCONTEXT_H_
|
||||
#define VP10_ENCODER_SVC_LAYERCONTEXT_H_
|
||||
|
||||
#include "vpx/vpx_encoder.h"
|
||||
|
||||
@ -119,4 +119,4 @@ int vp10_one_pass_cbr_svc_start_layer(struct VP9_COMP *const cpi);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_SVC_LAYERCONTEXT_
|
||||
#endif // VP10_ENCODER_SVC_LAYERCONTEXT_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_TEMPORAL_FILTER_H_
|
||||
#define VP9_ENCODER_VP9_TEMPORAL_FILTER_H_
|
||||
#ifndef VP10_ENCODER_TEMPORAL_FILTER_H_
|
||||
#define VP10_ENCODER_TEMPORAL_FILTER_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -22,4 +22,4 @@ void vp10_temporal_filter(VP9_COMP *cpi, int distance);
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_TEMPORAL_FILTER_H_
|
||||
#endif // VP10_ENCODER_TEMPORAL_FILTER_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_TOKENIZE_H_
|
||||
#define VP9_ENCODER_VP9_TOKENIZE_H_
|
||||
#ifndef VP10_ENCODER_TOKENIZE_H_
|
||||
#define VP10_ENCODER_TOKENIZE_H_
|
||||
|
||||
#include "vp10/common/entropy.h"
|
||||
|
||||
@ -109,4 +109,4 @@ static INLINE int16_t vp10_get_token(int v) {
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_TOKENIZE_H_
|
||||
#endif // VP10_ENCODER_TOKENIZE_H_
|
||||
|
@ -8,8 +8,8 @@
|
||||
* be found in the AUTHORS file in the root of the source tree.
|
||||
*/
|
||||
|
||||
#ifndef VP9_ENCODER_VP9_TREEWRITER_H_
|
||||
#define VP9_ENCODER_VP9_TREEWRITER_H_
|
||||
#ifndef VP10_ENCODER_TREEWRITER_H_
|
||||
#define VP10_ENCODER_TREEWRITER_H_
|
||||
|
||||
#include "vpx_dsp/bitwriter.h"
|
||||
|
||||
@ -48,4 +48,4 @@ static INLINE void vp10_write_token(vpx_writer *w, const vpx_tree_index *tree,
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // VP9_ENCODER_VP9_TREEWRITER_H_
|
||||
#endif // VP10_ENCODER_TREEWRITER_H_
|
||||
|
@ -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.
|
||||
*/
|
||||
#ifndef VP9_VP9_IFACE_COMMON_H_
|
||||
#define VP9_VP9_IFACE_COMMON_H_
|
||||
#ifndef VP10_VP10_IFACE_COMMON_H_
|
||||
#define VP10_VP10_IFACE_COMMON_H_
|
||||
|
||||
#include "vpx_ports/mem.h"
|
||||
|
||||
@ -127,4 +127,4 @@ static vpx_codec_err_t image2yuvconfig(const vpx_image_t *img,
|
||||
return VPX_CODEC_OK;
|
||||
}
|
||||
|
||||
#endif // VP9_VP9_IFACE_COMMON_H_
|
||||
#endif // VP10_VP10_IFACE_COMMON_H_
|
||||
|
Loading…
x
Reference in New Issue
Block a user