diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 18:25:13 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-01-31 15:44:11 -0800 |
commit | 180f9a09588d1c68983692bb5245213956fdde11 (patch) | |
tree | acde2f7c3e24f7fab834cfafbeeebfc6b8785b8a /libswresample | |
parent | def56677e58de9aaa516a738b6469747662ac372 (diff) | |
download | ffmpeg-180f9a09588d1c68983692bb5245213956fdde11.tar.gz |
all: Make header guard names consistent
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/audioconvert.h | 6 | ||||
-rw-r--r-- | libswresample/swresample_internal.h | 4 | ||||
-rw-r--r-- | libswresample/version.h | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/libswresample/audioconvert.h b/libswresample/audioconvert.h index 2e983df286..1ca30c2a65 100644 --- a/libswresample/audioconvert.h +++ b/libswresample/audioconvert.h @@ -20,8 +20,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SWR_AUDIOCONVERT_H -#define SWR_AUDIOCONVERT_H +#ifndef SWRESAMPLE_AUDIOCONVERT_H +#define SWRESAMPLE_AUDIOCONVERT_H /** * @file @@ -75,4 +75,4 @@ void swri_audio_convert_free(AudioConvert **ctx); */ int swri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, int len); -#endif /* AUDIOCONVERT_H */ +#endif /* SWRESAMPLE_AUDIOCONVERT_H */ diff --git a/libswresample/swresample_internal.h b/libswresample/swresample_internal.h index 5c46ddaf38..5d61de47af 100644 --- a/libswresample/swresample_internal.h +++ b/libswresample/swresample_internal.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SWR_INTERNAL_H -#define SWR_INTERNAL_H +#ifndef SWRESAMPLE_SWRESAMPLE_INTERNAL_H +#define SWRESAMPLE_SWRESAMPLE_INTERNAL_H #include "swresample.h" #include "libavutil/channel_layout.h" diff --git a/libswresample/version.h b/libswresample/version.h index 8f6ecb418a..830f00e430 100644 --- a/libswresample/version.h +++ b/libswresample/version.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef SWR_VERSION_H -#define SWR_VERSION_H +#ifndef SWRESAMPLE_VERSION_H +#define SWRESAMPLE_VERSION_H /** * @file @@ -42,4 +42,4 @@ #define LIBSWRESAMPLE_IDENT "SwR" AV_STRINGIFY(LIBSWRESAMPLE_VERSION) -#endif /* SWR_VERSION_H */ +#endif /* SWRESAMPLE_VERSION_H */ |