summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-31 16:15:50 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-31 16:15:50 +0000
commitfba0b66ff9164bb0e386e47e6051d4ab29997fb5 (patch)
treee28a0e81b672caa7b78825d89c06f7b7940b23e7 /libmpcodecs
parentb8ab5e3f3626dc7f46f0392ccd537f538ac81fd1 (diff)
downloadmpv-fba0b66ff9164bb0e386e47e6051d4ab29997fb5.tar.bz2
mpv-fba0b66ff9164bb0e386e47e6051d4ab29997fb5.tar.xz
Add explanatory comments to the #endif part of multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25563 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ae.h2
-rw-r--r--libmpcodecs/ae_faac.h2
-rw-r--r--libmpcodecs/ae_lame.h2
-rw-r--r--libmpcodecs/ae_lavc.h2
-rw-r--r--libmpcodecs/ae_pcm.h2
-rw-r--r--libmpcodecs/ae_toolame.h2
-rw-r--r--libmpcodecs/ae_twolame.h2
-rw-r--r--libmpcodecs/cmmx.h2
-rw-r--r--libmpcodecs/img_format.h2
-rw-r--r--libmpcodecs/mp_image.h2
-rw-r--r--libmpcodecs/mpc_info.h2
-rw-r--r--libmpcodecs/vqf.h2
12 files changed, 12 insertions, 12 deletions
diff --git a/libmpcodecs/ae.h b/libmpcodecs/ae.h
index 99899e2e23..5e4dbdfaa8 100644
--- a/libmpcodecs/ae.h
+++ b/libmpcodecs/ae.h
@@ -43,4 +43,4 @@ typedef struct audio_encoder_s {
audio_encoder_t *new_audio_encoder(muxer_stream_t *stream, audio_encoding_params_t *params);
-#endif
+#endif /* MPAE_H */
diff --git a/libmpcodecs/ae_faac.h b/libmpcodecs/ae_faac.h
index 95fe502e15..bc0cdff6b6 100644
--- a/libmpcodecs/ae_faac.h
+++ b/libmpcodecs/ae_faac.h
@@ -5,4 +5,4 @@
int mpae_init_faac(audio_encoder_t *encoder);
-#endif
+#endif /* MPAE_FAAC_H */
diff --git a/libmpcodecs/ae_lame.h b/libmpcodecs/ae_lame.h
index dc4af5d2c2..221e5ffe64 100644
--- a/libmpcodecs/ae_lame.h
+++ b/libmpcodecs/ae_lame.h
@@ -5,4 +5,4 @@
int mpae_init_lame(audio_encoder_t *encoder);
-#endif
+#endif /* AE_LAME_H */
diff --git a/libmpcodecs/ae_lavc.h b/libmpcodecs/ae_lavc.h
index e7b957fd88..b2000b7583 100644
--- a/libmpcodecs/ae_lavc.h
+++ b/libmpcodecs/ae_lavc.h
@@ -5,4 +5,4 @@
int mpae_init_lavc(audio_encoder_t *encoder);
-#endif
+#endif /* AE_LAVC_H */
diff --git a/libmpcodecs/ae_pcm.h b/libmpcodecs/ae_pcm.h
index ea6bcde1e3..5eae0631b1 100644
--- a/libmpcodecs/ae_pcm.h
+++ b/libmpcodecs/ae_pcm.h
@@ -5,4 +5,4 @@
int mpae_init_pcm(audio_encoder_t *encoder);
-#endif
+#endif /* AE_PCM_H */
diff --git a/libmpcodecs/ae_toolame.h b/libmpcodecs/ae_toolame.h
index 30000a05ba..8deabdffe0 100644
--- a/libmpcodecs/ae_toolame.h
+++ b/libmpcodecs/ae_toolame.h
@@ -13,4 +13,4 @@ typedef struct {
int mpae_init_toolame(audio_encoder_t *encoder);
-#endif
+#endif /* MPAE_TOOLAME_H */
diff --git a/libmpcodecs/ae_twolame.h b/libmpcodecs/ae_twolame.h
index 65d3590f9b..08811f7680 100644
--- a/libmpcodecs/ae_twolame.h
+++ b/libmpcodecs/ae_twolame.h
@@ -11,4 +11,4 @@ typedef struct {
int mpae_init_twolame(audio_encoder_t *encoder);
-#endif
+#endif /* MPAE_TWOLAME_H */
diff --git a/libmpcodecs/cmmx.h b/libmpcodecs/cmmx.h
index 8ee1651309..27b3070282 100644
--- a/libmpcodecs/cmmx.h
+++ b/libmpcodecs/cmmx.h
@@ -183,4 +183,4 @@ pcmpeqb(cmmx_t a, cmmx_t b)
return pcmpzb(a ^ b);
}
-#endif
+#endif /* CMMX_H */
diff --git a/libmpcodecs/img_format.h b/libmpcodecs/img_format.h
index b95a4658f2..5f6040a267 100644
--- a/libmpcodecs/img_format.h
+++ b/libmpcodecs/img_format.h
@@ -117,4 +117,4 @@ typedef struct {
const char *vo_format_name(int format);
-#endif
+#endif /* IMG_FORMAT_H */
diff --git a/libmpcodecs/mp_image.h b/libmpcodecs/mp_image.h
index 3d8433f56d..624a9d66c3 100644
--- a/libmpcodecs/mp_image.h
+++ b/libmpcodecs/mp_image.h
@@ -228,4 +228,4 @@ static inline void free_mp_image(mp_image_t* mpi){
mp_image_t* alloc_mpi(int w, int h, unsigned long int fmt);
void copy_mpi(mp_image_t *dmpi, mp_image_t *mpi);
-#endif
+#endif /* MP_IMAGE_H */
diff --git a/libmpcodecs/mpc_info.h b/libmpcodecs/mpc_info.h
index 97f90b899f..3cb9a2cbd2 100644
--- a/libmpcodecs/mpc_info.h
+++ b/libmpcodecs/mpc_info.h
@@ -22,4 +22,4 @@ typedef struct mp_codec_info_s
#define CONTROL_ERROR -2
#define CONTROL_NA -3
-#endif
+#endif /* MP_CODEC_INFO_T */
diff --git a/libmpcodecs/vqf.h b/libmpcodecs/vqf.h
index 84bcdc2bc2..54d6ca0850 100644
--- a/libmpcodecs/vqf.h
+++ b/libmpcodecs/vqf.h
@@ -223,4 +223,4 @@ DllPort int TvqGetFbTotalBits(); // query total number of used bits
#endif
-#endif
+#endif /* tvqdec_h */