From: Tim Walker Date: Sat, 17 Sep 2016 11:28:26 +0000 (+0200) Subject: internal: reorder PIC_FLAG_* elements by ascending value. X-Git-Tag: 1.0.0~213^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=090e55145205efd073b54e3044b2795f7f376db2;p=handbrake internal: reorder PIC_FLAG_* elements by ascending value. Makes it easier to avoid adding elements with confilcting values. --- diff --git a/libhb/internal.h b/libhb/internal.h index d1f92ca8d..aa6f42774 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -84,15 +84,15 @@ struct hb_buffer_settings_s uint8_t frametype; // Picture flags used by filters -#ifndef PIC_FLAG_REPEAT_FIRST_FIELD -#define PIC_FLAG_REPEAT_FIRST_FIELD 0x0100 -#endif #ifndef PIC_FLAG_TOP_FIELD_FIRST #define PIC_FLAG_TOP_FIELD_FIRST 0x0008 #endif #ifndef PIC_FLAG_PROGRESSIVE_FRAME #define PIC_FLAG_PROGRESSIVE_FRAME 0x0010 #endif +#ifndef PIC_FLAG_REPEAT_FIRST_FIELD +#define PIC_FLAG_REPEAT_FIRST_FIELD 0x0100 +#endif #define PIC_FLAG_REPEAT_FRAME 0x0200 #define HB_BUF_FLAG_EOF 0x0400 #define HB_BUF_FLAG_EOS 0x0800