mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-17 04:41:08 +00:00
avformat/asfdec: Use 64bit ret to avoid overflow
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
62e95757d5
commit
d4936d28a1
@ -1489,7 +1489,7 @@ static int asf_build_simple_index(AVFormatContext *s, int stream_index)
|
|||||||
ff_asf_guid g;
|
ff_asf_guid g;
|
||||||
ASFContext *asf = s->priv_data;
|
ASFContext *asf = s->priv_data;
|
||||||
int64_t current_pos = avio_tell(s->pb);
|
int64_t current_pos = avio_tell(s->pb);
|
||||||
int ret = 0;
|
int64_t ret;
|
||||||
|
|
||||||
if((ret = avio_seek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET)) < 0) {
|
if((ret = avio_seek(s->pb, asf->data_object_offset + asf->data_object_size, SEEK_SET)) < 0) {
|
||||||
return ret;
|
return ret;
|
||||||
@ -1559,7 +1559,7 @@ static int asf_read_seek(AVFormatContext *s, int stream_index,
|
|||||||
|
|
||||||
/* Try using the protocol's read_seek if available */
|
/* Try using the protocol's read_seek if available */
|
||||||
if (s->pb) {
|
if (s->pb) {
|
||||||
int ret = avio_seek_time(s->pb, stream_index, pts, flags);
|
int64_t ret = avio_seek_time(s->pb, stream_index, pts, flags);
|
||||||
if (ret >= 0)
|
if (ret >= 0)
|
||||||
asf_reset_header(s);
|
asf_reset_header(s);
|
||||||
if (ret != AVERROR(ENOSYS))
|
if (ret != AVERROR(ENOSYS))
|
||||||
|
Loading…
Reference in New Issue
Block a user