]> git.sesse.net Git - vlc/commitdiff
h264_nal: add header guard
authorFelix Abecassis <felix.abecassis@gmail.com>
Fri, 1 Aug 2014 09:18:31 +0000 (11:18 +0200)
committerFelix Abecassis <felix.abecassis@gmail.com>
Fri, 1 Aug 2014 09:18:31 +0000 (11:18 +0200)
modules/codec/h264_nal.h

index 21a34bed06ed1017f70de2dec00142b51538cfd0..f39e28bde6487ee4b02b841b786c8feff34a20a1 100644 (file)
@@ -18,6 +18,9 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifndef H264_NAL_H
+# define H264_NAL_H
+
 # ifdef HAVE_CONFIG_H
 #  include "config.h"
 # endif
@@ -44,3 +47,5 @@ void convert_h264_to_annexb( uint8_t *p_buf, uint32_t i_len,
 /* Get level and Profile */
 bool h264_get_profile_level(const es_format_t *p_fmt, size_t *p_profile,
                             size_t *p_level, size_t *p_nal_size);
+
+#endif /* H264_NAL_H */