]> granicus.if.org Git - handbrake/commitdiff
internal: reorder PIC_FLAG_* elements by ascending value.
authorTim Walker <tdskywalker@gmail.com>
Sat, 17 Sep 2016 11:28:26 +0000 (13:28 +0200)
committerTim Walker <tdskywalker@gmail.com>
Sat, 17 Sep 2016 13:44:16 +0000 (15:44 +0200)
Makes it easier to avoid adding elements with confilcting values.

libhb/internal.h

index d1f92ca8d7037aa8cb39602e0152a957d8e31e3e..aa6f42774ba1ab0f278df4c0d09c2e9895599e7e 100644 (file)
@@ -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