diff options
author | jstebbins <[email protected]> | 2014-07-01 17:21:05 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-07-01 17:21:05 +0000 |
commit | d4a760ecd14a39772c0f9a5b7b35d0bc15d9a77f (patch) | |
tree | f1ebf81d06ed201aaf6b508643d2452f114a8803 /libhb | |
parent | c6e79afb2f56951945572b5c52c206f3ddadc435 (diff) |
libhb: fix typo in flag definition
NO_IDR and SCAN_COMPLETE values overlapped
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6226 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h index 2a57b0534..275761803 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -966,7 +966,7 @@ struct hb_title_s uint32_t flags; // set if video stream doesn't have IDR frames #define HBTF_NO_IDR (1 << 0) -#define HBTF_SCAN_COMPLETE (1 << 0) +#define HBTF_SCAN_COMPLETE (1 << 1) // whether OpenCL scaling is supported for this source int opencl_support; |