Make clang-format more aggressive
clang-format always manages to mix spaces into tab-based indentation. Since we already require an exact tab-width of 8 it makes more sense to use spaces.
This commit is contained in:
@@ -5,15 +5,15 @@
|
||||
typedef struct _MPZBarImage MPZBarImage;
|
||||
|
||||
typedef struct {
|
||||
int bounds_x[4];
|
||||
int bounds_y[4];
|
||||
char *data;
|
||||
const char *type;
|
||||
int bounds_x[4];
|
||||
int bounds_y[4];
|
||||
char *data;
|
||||
const char *type;
|
||||
} MPZBarCode;
|
||||
|
||||
typedef struct {
|
||||
MPZBarCode codes[8];
|
||||
uint8_t size;
|
||||
MPZBarCode codes[8];
|
||||
uint8_t size;
|
||||
} MPZBarScanResult;
|
||||
|
||||
void mp_zbar_pipeline_start();
|
||||
@@ -21,7 +21,11 @@ void mp_zbar_pipeline_stop();
|
||||
|
||||
void mp_zbar_pipeline_process_image(MPZBarImage *image);
|
||||
|
||||
MPZBarImage *mp_zbar_image_new(uint8_t *data, MPPixelFormat pixel_format, int width,
|
||||
int height, int rotation, bool mirrored);
|
||||
MPZBarImage *mp_zbar_image_new(uint8_t *data,
|
||||
MPPixelFormat pixel_format,
|
||||
int width,
|
||||
int height,
|
||||
int rotation,
|
||||
bool mirrored);
|
||||
MPZBarImage *mp_zbar_image_ref(MPZBarImage *image);
|
||||
void mp_zbar_image_unref(MPZBarImage *image);
|
||||
|
Reference in New Issue
Block a user