diff options
author | jstebbins <[email protected]> | 2012-12-27 22:49:32 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2012-12-27 22:49:32 +0000 |
commit | d21a843f23df368e191925e2665caf4ecf7390b5 (patch) | |
tree | 87910495c5fa44e70549415b226b3498b6bf156f /libhb/hb_dict.h | |
parent | 40373fc63256c3e135e9ca0352d70efe1291e929 (diff) |
LinGui: add x264 preset/tune/profile/level support
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5110 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/hb_dict.h')
-rw-r--r-- | libhb/hb_dict.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libhb/hb_dict.h b/libhb/hb_dict.h index d90e75aea..30155f1ba 100644 --- a/libhb/hb_dict.h +++ b/libhb/hb_dict.h @@ -6,6 +6,8 @@ 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 */ +#if !defined(HB_DICT_H) +#define HB_DICT_H typedef struct hb_dict_entry_s hb_dict_entry_t; typedef struct hb_dict_s hb_dict_t; @@ -48,3 +50,5 @@ struct hb_dict_s int count; hb_dict_entry_t * objects; }; + +#endif // !defined(HB_DICT_H) |