diff options
author | titer <[email protected]> | 2006-04-17 18:50:02 +0000 |
---|---|---|
committer | titer <[email protected]> | 2006-04-17 18:50:02 +0000 |
commit | b30c3a727aa539f10adeae2220b4aa48e0b18feb (patch) | |
tree | eefa942e442271517817b3dcc3e9172e659fe4e0 /libhb/work.c | |
parent | 82485cc9d132e1c284c9bd16dd8acd0094d42946 (diff) |
Merge from avformat branch
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@60 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/work.c')
-rw-r--r-- | libhb/work.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/work.c b/libhb/work.c index 2ad4f65f7..349a630e3 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -71,6 +71,7 @@ static void do_job( hb_job_t * job, int cpu_count ) hb_work_object_t * w; hb_audio_t * audio; hb_subtitle_t * subtitle; + int done; title = job->title; @@ -229,7 +230,7 @@ static void do_job( hb_job_t * job, int cpu_count ) HB_LOW_PRIORITY ); } - int done = 0; + done = 0; w = hb_list_item( job->list_work, 0 ); w->init( w, job ); while( !*job->die ) |