diff options
author | Måns Rullgård <mans@mansr.com> | 2006-12-06 23:46:11 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-12-06 23:46:11 +0000 |
commit | 8da9266ceaeb233a757d5ad8772bdf93601eec33 (patch) | |
tree | a549b588fbd30273b27aa1f7a4857f010f36a323 /libavformat/ffm.c | |
parent | cd107896911a1a2359b29f8041458a192631292f (diff) | |
download | ffmpeg-8da9266ceaeb233a757d5ad8772bdf93601eec33.tar.gz |
use the standard INT64_C() macro for 64-bit constants
Originally committed as revision 7240 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ffm.c')
-rw-r--r-- | libavformat/ffm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ffm.c b/libavformat/ffm.c index 539b45d5ff..6d45326190 100644 --- a/libavformat/ffm.c +++ b/libavformat/ffm.c @@ -469,7 +469,7 @@ static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) ffm->file_size = url_fsize(pb); adjust_write_index(s); } else { - ffm->file_size = (uint64_t_C(1) << 63) - 1; + ffm->file_size = (UINT64_C(1) << 63) - 1; } nb_streams = get_be32(pb); |