]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/bytestream.h
Export H264 profile and level in AVCodecContext.
[ffmpeg] / libavcodec / bytestream.h
index 61fb36a76d74dafc2ff32bc9db4ac6269cbfcf52..b56f6ce7436db7ff31f42897bbd4d8d647834fa9 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#ifndef FFMPEG_BYTESTREAM_H
-#define FFMPEG_BYTESTREAM_H
+#ifndef AVCODEC_BYTESTREAM_H
+#define AVCODEC_BYTESTREAM_H
 
+#include <string.h>
 #include "libavutil/common.h"
+#include "libavutil/intreadwrite.h"
 
 #define DEF_T(type, name, bytes, read, write)                             \
 static av_always_inline type bytestream_get_ ## name(const uint8_t **b){\
@@ -66,4 +68,4 @@ static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *s
     (*b) += size;
 }
 
-#endif /* FFMPEG_BYTESTREAM_H */
+#endif /* AVCODEC_BYTESTREAM_H */