]> granicus.if.org Git - libvpx/commitdiff
google style guide include guards
authorJim Bankoski <jimbankoski@google.com>
Fri, 30 Nov 2012 00:36:10 +0000 (16:36 -0800)
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>
Fri, 30 Nov 2012 15:30:59 +0000 (07:30 -0800)
Change-Id: I2c252f3ddcc99e96c1f5d3dab8bcb25a2a3637ea

80 files changed:
vp9/common/arm/vp9_bilinearfilter_arm.h
vp9/common/arm/vp9_idct_arm.h
vp9/common/arm/vp9_loopfilter_arm.h
vp9/common/arm/vp9_recon_arm.h
vp9/common/arm/vp9_subpixel_arm.h
vp9/common/vp9_alloccommon.h
vp9/common/vp9_blockd.h
vp9/common/vp9_common.h
vp9/common/vp9_common_types.h
vp9/common/vp9_entropy.h
vp9/common/vp9_entropymode.h
vp9/common/vp9_entropymv.h
vp9/common/vp9_extend.h
vp9/common/vp9_filter.h
vp9/common/vp9_findnearmv.h
vp9/common/vp9_header.h
vp9/common/vp9_invtrans.h
vp9/common/vp9_loopfilter.h
vp9/common/vp9_modecont.h
vp9/common/vp9_mv.h
vp9/common/vp9_mvref_common.h
vp9/common/vp9_onyx.h
vp9/common/vp9_onyxc_int.h
vp9/common/vp9_onyxd.h
vp9/common/vp9_postproc.h
vp9/common/vp9_ppflags.h
vp9/common/vp9_pred_common.h
vp9/common/vp9_reconinter.h
vp9/common/vp9_reconintra.h
vp9/common/vp9_reconintra4x4.h
vp9/common/vp9_sadmxn.h
vp9/common/vp9_seg_common.h
vp9/common/vp9_subpixel.h
vp9/common/vp9_swapyv12buffer.h
vp9/common/vp9_systemdependent.h
vp9/common/vp9_textblit.h
vp9/common/vp9_treecoder.h
vp9/common/vp9_type_aliases.h
vp9/common/x86/vp9_idct_x86.h
vp9/common/x86/vp9_loopfilter_x86.h
vp9/common/x86/vp9_postproc_x86.h
vp9/common/x86/vp9_subpixel_x86.h
vp9/decoder/vp9_dboolhuff.h
vp9/decoder/vp9_decodframe.h
vp9/decoder/vp9_dequantize.h
vp9/decoder/vp9_detokenize.h
vp9/decoder/vp9_onyxd_int.h
vp9/decoder/vp9_reconintra_mt.h
vp9/decoder/vp9_treereader.h
vp9/decoder/x86/vp9_idct_mmx.h
vp9/encoder/arm/vp9_dct_arm.h
vp9/encoder/arm/vp9_encodemb_arm.h
vp9/encoder/arm/vp9_quantize_arm.h
vp9/encoder/arm/vp9_variance_arm.h
vp9/encoder/vp9_bitstream.h
vp9/encoder/vp9_block.h
vp9/encoder/vp9_boolhuff.h
vp9/encoder/vp9_encodeframe.h
vp9/encoder/vp9_encodeintra.h
vp9/encoder/vp9_encodemb.h
vp9/encoder/vp9_encodemv.h
vp9/encoder/vp9_firstpass.h
vp9/encoder/vp9_lookahead.h
vp9/encoder/vp9_mbgraph.h
vp9/encoder/vp9_mcomp.h
vp9/encoder/vp9_modecosts.h
vp9/encoder/vp9_onyx_int.h
vp9/encoder/vp9_picklpf.h
vp9/encoder/vp9_psnr.h
vp9/encoder/vp9_quantize.h
vp9/encoder/vp9_ratectrl.h
vp9/encoder/vp9_rdopt.h
vp9/encoder/vp9_segmentation.h
vp9/encoder/vp9_temporal_filter.h
vp9/encoder/vp9_tokenize.h
vp9/encoder/vp9_treewriter.h
vp9/encoder/vp9_variance.h
vp9/encoder/x86/vp9_dct_mmx.h
vp9/encoder/x86/vp9_mcomp_x86.h
vp9/encoder/x86/vp9_quantize_x86.h

