Commit fa22ca22 authored by Baptiste Coudurier's avatar Baptiste Coudurier

use INT64_MAX

Originally committed as revision 8770 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 7f3f0dc2
...@@ -223,7 +223,7 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) ...@@ -223,7 +223,7 @@ static int mov_read_default(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
a.offset = atom.offset; a.offset = atom.offset;
if (atom.size < 0) if (atom.size < 0)
atom.size = 0x7fffffffffffffffLL; atom.size = INT64_MAX;
while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) { while(((total_size + 8) < atom.size) && !url_feof(pb) && !err) {
a.size = atom.size; a.size = atom.size;
a.type=0L; a.type=0L;
...@@ -1482,7 +1482,7 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap) ...@@ -1482,7 +1482,7 @@ static int mov_read_header(AVFormatContext *s, AVFormatParameters *ap)
if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */ if(!url_is_streamed(pb)) /* .mov and .mp4 aren't streamable anyway (only progressive download if moov is before mdat) */
atom.size = url_fsize(pb); atom.size = url_fsize(pb);
else else
atom.size = 0x7FFFFFFFFFFFFFFFLL; atom.size = INT64_MAX;
/* check MOV header */ /* check MOV header */
err = mov_read_default(mov, pb, atom); err = mov_read_default(mov, pb, atom);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment