summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorjbrjake <[email protected]>2008-10-19 23:41:54 +0000
committerjbrjake <[email protected]>2008-10-19 23:41:54 +0000
commit6513f874d40d753d369cb1c69cc065963c56191d (patch)
tree08e92f3616d309eef93b3e4960ae944e244ea965 /libhb
parentd83151d2858999d5ae7b491cf9b282aeb9dfd7b7 (diff)
Ooops, I wanted height not width there.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1852 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r--libhb/encx264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c
index 0e3edd040..e2d90cd31 100644
--- a/libhb/encx264.c
+++ b/libhb/encx264.c
@@ -209,7 +209,7 @@ int encx264Init( hb_work_object_t * w, hb_job_t * job )
param.vui.i_transfer = 1;
param.vui.i_colmatrix = 1;
}
- else if ( job->title->width >= 1280 || job->title->width >= 720 )
+ else if ( job->title->width >= 1280 || job->title->height >= 720 )
{
// we guess that 720p or above is ITU BT.709 HD content
param.vui.i_colorprim = 1;