OSDN Git Service

libhb: fix a compile warning in enctheora
authorjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 21 Jul 2009 18:35:28 +0000 (18:35 +0000)
committerjstebbins <jstebbins@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Tue, 21 Jul 2009 18:35:28 +0000 (18:35 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@2719 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/enctheora.c

index 0973ab6..4206a2f 100644 (file)
@@ -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 );