diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-04-29 18:43:32 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-04-29 18:46:59 +0200 |
commit | 46eba43e0ef28d9d08ed41774e6bd1ce94388c35 (patch) | |
tree | 86bb07b34e19794f09a5ff7333f46ebd5c8972db /libavfilter | |
parent | 3dafde0b961023692b4c295ffba2061a84af13af (diff) | |
download | ffmpeg-46eba43e0ef28d9d08ed41774e6bd1ce94388c35.tar.gz |
lavfi/buffersink: fix header inclusion guard name
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/buffersink.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/buffersink.h b/libavfilter/buffersink.h index cf6bd69612..4c13f0df64 100644 --- a/libavfilter/buffersink.h +++ b/libavfilter/buffersink.h @@ -16,8 +16,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVFILTER_VSINK_BUFFER_H -#define AVFILTER_VSINK_BUFFER_H +#ifndef AVFILTER_BUFFERSINK_H +#define AVFILTER_BUFFERSINK_H /** * @file @@ -98,4 +98,4 @@ int av_vsink_buffer_get_video_buffer_ref(AVFilterContext *buffer_sink, AVFilterBufferRef **picref, int flags); #endif -#endif /* AVFILTER_VSINK_BUFFER_H */ +#endif /* AVFILTER_BUFFERSINK_H */ |