aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-20 20:13:06 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-14 14:27:22 +0100
commit107738051393b1f91d4624909113e156ea910b08 (patch)
tree766cc9f1145a5a9db710f8e800b0d01a710069cf
parenta15ceebb6f2a7b6b8731793d9b8a1f565740ba50 (diff)
downloadffmpeg-107738051393b1f91d4624909113e156ea910b08.tar.gz
avformat/idcin: Use 64bit for ret to avoid overflow
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit d1923d15a3544cbb94563a59e7169291db76b312) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/idcin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/idcin.c b/libavformat/idcin.c
index cc25fb0e38..0f0b97eccf 100644
--- a/libavformat/idcin.c
+++ b/libavformat/idcin.c
@@ -359,7 +359,7 @@ static int idcin_read_seek(AVFormatContext *s, int stream_index,
IdcinDemuxContext *idcin = s->priv_data;
if (idcin->first_pkt_pos > 0) {
- int ret = avio_seek(s->pb, idcin->first_pkt_pos, SEEK_SET);
+ int64_t ret = avio_seek(s->pb, idcin->first_pkt_pos, SEEK_SET);
if (ret < 0)
return ret;
ff_update_cur_dts(s, s->streams[idcin->video_stream_index], 0);