index b6d9cfc2dde5e9110bc665511d9841bbf65ee6a0..422691e442734bfa0790bb16b85b578ccce80919 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef BILINEARFILTER_ARM_H
-#define BILINEARFILTER_ARM_H
+#ifndef VP9_COMMON_ARM_VP9_BILINEARFILTER_ARM_H_
+#define VP9_COMMON_ARM_VP9_BILINEARFILTER_ARM_H_
 
 extern void vp9_filter_block2d_bil_first_pass_armv6
 (
index 2fc4cf7fc32d9a8874416432691c9bad5fd1a986..8112ab913b02c1dfa68f67d30bcb7362bc2b115e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef IDCT_ARM_H
-#define IDCT_ARM_H
+#ifndef VP9_COMMON_ARM_VP9_IDCT_ARM_H_
+#define VP9_COMMON_ARM_VP9_IDCT_ARM_H_
 
 #if HAVE_ARMV6
 extern prototype_idct(vp9_short_idct4x4llm_1_v6);
index de6b7ffbc01f976bfbfd7be444dd37a4b875cee5..4f12ff31efdf29cc4da56494a351673708b4dd8f 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef LOOPFILTER_ARM_H
-#define LOOPFILTER_ARM_H
+#ifndef VP9_COMMON_ARM_VP9_LOOPFILTER_ARM_H_
+#define VP9_COMMON_ARM_VP9_LOOPFILTER_ARM_H_
 
 #include "vpx_config.h"
 
index 1e402951c2b95b7c537522522577510f9b0ecf1b..7883852723e6a0f059e280f218e3398b1d1d2fcd 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef RECON_ARM_H
-#define RECON_ARM_H
+#ifndef VP9_COMMON_ARM_VP9_RECON_ARM_H_
+#define VP9_COMMON_ARM_VP9_RECON_ARM_H_
 
 #if HAVE_ARMV6
 extern prototype_recon_block(vp9_recon_b_armv6);
index b4f9f54f365c23e9599a1bf4118313a5b1c3aac7..efc7c1a5de6e7bf889cdbc4ebe6d7da54aa4e9f9 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef SUBPIXEL_ARM_H
-#define SUBPIXEL_ARM_H
+#ifndef VP9_COMMON_ARM_VP9_SUBPIXEL_ARM_H_
+#define VP9_COMMON_ARM_VP9_SUBPIXEL_ARM_H_
 
 #if HAVE_ARMV6
 extern prototype_subpixel_predict(vp9_sixtap_predict16x16_armv6);
index bfecef52438b0c2a17aea178cac395d07091f8a0..3a37dc3bb56056d000aa17eb8ef6ce32a78fd9e7 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ALLOCCOMMON_H
-#define __INC_ALLOCCOMMON_H
+#ifndef VP9_COMMON_VP9_ALLOCCOMMON_H_
+#define VP9_COMMON_VP9_ALLOCCOMMON_H_
 
 #include "vp9/common/vp9_onyxc_int.h"
 
index 839d5b587e160c762cd0f15e872aa95379140542..17e847462ad983172fe6a47a825247febe84827d 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_BLOCKD_H
-#define __INC_BLOCKD_H
+#ifndef VP9_COMMON_VP9_BLOCKD_H_
+#define VP9_COMMON_VP9_BLOCKD_H_
 
 void vpx_log(const char *format, ...);
 
index 64804e16e763f61932264c92cbd6dd6abb12295b..893a3f8b3e183c6c6808958af6ab55829521c7ac 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef common_h
-#define common_h 1
+#ifndef VP9_COMMON_VP9_COMMON_H_
+#define VP9_COMMON_VP9_COMMON_H_
 
 #include <assert.h>
 #include "vpx_config.h"
index 4e62486972f0b8612687bbd3e2cb618e79446b97..8982898caa7c36f58c82372391e0325156316cf0 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_COMMON_TYPES
-#define __INC_COMMON_TYPES
+#ifndef VP9_COMMON_VP9_COMMON_TYPES_H_
+#define VP9_COMMON_VP9_COMMON_TYPES_H_
 
 #define TRUE    1
 #define FALSE   0
index ccf68a42287d3f8e8cd6c294e2f09023baf85a41..3c74de7be9b73dabd5e9e8ddce10b6c45f1e9e1f 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ENTROPY_H
-#define __INC_ENTROPY_H
+#ifndef VP9_COMMON_VP9_ENTROPY_H_
+#define VP9_COMMON_VP9_ENTROPY_H_
 
 #include "vp9/common/vp9_treecoder.h"
 #include "vp9/common/vp9_blockd.h"
index 0b14cf67e888d4d333ba3e55d22f3ca6d6213a15..78ec325b96a643313aa2f6d0692e082e1c327e82 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ENTROPYMODE_H
-#define __INC_ENTROPYMODE_H
+#ifndef VP9_COMMON_VP9_ENTROPYMODE_H_
+#define VP9_COMMON_VP9_ENTROPYMODE_H_
 
 #include "vp9/common/vp9_blockd.h"
 #include "vp9/common/vp9_treecoder.h"
index b6b35df04f40af8580cbb2838a0e66db41a57549..66126daf304762c55ab1b091baab4ef977c7287c 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ENTROPYMV_H
-#define __INC_ENTROPYMV_H
+#ifndef VP9_COMMON_VP9_ENTROPYMV_H_
+#define VP9_COMMON_VP9_ENTROPYMV_H_
 
 #include "vp9/common/vp9_treecoder.h"
 #include "vpx_config.h"
index c3c590479b7ec17cb9a26df12c929349323e3e39..55036f86b402f1b30976a651ea29e336e1ff6ad8 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_EXTEND_H
-#define __INC_EXTEND_H
+#ifndef VP9_COMMON_VP9_EXTEND_H_
+#define VP9_COMMON_VP9_EXTEND_H_
 
 #include "vpx_scale/yv12config.h"
 
index c194887dcda1591620abac067d23c56c85556359..545d39a8a77845aac47842992ad146d178410b4a 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef FILTER_H
-#define FILTER_H
+#ifndef VP9_COMMON_VP9_FILTER_H_
+#define VP9_COMMON_VP9_FILTER_H_
 
 #include "vpx_config.h"
 #include "vpx_scale/yv12config.h"
index a12a7220135e06d6676155528275f409236e4764..d401c7373b1a50d212d406ede9f07bf138a9837c 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_FINDNEARMV_H
-#define __INC_FINDNEARMV_H
+#ifndef VP9_COMMON_VP9_FINDNEARMV_H_
+#define VP9_COMMON_VP9_FINDNEARMV_H_
 
 #include "vp9/common/vp9_mv.h"
 #include "vp9/common/vp9_blockd.h"
index a88b6e3e359e4ad1cdae76dfe588db9ca30a0eb8..00dd17e2d04c2ca90d69768277e541313936b7da 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_HEADER_H
-#define __INC_HEADER_H
+#ifndef VP9_COMMON_VP9_HEADER_H_
+#define VP9_COMMON_VP9_HEADER_H_
 
 /* 24 bits total */
 typedef struct {
index 9ac9bb1cd8a286e3cc6dfaa7b6215e49776b0629..b012834f37337e4d93111d2738aa1e7afbe16bf6 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_INVTRANS_H
-#define __INC_INVTRANS_H
+#ifndef VP9_COMMON_VP9_INVTRANS_H_
+#define VP9_COMMON_VP9_INVTRANS_H_
 
 #include "vpx_ports/config.h"
 #include "vp9/common/vp9_blockd.h"
index 34d1cd37f3594176c383888da44d4150590600e7..4e8fa78e2e4e8fe1671c555ff32cff4df42022cf 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef loopfilter_h
-#define loopfilter_h
+#ifndef VP9_COMMON_VP9_LOOPFILTER_H_
+#define VP9_COMMON_VP9_LOOPFILTER_H_
 
 #include "vpx_ports/mem.h"
 #include "vpx_config.h"
index b142bd0f3269d1b1c3c79920c04739fe3bf670df..122eb12d6e7e03fa9ecebb8f2532ab7cf8652f39 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_MODECONT_H
-#define __INC_MODECONT_H
+#ifndef VP9_COMMON_VP9_MODECONT_H_
+#define VP9_COMMON_VP9_MODECONT_H_
 
 extern const int vp9_default_mode_contexts[INTER_MODE_CONTEXTS][4];
 #endif
index bbe6d2c8bd4ca1b72c478d7439d835b87e4e176d..f084b110480dda020be2c3d573590569bdaa2e04 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_MV_H
-#define __INC_MV_H
+#ifndef VP9_COMMON_VP9_MV_H_
+#define VP9_COMMON_VP9_MV_H_
 #include "vpx/vpx_integer.h"
 
 typedef struct {
index eb8626ed2decc5f7168525c6c3054941a9fc4319..1938352c48822847b321aff39b7b1e0caeec6c3f 100644 (file)
@@ -12,8 +12,8 @@
 #include "vp9/common/vp9_blockd.h"
 
 
-#ifndef __INC_MVREF_COMMON_H
-#define __INC_MVREF_COMMON_H
+#ifndef VP9_COMMON_VP9_MVREF_COMMON_H_
+#define VP9_COMMON_VP9_MVREF_COMMON_H_
 
 void vp9_find_mv_refs(
   MACROBLOCKD *xd,
index 96c7123b4d77f6657cc922dd60d53cc6b46ed8cc..a6bd9511846e0a9cdc479ec98ceccfff9832242f 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ONYX_H
-#define __INC_ONYX_H
+#ifndef VP9_COMMON_VP9_ONYX_H_
+#define VP9_COMMON_VP9_ONYX_H_
 
 #ifdef __cplusplus
 extern "C"
index 202f953b37682db2b6950fac9009dc3619a5fc44..0b6de7f82a2360e742b2c902b64c8f725c7bd206 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ONYXC_INT_H
-#define __INC_ONYXC_INT_H
+#ifndef VP9_COMMON_VP9_ONYXC_INT_H_
+#define VP9_COMMON_VP9_ONYXC_INT_H_
 
 #include "vpx_config.h"
 #include "vpx/internal/vpx_codec_internal.h"
index af16ee71c340211f67ad311880c62f59e5bf82a0..063e5a8948a316a2282e5aba42cfbe5cf8585438 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ONYXD_H
-#define __INC_ONYXD_H
+#ifndef VP9_COMMON_VP9_ONYXD_H_
+#define VP9_COMMON_VP9_ONYXD_H_
 
 
 /* Create/destroy static data structures. */
index d7fc30db4b4402681fd70f3d999f589ace46693d..0628d84e9c3ba7207a4e9a5882b564e184f041c2 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef POSTPROC_H
-#define POSTPROC_H
+#ifndef VP9_COMMON_VP9_POSTPROC_H_
+#define VP9_COMMON_VP9_POSTPROC_H_
 
 #include "vpx_ports/mem.h"
 struct postproc_state {
index fd83711801eafdc9d41107a7be34086f557f8301..293d8d5cc3bfde884400734eda6e1af64c11f695 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_PPFLAGS_H
-#define __INC_PPFLAGS_H
+#ifndef VP9_COMMON_VP9_PPFLAGS_H_
+#define VP9_COMMON_VP9_PPFLAGS_H_
 enum {
   VP9D_NOFILTERING            = 0,
   VP9D_DEBLOCK                = 1 << 0,
index 28511c2f2b7899698aa743c18adbbb7db434507d..af6ad7b9d36b20a93229fdda418baf223098af31 100644 (file)
@@ -12,8 +12,8 @@
 #include "vp9/common/vp9_onyxc_int.h"
 #include "vp9/common/vp9_blockd.h"
 
-#ifndef __INC_PRED_COMMON_H__
-#define __INC_PRED_COMMON_H__ 1
+#ifndef VP9_COMMON_VP9_PRED_COMMON_H_
+#define VP9_COMMON_VP9_PRED_COMMON_H_
 
 
 // Predicted items
index 70ffd3bd1ceed41766d96fb9786268d0b4d6dfee..f3292f148104ca1830a09c6256b03789317e71e3 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_RECONINTER_H
-#define __INC_RECONINTER_H
+#ifndef VP9_COMMON_VP9_RECONINTER_H_
+#define VP9_COMMON_VP9_RECONINTER_H_
 
 #include "vp9/common/vp9_onyxc_int.h"
 
index 3ef44c85d7d6c1ee6c98fd31733595aef2ec3841..c9a11f8cab9781d6c79f0dee830e8aff6ecf50ea 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_RECONINTRA_H
-#define __INC_RECONINTRA_H
+#ifndef VP9_COMMON_VP9_RECONINTRA_H_
+#define VP9_COMMON_VP9_RECONINTRA_H_
 
 #include "vp9/common/vp9_blockd.h"
 
index 79a048076754e3704f7735bc359e8d3f09f3f698..8e806bcb76a474c5cac4ea1fdddbb5e23458b067 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_RECONINTRA4x4_H
-#define __INC_RECONINTRA4x4_H
+#ifndef VP9_COMMON_VP9_RECONINTRA4X4_H_
+#define VP9_COMMON_VP9_RECONINTRA4X4_H_
 
 extern void vp9_intra_prediction_down_copy(MACROBLOCKD *xd);
 
index 47b8dfc5874ff32581085d4647310d39ef551565..bed257f268548db9ef966384d883195ca5b57ec8 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_SAD_H
-#define __INC_SAD_H
+#ifndef VP9_COMMON_VP9_SADMXN_H_
+#define VP9_COMMON_VP9_SADMXN_H_
 
 static __inline
 unsigned int sad_mx_n_c(
index 29eee4ce95408aeddeeee5c7f1c5e1d6df408962..a9f9b93becb02c457d2236dabbb144f145628f23 100644 (file)
@@ -12,8 +12,8 @@
 #include "vp9/common/vp9_onyxc_int.h"
 #include "vp9/common/vp9_blockd.h"
 
-#ifndef __INC_SEG_COMMON_H__
-#define __INC_SEG_COMMON_H__ 1
+#ifndef VP9_COMMON_VP9_SEG_COMMON_H_
+#define VP9_COMMON_VP9_SEG_COMMON_H_
 
 int vp9_segfeature_active(const MACROBLOCKD *xd,
                           int segment_id,
index 2b842919882726daac394834109f27d346fc3b20..5824e1aa9f2e19aef58bfc13d23073157b1dc539 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef SUBPIXEL_H
-#define SUBPIXEL_H
+#ifndef VP9_COMMON_VP9_SUBPIXEL_H_
+#define VP9_COMMON_VP9_SUBPIXEL_H_
 
 #define prototype_subpixel_predict(sym) \
   void sym(unsigned char *src, int src_pitch, int xofst, int yofst, \
index 44ed5e84d233c67bf5cceda0796318905ea15321..43001763ab6eed40defeb6f8e16a429824fc3863 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __SWAPYV12_BUFFER_H
-#define __SWAPYV12_BUFFER_H
+#ifndef VP9_COMMON_VP9_SWAPYV12BUFFER_H_
+#define VP9_COMMON_VP9_SWAPYV12BUFFER_H_
 
 #include "vpx_scale/yv12config.h"
 
index 5d778bcd02a6c5ba4b1ce0efd9c625899be18ce5..91a50607ac9218eb792a69a8c38a3038860ffbd0 100644 (file)
@@ -7,7 +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_SYSTEMDEPENDENT_H_
+#define VP9_COMMON_VP9_SYSTEMDEPENDENT_H_
 
 #include "vpx_ports/config.h"
 #if ARCH_X86 || ARCH_X86_64
@@ -19,3 +20,4 @@ void vpx_reset_mmx_state(void);
 
 struct VP9Common;
 void vp9_machine_specific_config(struct VP9Common *);
+#endif
index 39edbb09de7504bfc618c13964a8f701c5bf6189..81bfa253e9eea05763112bee2bf8af57fe150b47 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_TEXTBLIT_H
-#define __INC_TEXTBLIT_H
+#ifndef VP9_COMMON_VP9_TEXTBLIT_H_
+#define VP9_COMMON_VP9_TEXTBLIT_H_
 
 extern void vp9_blit_text(const char *msg, unsigned char *address,
                           const int pitch);
index 92b92ef5562d0661e21eb1688e732d4b08f6e3cd..bbf7e74d7709494517381e63d0cbd259a682d29a 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_TREECODER_H
-#define __INC_TREECODER_H
+#ifndef VP9_COMMON_VP9_TREECODER_H_
+#define VP9_COMMON_VP9_TREECODER_H_
 
 typedef unsigned char vp9_prob;
 
index 91939ee1978ac4d43776a4007675046d0d257eee..110e2d07d3cdd7a945f84d02da925a67568364bc 100644 (file)
@@ -16,8 +16,8 @@
 *   Description  :     Standard type aliases
 *
 ****************************************************************************/
-#ifndef __INC_TYPE_ALIASES_H
-#define __INC_TYPE_ALIASES_H
+#ifndef VP9_COMMON_VP9_TYPE_ALIASES_H_
+#define VP9_COMMON_VP9_TYPE_ALIASES_H_
 
 /****************************************************************************
 * Macros
index 297ab0d33e7c8a6cb5d91a8ea8e0901e70a52e34..8320cf87de88593ba85e0cf623b3269de39e790e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef IDCT_X86_H
-#define IDCT_X86_H
+#ifndef VP9_COMMON_X86_VP9_IDCT_X86_H_
+#define VP9_COMMON_X86_VP9_IDCT_X86_H_
 
 /* Note:
  *
index 25cf383c98a93380204a4cba3bff2402a9de50ca..46a6202d20c29b0b9c36a0134540da61ee4e2e48 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef LOOPFILTER_X86_H
-#define LOOPFILTER_X86_H
+#ifndef VP9_COMMON_X86_VP9_LOOPFILTER_X86_H_
+#define VP9_COMMON_X86_VP9_LOOPFILTER_X86_H_
 
 /* Note:
  *
index a4c4f8c742280c681025532b6e63a8e8ad3c7309..b0e8b181f0eba0c281fd8cf1d898203f0c371d3b 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef POSTPROC_X86_H
-#define POSTPROC_X86_H
+#ifndef VP9_COMMON_X86_VP9_POSTPROC_X86_H_
+#define VP9_COMMON_X86_VP9_POSTPROC_X86_H_
 
 /* Note:
  *
index 4c224da3b18e3999b8f474a7d1944cb3373018b3..86b72f39a0cbea645b4bba0f523bf89b92af66cd 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef SUBPIXEL_X86_H
-#define SUBPIXEL_X86_H
+#ifndef VP9_COMMON_X86_VP9_SUBPIXEL_X86_H_
+#define VP9_COMMON_X86_VP9_SUBPIXEL_X86_H_
 
 /* Note:
  *
index 6529170abfece9418ca160b39229e62d7e213a81..a1c0c7956d953c13452a460fa8a855d736256380 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef DBOOLHUFF_H
-#define DBOOLHUFF_H
+#ifndef VP9_DECODER_VP9_DBOOLHUFF_H_
+#define VP9_DECODER_VP9_DBOOLHUFF_H_
 #include <stddef.h>
 #include <limits.h>
 #include "vpx_ports/config.h"
index cc480798a57860be73b8371b646ea66a36a9b580..2a6547ed9e7e5399bf2ab4f44d2c7d0e83c42051 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_DECODFRAME_H
-#define __INC_DECODFRAME_H
+#ifndef VP9_DECODER_VP9_DECODFRAME_H_
+#define VP9_DECODER_VP9_DECODFRAME_H_
 
 struct VP9Decompressor;
 
index 0b455200ce2657b1aa492c26ac7da79208843998..8a6bf2b261d2c5e649fc0546e0a2a8c3172b7ba9 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef DEQUANTIZE_H
-#define DEQUANTIZE_H
+#ifndef VP9_DECODER_VP9_DEQUANTIZE_H_
+#define VP9_DECODER_VP9_DEQUANTIZE_H_
 #include "vp9/common/vp9_blockd.h"
 
 #if CONFIG_LOSSLESS
index e1a3b44f3f6759a46c4e367c26152a0a3ceb7a6f..9b319d4a951c856940a10ddffcc79b763d32c8c2 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef DETOKENIZE_H
-#define DETOKENIZE_H
+#ifndef VP9_DECODER_VP9_DETOKENIZE_H_
+#define VP9_DECODER_VP9_DETOKENIZE_H_
 
 #include "vp9/decoder/vp9_onyxd_int.h"
 
index 603455af0b857a351d03094aa5cc495b3d5d2ca4..e4f3228c7a62e2f032b0a86fc9916f1f9fb81e7a 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ONYXD_INT_H
-#define __INC_ONYXD_INT_H
+#ifndef VP9_DECODER_VP9_ONYXD_INT_H_
+#define VP9_DECODER_VP9_ONYXD_INT_H_
 #include "vpx_ports/config.h"
 #include "vp9/common/vp9_onyxd.h"
 #include "vp9/decoder/vp9_treereader.h"
index b04537956c6f7f39bfde62a231b9d374ac594277..af9634936d15d8b4b547827c3e70aeed0d6f69c9 100644 (file)
@@ -9,7 +9,7 @@
  */
 
 
-#ifndef __INC_RECONINTRA_MT_H
-#define __INC_RECONINTRA_MT_H
+#ifndef VP9_DECODER_VP9_RECONINTRA_MT_H_
+#define VP9_DECODER_VP9_RECONINTRA_MT_H_
 
 #endif
index ac1293cc71cfae654067ceaaa1f23e77fe1d22e7..aa31dc542c1e488d3828c2e6268c2cbda26d3463 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef tree_reader_h
-#define tree_reader_h 1
+#ifndef VP9_DECODER_VP9_TREEREADER_H_
+#define VP9_DECODER_VP9_TREEREADER_H_
 
 #include "vp9/common/vp9_treecoder.h"
 
index a4f49d30eedd551703a652a980b72c21764d5ab0..c0e9bfd0629600ec153cee9f0c4b0332a27c4e11 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_IDCT_MMX_H_
-#define __INC_IDCT_MMX_H_
+#ifndef VP9_DECODER_X86_VP9_IDCT_MMX_H_
+#define VP9_DECODER_X86_VP9_IDCT_MMX_H_
 
 
 void vp9_dequant_dc_idct_add_mmx(short *input, const short *dq,
index 83c446e7eb20205574d681c2a6be689bf3e48a5d..8eed31e60076ea8c65c4c044c2fcc950ce76bb15 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef DCT_ARM_H
-#define DCT_ARM_H
+#ifndef VP9_ENCODER_ARM_VP9_DCT_ARM_H_
+#define VP9_ENCODER_ARM_VP9_DCT_ARM_H_
 
 #if HAVE_ARMV6
 extern prototype_fdct(vp9_short_walsh4x4_armv6);
index 80bff79df01a402332584a72cee9fddb0be01048..2f21d2cba4e1ae147d54496afb5b927aaec01ff7 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef ENCODEMB_ARM_H
-#define ENCODEMB_ARM_H
+#ifndef VP9_ENCODER_ARM_VP9_ENCODEMB_ARM_H_
+#define VP9_ENCODER_ARM_VP9_ENCODEMB_ARM_H_
 
 #if HAVE_ARMV6
 extern prototype_subb(vp9_subtract_b_armv6);
index 7d2088d2d875b60c2fa374398b38d12e92dbc230..41a83d7f9bbf2f593648f0b30f558a33e3e5a693 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef QUANTIZE_ARM_H
-#define QUANTIZE_ARM_H
+#ifndef VP9_ENCODER_ARM_VP9_QUANTIZE_ARM_H_
+#define VP9_ENCODER_ARM_VP9_QUANTIZE_ARM_H_
 
 #if HAVE_ARMV6
 
index c2c208a78639af307977d9ecb1f39fc79938cafa..144feea3d40c065683543adf8790ce75f50cbfa4 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef VARIANCE_ARM_H
-#define VARIANCE_ARM_H
+#ifndef VP9_ENCODER_ARM_VP9_VARIANCE_ARM_H_
+#define VP9_ENCODER_ARM_VP9_VARIANCE_ARM_H_
 
 #if HAVE_ARMV6
 
index a0ac8b5db9bd139c5ddba242356f94bd4d3716c0..5a63d6e1b799be30de1e48f5a9994cbce4515398 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_BITSTREAM_H
-#define __INC_BITSTREAM_H
+#ifndef VP9_ENCODER_VP9_BITSTREAM_H_
+#define VP9_ENCODER_VP9_BITSTREAM_H_
 
 void vp9_update_skip_probs(VP9_COMP *cpi);
 
index 986807e3c88ed741218be4ef4985d500a85445a3..d5bf89c7d615db45ffd758df266bd18042ca921e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_BLOCK_H
-#define __INC_BLOCK_H
+#ifndef VP9_ENCODER_VP9_BLOCK_H_
+#define VP9_ENCODER_VP9_BLOCK_H_
 
 #include "vp9/common/vp9_onyx.h"
 #include "vp9/common/vp9_entropymv.h"
index 1958a41e1ee58f477b7894642395c6b5ba5299ae..0d42ecfc47697fe4ba7c04296cb2e9c8aa2ace40 100644 (file)
@@ -16,8 +16,8 @@
 *   Description  :     Bool Coder header file.
 *
 ****************************************************************************/
-#ifndef __INC_BOOLHUFF_H
-#define __INC_BOOLHUFF_H
+#ifndef VP9_ENCODER_VP9_BOOLHUFF_H_
+#define VP9_ENCODER_VP9_BOOLHUFF_H_
 
 #include "vpx_ports/mem.h"
 
index 5693d681c91437890c8c3f9e7bc20600b71324cf..8c1716fdf4143e2b07b91e527653ae282f03d39e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ENCODEFRAME_H
-#define __INC_ENCODEFRAME_H
+#ifndef VP9_ENCODER_VP9_ENCODEFRAME_H_
+#define VP9_ENCODER_VP9_ENCODEFRAME_H_
 
 struct macroblock;
 
index 363254eb00a63dd74a90bfaca14ab9722cd9a026..91c410d08e5c250098c18b4748b44e4c6a01adc6 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __ENCODEINTRA_H_
-#define __ENCODEINTRA_H_
+#ifndef VP9_ENCODER_VP9_ENCODEINTRA_H_
+#define VP9_ENCODER_VP9_ENCODEINTRA_H_
 
 #include "vp9/encoder/vp9_onyx_int.h"
 
index b56dcece9e604f586fdcb2a592cfef9ac0640bad..4f49647a2c76127c52f14ddaaca513eef423ac4a 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ENCODEMB_H
-#define __INC_ENCODEMB_H
+#ifndef VP9_ENCODER_VP9_ENCODEMB_H_
+#define VP9_ENCODER_VP9_ENCODEMB_H_
 
 #include "vpx_ports/config.h"
 #include "vp9/encoder/vp9_block.h"
index ac09bcbdfd76f4232ee0e67bbeb0d5c8744449e6..84cd6fb096001155d8bb6045ba9851fb524a4c71 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ENCODEMV_H
-#define __INC_ENCODEMV_H
+#ifndef VP9_ENCODER_VP9_ENCODEMV_H_
+#define VP9_ENCODER_VP9_ENCODEMV_H_
 
 #include "vp9/encoder/vp9_onyx_int.h"
 
index f90a857f2cf1d4a1c622c7934adfb6e4050853a3..52a48f23b2e6e470a67b04d65f932efc2ac91b66 100644 (file)
@@ -10,7 +10,7 @@
 
 
 #if !defined __INC_FIRSTPASS_H
-#define      __INC_FIRSTPASS_H
+#define VP9_ENCODER_VP9_FIRSTPASS_H_
 
 extern void vp9_init_first_pass(VP9_COMP *cpi);
 extern void vp9_first_pass(VP9_COMP *cpi);
index 44c31d66da1fcf3eed979f6dc6ccf72c15e4e290..da2910c1c0cec94b6d6119d69a734a46255ce0b1 100644 (file)
@@ -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 LOOKAHEAD_H
-#define LOOKAHEAD_H
+#ifndef VP9_ENCODER_VP9_LOOKAHEAD_H_
+#define VP9_ENCODER_VP9_LOOKAHEAD_H_
 #include "vpx_scale/yv12config.h"
 #include "vpx/vpx_integer.h"
 
index 516fe23d20935830a57a3b61be4f8a195ddd5fe4..01ab18f30b100d17f42dbaf0c461e103d2e2d517 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_MBGRAPH_H__
-#define __INC_MBGRAPH_H__ 1
+#ifndef VP9_ENCODER_VP9_MBGRAPH_H_
+#define VP9_ENCODER_VP9_MBGRAPH_H_
 
 extern void vp9_update_mbgraph_stats(VP9_COMP *cpi);
 
index 81fe70c85483d9e4028efb5109523c0f9252bfdc..c052e16b0f51e22aa3dcfd9b69c786c061513d4e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_MCOMP_H
-#define __INC_MCOMP_H
+#ifndef VP9_ENCODER_VP9_MCOMP_H_
+#define VP9_ENCODER_VP9_MCOMP_H_
 
 #include "vp9/encoder/vp9_block.h"
 #include "vp9/encoder/vp9_variance.h"
index c37604edc7ad29fce00bba1ef8cd262bc0caf751..1f2cc56ee3b9efe41256f46008521fe9a18b13a5 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_MODECOSTS_H
-#define __INC_MODECOSTS_H
+#ifndef VP9_ENCODER_VP9_MODECOSTS_H_
+#define VP9_ENCODER_VP9_MODECOSTS_H_
 
 void vp9_init_mode_costs(VP9_COMP *x);
 
index 425c386721bb545bbc45a9608f2f553abce3dc0f..44d2d68fc788507d7757186199376b8616d55b60 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_ONYX_INT_H
-#define __INC_ONYX_INT_H
+#ifndef VP9_ENCODER_VP9_ONYX_INT_H_
+#define VP9_ENCODER_VP9_ONYX_INT_H_
 
 #include <stdio.h>
 #include "vpx_ports/config.h"
index 9c3f442ae9e29a608d6d9d605bb51287ab0759d4..b5c6bdd9182ceef003d52d750957dc908ff65dfa 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_PICKLPF_H
-#define __INC_PICKLPF_H
+#ifndef VP9_ENCODER_VP9_PICKLPF_H_
+#define VP9_ENCODER_VP9_PICKLPF_H_
 
 struct yv12_buffer_config;
 struct VP9_COMP;
index c25bea75014acaab22847a8218af6625232c9919..7dd5048ef2521169b3888550e9d279cf0dd71d6e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_PSNR_H
-#define __INC_PSNR_H
+#ifndef VP9_ENCODER_VP9_PSNR_H_
+#define VP9_ENCODER_VP9_PSNR_H_
 
 extern double vp9_mse2psnr(double Samples, double Peak, double Mse);
 
index 5a0f7e0586f73af0e5ae4c3e48c1c094be184b00..d801ca74bf364fbef48a853024b99df4314e2cbc 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_QUANTIZE_H
-#define __INC_QUANTIZE_H
+#ifndef VP9_ENCODER_VP9_QUANTIZE_H_
+#define VP9_ENCODER_VP9_QUANTIZE_H_
 
 #include "vp9/encoder/vp9_block.h"
 
index 9d69607272197b75f2334c7428d3bdf064f8ae7e..a2572116c1af5354aa6c296e8a88de0d34121eaa 100644 (file)
@@ -9,7 +9,8 @@
  */
 
 
-#if !defined __INC_RATECTRL_H
+#ifndef VP9_ENCODER_VP9_RATECTRL_H_
+#define VP9_ENCODER_VP9_RATECTRL_H_
 
 #include "vp9/encoder/vp9_onyx_int.h"
 
index 0300303a84ab201b8716a2b1caf04be0d1a4a477..4e41714f8c61bda320b060a28994c332160aa044 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_RDOPT_H
-#define __INC_RDOPT_H
+#ifndef VP9_ENCODER_VP9_RDOPT_H_
+#define VP9_ENCODER_VP9_RDOPT_H_
 
 #define RDCOST(RM,DM,R,D) ( ((128+((int64_t)R)*(RM)) >> 8) + ((int64_t)DM)*(D) )
 #define RDCOST_8x8(RM,DM,R,D) ( ((128+((int64_t)R)*(RM)) >> 8) + ((int64_t)DM)*(D) )
index 589c04bbd2253c82ceb2fffc2d488b047c936663..493a7670041ceecc187a797e7cb335621499d3ab 100644 (file)
@@ -13,8 +13,8 @@
 #include "vp9/common/vp9_blockd.h"
 #include "vp9/encoder/vp9_onyx_int.h"
 
-#ifndef __INC_SEGMENTATION_H__
-#define __INC_SEGMENTATION_H__ 1
+#ifndef VP9_ENCODER_VP9_SEGMENTATION_H_
+#define VP9_ENCODER_VP9_SEGMENTATION_H_
 
 extern void vp9_update_gf_useage_maps(VP9_COMP *cpi, VP9_COMMON *cm,
                                       MACROBLOCK *x);
index 8aaa28e81c8d64fcda2f20e5646dd0730ef18233..abcb21926f7a73416f2e068ac1c77d4559d06b2a 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_VP9_TEMPORAL_FILTER_H
-#define __INC_VP9_TEMPORAL_FILTER_H
+#ifndef VP9_ENCODER_VP9_TEMPORAL_FILTER_H_
+#define VP9_ENCODER_VP9_TEMPORAL_FILTER_H_
 
 extern void vp9_temporal_filter_prepare(VP9_COMP *cpi, int distance);
 
index 9ac26eb1c71b9b63e36ca417e9a1f7387d51d271..868909be39fe8ff32a1f319df830c446c7b7d496 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef tokenize_h
-#define tokenize_h
+#ifndef VP9_ENCODER_VP9_TOKENIZE_H_
+#define VP9_ENCODER_VP9_TOKENIZE_H_
 
 #include "vp9/common/vp9_entropy.h"
 #include "vp9/encoder/vp9_block.h"
index 2175c744b68ebec57910dbac6c2b6d15b12adf58..5da4a17a9da6823adff7ef315e4abf9954bfcd20 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef __INC_TREEWRITER_H
-#define __INC_TREEWRITER_H
+#ifndef VP9_ENCODER_VP9_TREEWRITER_H_
+#define VP9_ENCODER_VP9_TREEWRITER_H_
 
 /* Trees map alphabets into huffman-like codes suitable for an arithmetic
    bit coder.  Timothy S Murphy  11 October 2004 */
index b504fbb1776fc02a93d8445559c6dc8fb143d635..87036c1b072860d4ca088edcc82da19930d1fd2e 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef VARIANCE_H
-#define VARIANCE_H
+#ifndef VP9_ENCODER_VP9_VARIANCE_H_
+#define VP9_ENCODER_VP9_VARIANCE_H_
 
 typedef unsigned int(*vp9_sad_fn_t)(const unsigned char *src_ptr,
                                     int source_stride,
index 5f8e18fdfb26de171d75460547d892dea2687da3..3bac7c87b07e780554cda95c84ad0b5072c2c2c9 100644 (file)
@@ -8,8 +8,8 @@
  *  be found in the AUTHORS file in the root of the source tree.
  */
 
-#ifndef __INC_VP9_DCT_MMX_H_
-#define __INC_VP9_DCT_MMX_H_
+#ifndef VP9_ENCODER_X86_VP9_DCT_MMX_H_
+#define VP9_ENCODER_X86_VP9_DCT_MMX_H_
 
 extern void vp9_short_fdct4x4_mmx(short *input, short *output, int pitch);
 
index cde954550ff16e2ed8df43f27b9bf39cf8eb6156..ca80b8bff6b7a0df0306526c6161d9c022e1f1af 100644 (file)
@@ -9,8 +9,8 @@
  */
 
 
-#ifndef MCOMP_X86_H
-#define MCOMP_X86_H
+#ifndef VP9_ENCODER_X86_VP9_MCOMP_X86_H_
+#define VP9_ENCODER_X86_VP9_MCOMP_X86_H_
 
 #if HAVE_SSE3
 #if !CONFIG_RUNTIME_CPU_DETECT
index 6946e7e29ff88a5b386137356a8aeda7f150224d..d1db17394a6c43909029a2b60d88988488aa69b1 100644 (file)
@@ -7,8 +7,8 @@
  *  file in the root of the source tree.
  */
 
-#ifndef QUANTIZE_X86_H
-#define QUANTIZE_X86_H
+#ifndef VP9_ENCODER_X86_VP9_QUANTIZE_X86_H_
+#define VP9_ENCODER_X86_VP9_QUANTIZE_X86_H_
 
 
 /* Note: