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/encavcodec.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/encavcodec.c')
-rw-r--r-- | libhb/encavcodec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libhb/encavcodec.c b/libhb/encavcodec.c index 85aa6085f..f5d96ecb7 100644 --- a/libhb/encavcodec.c +++ b/libhb/encavcodec.c @@ -20,19 +20,19 @@ int encavcodecWork( hb_work_object_t *, hb_buffer_t **, hb_buffer_t ** ); void encavcodecClose( hb_work_object_t * ); hb_work_object_t hb_encavcodec = -{ +{ WORK_ENCAVCODEC, "MPEG-4 encoder (libavcodec)", encavcodecInit, encavcodecWork, encavcodecClose -}; +}; int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) { AVCodec * codec; AVCodecContext * context; - + hb_work_private_t * pv = calloc( 1, sizeof( hb_work_private_t ) ); w->private_data = pv; @@ -70,7 +70,7 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) context->sample_aspect_ratio.num = job->pixel_aspect_width; context->sample_aspect_ratio.den = job->pixel_aspect_height; - hb_log( "encavcodec: encoding with stored aspect %d/%d", + hb_log( "encavcodec: encoding with stored aspect %d/%d", job->pixel_aspect_width, job->pixel_aspect_height ); } @@ -135,7 +135,7 @@ int encavcodecInit( hb_work_object_t * w, hb_job_t * job ) context->extradata_size ); #endif } - + return 0; } |