diff options
author | jstebbins <[email protected]> | 2010-05-23 16:08:52 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-05-23 16:08:52 +0000 |
commit | a42237e7c0cf5f19662990ae0b740715c2b67bfd (patch) | |
tree | c97017325dd548439c9c61d6a4b9682ca8c23e77 /libhb/common.h | |
parent | 28658486daa5cd3e7a58edb3539885422889c44f (diff) |
add wrapper functions that make it easier to call libhb from C# and other
interpreted languages
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3317 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r-- | libhb/common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libhb/common.h b/libhb/common.h index e70550eb8..204cfdb92 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -769,6 +769,13 @@ struct hb_filter_object_s #endif }; +#define HB_FILTER_DETELECINE 1 +#define HB_FILTER_DEINTERLACE 2 +#define HB_FILTER_DEBLOCK 3 +#define HB_FILTER_DENOISE 4 +#define HB_FILTER_DECOMB 5 +#define HB_FILTER_ROTATE 6 + extern hb_filter_object_t hb_filter_detelecine; extern hb_filter_object_t hb_filter_deinterlace; extern hb_filter_object_t hb_filter_deblock; |