From 259bc9a5dd14e07b3fd6b5e7a6aa3cf06caf9b59 Mon Sep 17 00:00:00 2001 From: jbrjake Date: Fri, 5 Jun 2009 16:39:32 +0000 Subject: CLI: Implements custom anamorphic. No more -p or -P. Choices are --strict-anamorphic, --loose-anamorphic, and the new --custom-anamorphic. The last of which also handles --pixel-aspect, --display-width, --itu-par, --modulus, and --keep-display-aspect options. Loose will also obey the pixel aspect and ITU PAR options. Libhb: Fixed a small bug with custom anamorphic working off the source's display aspect even when dealing with a custom display aspect, and made the job config display aware that custom anamorphic exists. Scripts: Updated manicure to write the new anamorphic option names. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2487 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/work.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libhb/work.c') diff --git a/libhb/work.c b/libhb/work.c index 92f04f483..e99feaa8c 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -204,7 +204,7 @@ void hb_display_job_info( hb_job_t * job ) if( job->anamorphic.mode ) { - hb_log( " + %s anamorphic", job->anamorphic.mode == 1 ? "strict" : "loose" ); + hb_log( " + %s anamorphic", job->anamorphic.mode == 1 ? "strict" : job->anamorphic.mode == 2? "loose" : "custom" ); hb_log( " + storage dimensions: %d * %d -> %d * %d, crop %d/%d/%d/%d", title->width, title->height, job->width, job->height, job->crop[0], job->crop[1], job->crop[2], job->crop[3] ); -- cgit v1.2.3