diff options
author | jstebbins <[email protected]> | 2010-03-26 14:54:05 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-03-26 14:54:05 +0000 |
commit | ff1bc2964476e2cbf22ed3dd7aa249a9cc77368b (patch) | |
tree | 66d27421270e27e82469b6076fca037e448a68dc /test | |
parent | 8101df03de52879c876ca73b02a627baa4d09c4a (diff) |
make it possible to dynamically create and close multiple libhb instances
tweaks to make libhb more usable from a C# app
remove pointers from preview filenames, replaces with hb instance and title id's
removes only previews upon hb_close, leaves temp dir for hb_global_close
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3170 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-rw-r--r-- | test/test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c index bb2730182..015e13da4 100644 --- a/test/test.c +++ b/test/test.c @@ -213,6 +213,7 @@ int main( int argc, char ** argv ) "date.\n" ); } hb_close( &h ); + hb_global_close(); return 0; } @@ -324,6 +325,7 @@ int main( int argc, char ** argv ) /* Clean up */ hb_close( &h ); + hb_global_close(); if( input ) free( input ); if( output ) free( output ); if( format ) free( format ); |