1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

libwebpenc_common: add header guards

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2015-05-23 01:44:32 -03:00
parent 98be2d94ea
commit 44ca8a6adb

View File

@ -24,6 +24,9 @@
* WebP encoder using libwebp: common structs and methods.
*/
#ifndef AVCODEC_LIBWEBPENC_COMMON_H
#define AVCODEC_LIBWEBPENC_COMMON_H
#include <webp/encode.h>
#include "libavutil/common.h"
@ -87,3 +90,5 @@ static const AVCodecDefault libwebp_defaults[] = {
{ "global_quality", "-1" },
{ NULL },
};
#endif /* AVCODEC_LIBWEBPENC_COMMON_H */