diff options
author | jbrjake <[email protected]> | 2007-12-28 20:02:41 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-12-28 20:02:41 +0000 |
commit | 6ed3b83428ae81b97b4fbd40d8ffddbf51164823 (patch) | |
tree | 3d8969cb91c1b2458ae5897bea3a7d906f05db80 /libhb/hb.h | |
parent | 568f0b0c21a4b80c0ba7951237310ca31ea3e93e (diff) |
Extends hb_set_anamorphic_size() to make it possible to do "dry-runs"...this way the MacGui can calculate loose anamorphic values for displaying preview images, before the job variables are directly set in work.c.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1153 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb.h')
-rw-r--r-- | libhb/hb.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libhb/hb.h b/libhb/hb.h index 9de4af732..93e2016e7 100644 --- a/libhb/hb.h +++ b/libhb/hb.h @@ -78,7 +78,9 @@ hb_list_t * hb_get_titles( hb_handle_t * ); void hb_get_preview( hb_handle_t *, hb_title_t *, int, uint8_t * ); void hb_set_size( hb_job_t *, int ratio, int pixels ); -void hb_set_anamorphic_size( hb_job_t * ); +void hb_set_anamorphic_size( hb_job_t *, + int *output_width, int *output_height, + int *output_par_width, int *output_par_height); /* Handling jobs */ int hb_count( hb_handle_t * ); |