diff options
author | John Stebbins <[email protected]> | 2019-09-11 09:56:06 -0700 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-09-12 10:22:07 -0700 |
commit | 1b7948495fcf4d511e62d7f9c3a0c1a3ccb59f80 (patch) | |
tree | c87c308f35d862678a4bca37637d24acb8de1c2c /libhb/handbrake/vce_common.h | |
parent | a7f548861f9f0be309659e93eaccd1994a3a5cfe (diff) |
libhb: resolve header conflicts with pango/harfbuzz
Newest versions appear to have a "common.h" somewhere that is
interfering with libhb/common.h.
move headers into "handbrake" subdirectory
Diffstat (limited to 'libhb/handbrake/vce_common.h')
-rw-r--r-- | libhb/handbrake/vce_common.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libhb/handbrake/vce_common.h b/libhb/handbrake/vce_common.h new file mode 100644 index 000000000..0c5da62b2 --- /dev/null +++ b/libhb/handbrake/vce_common.h @@ -0,0 +1,20 @@ +/* vce_common.h + * + * Copyright (c) 2003-2019 HandBrake Team + * This file is part of the HandBrake source code. + * Homepage: <http://handbrake.fr/>. + * It may be used under the terms of the GNU General Public License v2. + * For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html + */ + +int hb_vce_h264_available(); +int hb_vce_h265_available(); + +static const char * const hb_vce_h264_profile_names[] = { "baseline", "main", "high", NULL, }; +static const char * const hb_vce_h265_profile_names[] = { "main", NULL, }; + +static const char * const hb_vce_h264_level_names[] = +{ + "auto", "1.0", "1.1", "1.2", "1.3", "2.0", "2.1", "2.2", "3.0", + "3.1", "3.2", "4.0", "4.1", "4.2", "5.0", "5.1", "5.2", NULL, +}; |