changeset 5263:4aefe095faed libavformat

Fix pcm_read_seek () when the position it calculates is greater than 2 GB. pcm_read_seek() puts the return value of url_fseek() in an int and then compares < 0 to see if an error occurred; if the position is greater than 2 GB, the 32-bit signed int result will be < 0. Change the type of ret to int64_t to avoid the wraparound. patch by Daniel Verkamp, daniel drv nu
author diego
date Mon, 05 Oct 2009 09:19:42 +0000
parents a2289abc9e23
children 323fc801aa57
files raw.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/raw.c	Mon Oct 05 08:38:39 2009 +0000
+++ b/raw.c	Mon Oct 05 09:19:42 2009 +0000
@@ -219,8 +219,8 @@
                   int stream_index, int64_t timestamp, int flags)
 {
     AVStream *st;
-    int block_align, byte_rate, ret;
-    int64_t pos;
+    int block_align, byte_rate;
+    int64_t pos, ret;
 
     st = s->streams[0];