diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-25 16:03:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-25 16:03:55 +0200 |
commit | d3ef2da59df2bf65bea0ae7b519625c51c6f21dc (patch) | |
tree | ea20866e7efc15519505913e8100cb20da11874a | |
parent | 0842e32f99105f06ad6b53f580ee777bc4bf9dee (diff) | |
download | ffmpeg-d3ef2da59df2bf65bea0ae7b519625c51c6f21dc.tar.gz |
oggdec: add missing () for OGG_NOGRANULE_VALUE
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/oggdec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggdec.h b/libavformat/oggdec.h index 7b93175383..febf8cb642 100644 --- a/libavformat/oggdec.h +++ b/libavformat/oggdec.h @@ -106,7 +106,7 @@ struct ogg { #define OGG_FLAG_BOS 2 #define OGG_FLAG_EOS 4 -#define OGG_NOGRANULE_VALUE -1ull +#define OGG_NOGRANULE_VALUE (-1ull) extern const struct ogg_codec ff_celt_codec; extern const struct ogg_codec ff_dirac_codec; |