diff options
author | jstebbins <[email protected]> | 2015-04-04 14:43:39 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-04-04 14:43:39 +0000 |
commit | 5a24d1b2f7b9414e76ceaa4b23eb3661ac8ce828 (patch) | |
tree | 9377cd2397c2f2e3ec3c930f5e31a34011d67c24 /libhb/common.h | |
parent | 1c89b21c037157fbaeefc1b7ee0da1b9ae6cd5f8 (diff) |
libhb: Add filter preset/tune lookup and setting validation for more filter types
All filters except for crop_scale now have preset/tune support and basic
validation.
This code could also be used by the other frontends to simplify some things.
For example, it can be used to query libhb for a list of available presets
and tunes for each filter.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7050 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libhb/common.h b/libhb/common.h index 1014b8c14..60ef9cc82 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -1238,10 +1238,6 @@ hb_filter_object_t * hb_filter_init( int filter_id ); hb_filter_object_t * hb_filter_copy( hb_filter_object_t * filter ); hb_list_t *hb_filter_list_copy(const hb_list_t *src); void hb_filter_close( hb_filter_object_t ** ); -char * hb_generate_filter_settings(int filter_id, const char *preset, - const char *tune); -int hb_validate_filter_settings(int filter_id, const char *filter_param); -int hb_validate_param_string(const char *regex_pattern, const char *param_string); typedef void hb_error_handler_t( const char *errmsg ); |