shithub: openh264

Download patch

ref: d1b0713c76f27226b57e357196be8cc9037eb6e9
parent: dba62070bf64f6f1ec2729563df183898e0eef19
author: Martin Storsjö <martin@martin.st>
date: Sat Dec 28 18:32:41 EST 2013

Add a proper include guard to dec_console.h

--- a/codec/console/dec/inc/dec_console.h
+++ b/codec/console/dec/inc/dec_console.h
@@ -34,6 +34,10 @@
  *  Created on 11-3-15.
  *
  */
+
+#ifndef DEC_CONSOLE_H__
+#define DEC_CONSOLE_H__
+
 #pragma once
 
 #include "code_api.h"
@@ -51,3 +55,4 @@
 
 
 
+#endif  // DEC_CONSOLE_H__