summaryrefslogtreecommitdiff
path: root/libavcodec/dcamath.h
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2016-01-28 18:00:33 -0800
committerTimothy Gu <timothygu99@gmail.com>2016-01-28 19:49:48 -0800
commit44304ae3220f553d0b1458644e2a617ea1ad8d22 (patch)
tree90f08e24290d98cce881b05fce33fa9bcecbcea4 /libavcodec/dcamath.h
parent6bc610b39efed743a8616104ce59c860f20487ef (diff)
downloadffmpeg-44304ae3220f553d0b1458644e2a617ea1ad8d22.tar.gz
all: Add missing header guards
Diffstat (limited to 'libavcodec/dcamath.h')
-rw-r--r--libavcodec/dcamath.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/dcamath.h b/libavcodec/dcamath.h
index 06dc43279b..a8a41427f7 100644
--- a/libavcodec/dcamath.h
+++ b/libavcodec/dcamath.h
@@ -16,6 +16,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef AVCODEC_DCAMATH_H
+#define AVCODEC_DCAMATH_H
+
#include "libavutil/common.h"
@@ -40,3 +43,5 @@ static inline int64_t dca_round(int64_t a, int bits)
else
return a;
}
+
+#endif /* AVCODEC_DCAMATH_H */