comparison bytestream.h @ 6763:f7cbb7733146 libavcodec

Use full path for #includes from another directory.
author diego
date Fri, 09 May 2008 11:56:36 +0000
parents dfdff1ca78a7
children c4a4495715dd
comparison
equal deleted inserted replaced
6762:99966715fe75 6763:f7cbb7733146
20 */ 20 */
21 21
22 #ifndef FFMPEG_BYTESTREAM_H 22 #ifndef FFMPEG_BYTESTREAM_H
23 #define FFMPEG_BYTESTREAM_H 23 #define FFMPEG_BYTESTREAM_H
24 24
25 #include "common.h" 25 #include "libavutil/common.h"
26 26
27 #define DEF_T(type, name, bytes, read, write) \ 27 #define DEF_T(type, name, bytes, read, write) \
28 static av_always_inline type bytestream_get_ ## name(const uint8_t **b){\ 28 static av_always_inline type bytestream_get_ ## name(const uint8_t **b){\
29 (*b) += bytes;\ 29 (*b) += bytes;\
30 return read(*b - bytes);\ 30 return read(*b - bytes);\