diff options
author | saintdev <[email protected]> | 2008-02-21 02:02:42 +0000 |
---|---|---|
committer | saintdev <[email protected]> | 2008-02-21 02:02:42 +0000 |
commit | cdfc09f2ba0eac2793357e18408248fba1f9620d (patch) | |
tree | ae829c21b492f74299569ca91bd9f378e012a21a /libhb/enclame.c | |
parent | a9cd8746b1a207e67b3e6fb0c78002d448c43fc1 (diff) |
Formatting: Remove a lot of trailing whitespace.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1307 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/enclame.c')
-rw-r--r-- | libhb/enclame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/enclame.c b/libhb/enclame.c index 491365136..35b35ff50 100644 --- a/libhb/enclame.c +++ b/libhb/enclame.c @@ -50,7 +50,7 @@ int enclameInit( hb_work_object_t * w, hb_job_t * job ) lame_set_in_samplerate( pv->lame, job->arate ); lame_set_out_samplerate( pv->lame, job->arate ); lame_init_params( pv->lame ); - + pv->input_samples = 1152 * 2; pv->output_bytes = LAME_MAXMP3BUFFER; pv->buf = malloc( pv->input_samples * sizeof( float ) ); @@ -69,7 +69,7 @@ int enclameInit( hb_work_object_t * w, hb_job_t * job ) void enclameClose( hb_work_object_t * w ) { hb_work_private_t * pv = w->private_data; - + lame_close( pv->lame ); hb_list_empty( &pv->list ); free( pv->buf ); |