summaryrefslogtreecommitdiffstats
path: root/libhb/enclame.c
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-03-18 15:14:01 +0000
committerdynaflash <[email protected]>2007-03-18 15:14:01 +0000
commit91b712aaaebff79b14d8c341b96a807440001db3 (patch)
treeed6c09e72f7496b369cc1e5a0573f67d0bf078b1 /libhb/enclame.c
parentc252ad07466ffa60e8a930200ad5132043d91943 (diff)
saintdev's 64-bit deadlock fix
-should fix some issues when HB is used on a 64 bit system. -thanks saintdev! git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@436 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/enclame.c')
-rw-r--r--libhb/enclame.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/enclame.c b/libhb/enclame.c
index f663e62eb..c0b0f9df0 100644
--- a/libhb/enclame.c
+++ b/libhb/enclame.c
@@ -80,8 +80,8 @@ static hb_buffer_t * Encode( hb_work_object_t * w )
hb_work_private_t * pv = w->private_data;
hb_buffer_t * buf;
int16_t samples_s16[1152 * 2];
- uint64_t pts;
- int pos, i;
+ uint64_t pts, pos;
+ int i;
if( hb_list_bytes( pv->list ) < pv->input_samples * sizeof( float ) )
{