diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-13 16:47:17 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-13 16:47:17 +0000 |
commit | 084c7cc54a60e05ee240354d8013f512dac04ad2 (patch) | |
tree | 5cc8f9dff48c37f847e7b7a527015e033ada6a0e | |
parent | 437f884da6ae8faddb4ba88582a28397f5e8a753 (diff) | |
download | ffmpeg-084c7cc54a60e05ee240354d8013f512dac04ad2.tar.gz |
Do not use full include path for get_bits.h, since the header is in
the same directory.
Consistent with r16260.
Originally committed as revision 18496 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/pixdesc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pixdesc.h b/libavcodec/pixdesc.h index 11a437803b..9610262b51 100644 --- a/libavcodec/pixdesc.h +++ b/libavcodec/pixdesc.h @@ -22,7 +22,7 @@ #include <inttypes.h> #include "libavutil/intreadwrite.h" -#include "libavcodec/get_bits.h" +#include "get_bits.h" typedef struct AVComponentDescriptor{ uint16_t plane :2; ///< which of the 4 planes contains the component |