From 16deb214281cd72ffaf2a11d3a5556c5b950a966 Mon Sep 17 00:00:00 2001 From: Rodeo Date: Mon, 3 Jun 2013 15:37:38 +0000 Subject: libhb/common: improve fallback mechanism. API changes: - added hb_global_init(), must be called before any other libhb function - removed (somewhat pointless) hb_mixdown_t.internal_name - some hb_*_get_from_name() functions now return 0 instead of -1. Instead of hardcoded fallbacks, list items now have a specific fallback, and a generic ID for when the specific fallback is unavailable. Encoder availability is checked at runtime (hb_global_init calling hb_common_global_init) and the item's value/fallback is sanity-checked and updated if necessary. See https://reviews.handbrake.fr/r/506/ for more detailed information. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5547 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/hb.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libhb/hb.h') diff --git a/libhb/hb.h b/libhb/hb.h index e4c81a4e4..768a66feb 100644 --- a/libhb/hb.h +++ b/libhb/hb.h @@ -126,6 +126,9 @@ int hb_get_scancount( hb_handle_t * ); Aborts all current jobs if any, frees memory. */ void hb_close( hb_handle_t ** ); +/* hb_global_init() + Performs process initialization. */ +int hb_global_init(); /* hb_global_close() Performs final cleanup for the process. */ void hb_global_close(); -- cgit v1.2.3