diff options
author | jstebbins <[email protected]> | 2009-07-21 18:35:28 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-07-21 18:35:28 +0000 |
commit | f1ca7baa5a4c2537551502b6afb659b83145dd4f (patch) | |
tree | 6b171c727a4764d9d3225b155ead748b6a3d4c1c /libhb/enctheora.c | |
parent | 5113f3f269608590a3613c0e1e40673fbd07c52c (diff) |
libhb: fix a compile warning in enctheora
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2719 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/enctheora.c')
-rw-r--r-- | libhb/enctheora.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/enctheora.c b/libhb/enctheora.c index 0973ab613..4206a2f70 100644 --- a/libhb/enctheora.c +++ b/libhb/enctheora.c @@ -161,7 +161,7 @@ int enctheoraWork( hb_work_object_t * w, hb_buffer_t ** buf_in, ycbcr[1].data = ycbcr[0].data + (ycbcr[0].stride * job->height); ycbcr[2].data = ycbcr[1].data + (ycbcr[1].stride * ((job->height+1)/2)); - th_encode_ycbcr_in( pv->ctx, &ycbcr ); + th_encode_ycbcr_in( pv->ctx, ycbcr ); th_encode_packetout( pv->ctx, 0, &op ); |