--- liboil-0.3.11.orig/doc/liboil-decl.txt +++ liboil-0.3.11/doc/liboil-decl.txt @@ -0,0 +1,2804 @@ + +oil_init +void +void + + +oil_memcpy +#define oil_memcpy(dest,src,n_bytes) \ + oil_copy_u8((void *)(dest),(const void *)(src),(n_bytes)) + + +oil_trans8x8_s16 +#define oil_trans8x8_s16(dest, dstr, src, sstr) \ + oil_trans8x8_u16((uint16_t *)dest, dstr, (const uint16_t *)src, sstr) + + +OIL_CHECK_PROTOTYPE +#define OIL_CHECK_PROTOTYPE(a) a + + +OIL_CHECK_PROTOTYPE +#define OIL_CHECK_PROTOTYPE(a) + + +OIL_OPT_MANGLE +#define OIL_OPT_MANGLE(a) a + + +OIL_OPT_FLAG_MANGLE +#define OIL_OPT_FLAG_MANGLE(a) a + + +OIL_NO_CLASSES +#define OIL_NO_CLASSES + + +OIL_OPT_FLAG_MANGLE +#define OIL_OPT_FLAG_MANGLE(a) (((a)&(~OIL_IMPL_FLAG_REF)) | OIL_IMPL_FLAG_OPT) + + +OIL_OPT_SUFFIX +#define OIL_OPT_SUFFIX + + +OilFunctionClass +struct _OilFunctionClass { + /*< private >*/ + void *func; + const char *name; + const char *desc; + OilTestFunction test_func; + + OilFunctionImpl *first_impl; + OilFunctionImpl *reference_impl; + + OilFunctionImpl *chosen_impl; + + const char *prototype; +}; + + +OilFunctionImpl +struct _OilFunctionImpl { + /*< private >*/ + void *next; + OilFunctionClass *klass; + void *func; + unsigned int flags; + const char *name; + double profile_ave; + double profile_std; +}; + + +OIL_GET +#define OIL_GET(ptr, offset, type) (*(type *)((uint8_t *)(ptr) + (offset)) ) + + +OIL_OFFSET +#define OIL_OFFSET(ptr, offset) ((void *)((uint8_t *)(ptr) + (offset)) ) + + +OIL_INCREMENT +#define OIL_INCREMENT(ptr, offset) (ptr = (void *)((uint8_t *)ptr + (offset)) ) + + +OilImplFlag +typedef enum { + OIL_IMPL_FLAG_REF = (1<<0), + OIL_IMPL_FLAG_OPT = (1<<1), + OIL_IMPL_FLAG_ASM = (1<<2), + OIL_IMPL_FLAG_DISABLED = (1<<3), + OIL_IMPL_FLAG_CMOV = (1<<16), + OIL_IMPL_FLAG_MMX = (1<<17), + OIL_IMPL_FLAG_SSE = (1<<18), + OIL_IMPL_FLAG_MMXEXT = (1<<19), + OIL_IMPL_FLAG_SSE2 = (1<<20), + OIL_IMPL_FLAG_3DNOW = (1<<21), + OIL_IMPL_FLAG_3DNOWEXT = (1<<22), + OIL_IMPL_FLAG_SSE3 = (1<<23), + OIL_IMPL_FLAG_ALTIVEC = (1<<24) +} OilImplFlag; + + +OIL_CPU_FLAG_MASK +#define OIL_CPU_FLAG_MASK 0xffff0000 + + +OIL_DECLARE_CLASS +#define OIL_DECLARE_CLASS(klass) \ + extern OilFunctionClass _oil_function_class_ ## klass + + +OIL_DEFINE_CLASS_FULL +#define OIL_DEFINE_CLASS_FULL(klass, string, test) \ +OilFunctionClass _oil_function_class_ ## klass = { \ + NULL, \ + #klass , \ + NULL, \ + test, \ + NULL, \ + NULL, \ + NULL, \ + string \ +}; \ +OilFunctionClass *oil_function_class_ptr_ ## klass = \ + &_oil_function_class_ ## klass + + +OIL_DEFINE_CLASS_FULL +#define OIL_DEFINE_CLASS_FULL(klass, string, test) \ + OIL_DECLARE_CLASS(klass) + + +OIL_DEFINE_CLASS +#define OIL_DEFINE_CLASS(klass, string) \ + OIL_DEFINE_CLASS_FULL (klass, string, NULL) + + +OIL_DEFINE_IMPL_FULL +#define OIL_DEFINE_IMPL_FULL(function,klass,flags) \ +OilFunctionImpl OIL_OPT_MANGLE(_oil_function_impl_ ## function) = { \ + NULL, \ + &_oil_function_class_ ## klass , \ + (void *)function, \ + OIL_OPT_FLAG_MANGLE(flags), \ + #function OIL_OPT_SUFFIX \ +} \ +OIL_CHECK_PROTOTYPE(;_oil_type_ ## klass _ignore_me_ ## function = function) + + +OIL_DEFINE_IMPL +#define OIL_DEFINE_IMPL(function,klass) \ + OIL_DEFINE_IMPL_FULL(function,klass,0) + + +OIL_DEFINE_IMPL_REF +#define OIL_DEFINE_IMPL_REF(function,klass) \ + OIL_DEFINE_IMPL_FULL(function,klass,OIL_IMPL_FLAG_REF) + + +OIL_DEFINE_IMPL_ASM +#define OIL_DEFINE_IMPL_ASM(function,klass) \ + OIL_DEFINE_IMPL_FULL(function,klass,OIL_IMPL_FLAG_ASM) + + +OIL_DEFINE_IMPL_DEPENDS +#define OIL_DEFINE_IMPL_DEPENDS(function,klass,...) \ + OIL_DEFINE_IMPL_FULL(function,klass,0) + + +oil_optimize_all +void +void + + +oil_optimize +void +const char *class_name + + +oil_class_get_by_index +OilFunctionClass * +int i + + +oil_class_get +OilFunctionClass * +const char *class_name + + +oil_class_optimize +void +OilFunctionClass *klass + + +oil_class_get_n_classes +int +void + + +oil_impl_get_by_index +OilFunctionImpl * +int i + + +oil_impl_is_runnable +int +OilFunctionImpl *impl + + +oil_class_choose_by_name +void +OilFunctionClass * klass, const char *name + + +oil_class_register_impl_full +void +OilFunctionClass * klass,void (*func)(void), const char *name, unsigned int flags + + +oil_class_register_impl +void +OilFunctionClass * klass, OilFunctionImpl *impl + + +oil_class_register_impl_by_name +void +const char *klass_name,OilFunctionImpl *impl + + +oil_init_no_optimize +void +void + + +OilDebugPrintFunc +void +int level, const char *file, + const char *func, int line, const char *format, va_list varargs + + +OilDebugLevel +typedef enum { + OIL_DEBUG_NONE = 0, + OIL_DEBUG_ERROR, + OIL_DEBUG_WARNING, + OIL_DEBUG_INFO, + OIL_DEBUG_DEBUG, + OIL_DEBUG_LOG +} OilDebugLevel; + + +OIL_ERROR +#define OIL_ERROR(...) OIL_DEBUG_PRINT(OIL_DEBUG_ERROR, __VA_ARGS__) + + +OIL_WARNING +#define OIL_WARNING(...) OIL_DEBUG_PRINT(OIL_DEBUG_WARNING, __VA_ARGS__) + + +OIL_INFO +#define OIL_INFO(...) OIL_DEBUG_PRINT(OIL_DEBUG_INFO, __VA_ARGS__) + + +OIL_DEBUG +#define OIL_DEBUG(...) OIL_DEBUG_PRINT(OIL_DEBUG_DEBUG, __VA_ARGS__) + + +OIL_LOG +#define OIL_LOG(...) OIL_DEBUG_PRINT(OIL_DEBUG_LOG, __VA_ARGS__) + + +OIL_FUNCTION +#define OIL_FUNCTION __PRETTY_FUNCTION__ + + +OIL_FUNCTION +#define OIL_FUNCTION __func__ + + +OIL_FUNCTION +#define OIL_FUNCTION "" + + +OIL_DEBUG_PRINT +#define OIL_DEBUG_PRINT(level, ...) do { \ + oil_debug_print((level), __FILE__, OIL_FUNCTION, __LINE__, __VA_ARGS__); \ +}while(0) + + +oil_debug_set_print_function +void +OilDebugPrintFunc func + + +oil_debug_get_level +int +void + + +oil_debug_set_level +void +int level + + +oil_debug_print +void +int level, const char *file, const char *func,int line, const char *format, ... + + +NULL +#define NULL ((void *)0) + + +OilFunctionClass + + +OilFunctionImpl + + +OilParameter + + +OilTest + + +OilTestFunction +void +OilTest *test + + +oil_type_s8 +#define oil_type_s8 int8_t + + +oil_type_u8 +#define oil_type_u8 uint8_t + + +oil_type_s16 +#define oil_type_s16 int16_t + + +oil_type_u16 +#define oil_type_u16 uint16_t + + +oil_type_s32 +#define oil_type_s32 int32_t + + +oil_type_u32 +#define oil_type_u32 uint32_t + + +oil_type_s64 +#define oil_type_s64 int64_t + + +oil_type_u64 +#define oil_type_u64 uint64_t + + +oil_type_f32 +#define oil_type_f32 float + + +oil_type_f64 +#define oil_type_f64 double + + +oil_type_min_s8 +#define oil_type_min_s8 (-128) + + +oil_type_min_u8 +#define oil_type_min_u8 (0) + + +oil_type_min_s16 +#define oil_type_min_s16 (-32768) + + +oil_type_min_u16 +#define oil_type_min_u16 (0) + + +oil_type_min_s32 +#define oil_type_min_s32 (-2147483647 - 1) + + +oil_type_min_u32 +#define oil_type_min_u32 (0) + + +oil_type_max_s8 +#define oil_type_max_s8 (127) + + +oil_type_max_u8 +#define oil_type_max_u8 (255) + + +oil_type_max_s16 +#define oil_type_max_s16 (32767) + + +oil_type_max_u16 +#define oil_type_max_u16 (65535) + + +oil_type_max_s32 +#define oil_type_max_s32 (2147483647) + + +oil_type_max_u32 +#define oil_type_max_u32 (4294967295U) + + +oil_cpu_get_flags +unsigned int +void + + +oil_cpu_fault_check_enable +void +void + + +oil_cpu_fault_check_disable +void +void + + +oil_cpu_fault_check_try +int +void (*func)(void *), void *priv + + +oil_cpu_get_ticks_per_second +double +void + + +OilPrototype + + +OilPrototype +struct _OilPrototype { + int n_params; + OilParameter *params; + OilFunctionClass *klass; +}; + + +oil_prototype_from_string +OilPrototype * +const char *s + + +oil_prototype_to_string +char * +OilPrototype *proto + + +oil_prototype_to_arg_string +char * +OilPrototype *proto + + +oil_prototype_free +void +OilPrototype *proto + + +oil_prototype_append_param +void +OilPrototype *proto, OilParameter *param + + +oil_type_sizeof +int +OilType type + + +oil_type_name +const char * +OilType type + + +oil_arg_type_name +const char * +OilArgType type + + +OilType +typedef enum { + OIL_TYPE_UNKNOWN = 0, + OIL_TYPE_INT, + OIL_TYPE_s8, + OIL_TYPE_u8, + OIL_TYPE_s16, + OIL_TYPE_u16, + OIL_TYPE_s32, + OIL_TYPE_u32, + OIL_TYPE_s64, + OIL_TYPE_u64, + OIL_TYPE_f32, + OIL_TYPE_f64, + OIL_TYPE_s8p, + OIL_TYPE_u8p, + OIL_TYPE_s16p, + OIL_TYPE_u16p, + OIL_TYPE_s32p, + OIL_TYPE_u32p, + OIL_TYPE_s64p, + OIL_TYPE_u64p, + OIL_TYPE_f32p, + OIL_TYPE_f64p, +} OilType; + + +OilArgType +typedef enum { + OIL_ARG_UNKNOWN = 0, + OIL_ARG_N, + OIL_ARG_M, + OIL_ARG_DEST1, + OIL_ARG_DSTR1, + OIL_ARG_DEST2, + OIL_ARG_DSTR2, + OIL_ARG_SRC1, + OIL_ARG_SSTR1, + OIL_ARG_SRC2, + OIL_ARG_SSTR2, + OIL_ARG_SRC3, + OIL_ARG_SSTR3, + OIL_ARG_SRC4, + OIL_ARG_SSTR4, + OIL_ARG_SRC5, + OIL_ARG_SSTR5, + OIL_ARG_INPLACE1, + OIL_ARG_ISTR1, + OIL_ARG_INPLACE2, + OIL_ARG_ISTR2, + + OIL_ARG_LAST +} OilArgType; + + +OilParameter +struct _OilParameter { + /*< private >*/ + char *type_name; + char *parameter_name; + + int order; + OilType type; + + int direction; + int is_pointer; + int is_stride; + int index; + int prestride_length; + int prestride_var; + int poststride_length; + int poststride_var; + + OilArgType parameter_type; + + void *src_data; + void *ref_data; + void *test_data; + unsigned long value; + + int pre_n; + int post_n; + int stride; + int size; + int guard; + int test_header; + int test_footer; +}; + + +oil_param_get_source_data +void * +OilParameter *param + + +oil_param_from_string +int +OilParameter *p, char *s + + +oil_type_is_floating_point +#define oil_type_is_floating_point(type) \ + (((type) == OIL_TYPE_f64p) || ((type) == OIL_TYPE_f32p)) + + +oil_random_s32 +void +oil_type_s32 *dest, int n + + +oil_random_s64 +void +oil_type_s64 *dest, int n + + +oil_random_s16 +void +oil_type_s16 *dest, int n + + +oil_random_s8 +void +oil_type_s8 *dest, int n + + +oil_random_u32 +void +oil_type_u32 *dest, int n + + +oil_random_u64 +void +oil_type_u64 *dest, int n + + +oil_random_u16 +void +oil_type_u16 *dest, int n + + +oil_random_u8 +void +oil_type_u8 *dest, int n + + +oil_random_f64 +void +oil_type_f64 *dest, int n + + +oil_random_f32 +void +oil_type_f32 *dest, int n + + +oil_random_argb +void +oil_type_u32 *dest, int n + + +oil_random_alpha +void +oil_type_u8 *dest, int n + + +oil_rand_s32 +#define oil_rand_s32() ((rand()&0xffff)<<16 | (rand()&0xffff)) + + +oil_rand_s64 +#define oil_rand_s64() ((int64_t)(oil_rand_s32())<<32 | oil_rand_s32()) + + +oil_rand_s16 +#define oil_rand_s16() ((int16_t)(rand()&0xffff)) + + +oil_rand_s8 +#define oil_rand_s8() ((int8_t)(rand()&0xffff)) + + +oil_rand_u32 +#define oil_rand_u32() ((uint32_t)((rand()&0xffff)<<16 | (rand()&0xffff))) + + +oil_rand_u64 +#define oil_rand_u64() ((uint64_t)(oil_rand_u32())<<32 | oil_rand_u32()) + + +oil_rand_u16 +#define oil_rand_u16() ((uint16_t)(rand()&0xffff)) + + +oil_rand_u8 +#define oil_rand_u8() ((uint8_t)(rand()&0xffff)) + + +oil_rand_f64 +#define oil_rand_f64() (((rand()/(RAND_MAX+1.0))+rand())/(RAND_MAX+1.0)) + + +oil_rand_f32 +#define oil_rand_f32() (rand()/(RAND_MAX+1.0)) + + +OilTest +struct _OilTest { + /*< private >*/ + OilFunctionClass *klass; + OilFunctionImpl *impl; + OilPrototype *proto; + OilParameter params[OIL_ARG_LAST]; + OilProfile prof; + + int iterations; + int n; + int m; + + int inited; + int tested_ref; + + double sum_abs_diff; + int n_points; + + double profile_ave; + double profile_std; + + double tolerance; +}; + + +OIL_TEST_HEADER +#define OIL_TEST_HEADER 256 + + +OIL_TEST_FOOTER +#define OIL_TEST_FOOTER 256 + + +oil_test_new +OilTest * +OilFunctionClass *klass + + +oil_test_free +void +OilTest *test + + +oil_test_set_iterations +void +OilTest *test, int iterations + + +oil_test_check_ref +void +OilTest *test + + +oil_test_check_impl +int +OilTest *test, OilFunctionImpl *impl + + +oil_test_cleanup +void +OilTest *test + + +oil_test_init +void +OilTest *test + + +oil_test_set_test_header +void +OilTest *test, OilParameter *p, int test_header + + +oil_test_set_test_footer +void +OilTest *test, OilParameter *p, int test_footer + + +oil_test_get_source_data +void * +OilTest *test, OilArgType arg_type + + +oil_test_get_arg_pre_n +int +OilTest *test, OilArgType arg_type + + +oil_test_get_arg_post_n +int +OilTest *test, OilArgType arg_type + + +oil_test_get_arg_stride +int +OilTest *test, OilArgType arg_type + + +oil_test_get_value +int +OilTest *test, OilArgType arg_type + + +OIL_PROFILE_HIST_LENGTH +#define OIL_PROFILE_HIST_LENGTH 10 + + +OilProfile + + +OilProfile +struct _OilProfile { + /*< private >*/ + unsigned long start; + unsigned long stop; + unsigned long min; + unsigned long last; + unsigned long total; + int n; + + int hist_n; + unsigned long hist_time[OIL_PROFILE_HIST_LENGTH]; + int hist_count[OIL_PROFILE_HIST_LENGTH]; +}; + + +oil_profile_stamp +unsigned long +void + + +oil_profile_init +void +OilProfile *prof + + +oil_profile_stop_handle +void +OilProfile *prof + + +oil_profile_get_ave_std +void +OilProfile *prof, double *ave_p, double *std_p + + +oil_profile_start +#define oil_profile_start(x) do{ \ + (x)->start = oil_profile_stamp(); \ +}while(0) + + +oil_profile_stop +#define oil_profile_stop(x) do{ \ + (x)->stop = oil_profile_stamp(); \ + oil_profile_stop_handle(x); \ +}while(0) + + +oil_max +#define oil_max(x,y) ((x)>(y)?(x):(y)) + + +oil_min +#define oil_min(x,y) ((x)<(y)?(x):(y)) + + +oil_clamp_255 +#define oil_clamp_255(x) oil_max(0,oil_min((x),255)) + + +oil_argb +#define oil_argb(a,r,g,b) \ + ((oil_clamp_255(a)<<24) | \ + (oil_clamp_255(r)<<16) | \ + (oil_clamp_255(g)<<8) | \ + (oil_clamp_255(b)<<0)) + + +oil_argb_noclamp +#define oil_argb_noclamp(a,r,g,b) \ + (((a)<<24) | ((r)<<16) | ((g)<<8) | ((b)<<0)) + + +oil_argb_A +#define oil_argb_A(color) (((color)>>24)&0xff) + + +oil_argb_R +#define oil_argb_R(color) (((color)>>16)&0xff) + + +oil_argb_G +#define oil_argb_G(color) (((color)>>8)&0xff) + + +oil_argb_B +#define oil_argb_B(color) (((color)>>0)&0xff) + + +oil_divide_255 +#define oil_divide_255(x) ((((x)+128) + (((x)+128)>>8))>>8) + + +oil_muldiv_255 +#define oil_muldiv_255(a,b) oil_divide_255((a)*(b)) + + +oil_abs_f32_f32 +void +float * dest, int dstr, const float * src, int sstr, int n + + +oil_abs_f64_f64 +void +double * dest, int dstr, const double * src, int sstr, int n + + +oil_abs_u16_s16 +void +uint16_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_abs_u32_s32 +void +uint32_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_abs_u8_s8 +void +uint8_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_add_const_rshift_s16 +void +int16_t * d1, const int16_t * s1, const int16_t * s2_2, int n + + +oil_add_f32 +void +float * d, const float * s1, const float * s2, int n + + +oil_add_s16 +void +int16_t * d, const int16_t * src1, const int16_t * src2, int n + + +oil_add_s16_u8 +void +int16_t * d, const int16_t * src1, const uint8_t * src2, int n + + +oil_argb_paint_u8 +void +uint8_t * i_4xn, const uint8_t * s1_4, const uint8_t * s2_n, int n + + +oil_average2_u8 +void +uint8_t * d, int dstr, const uint8_t * s1, int sstr1, const uint8_t * s2, int sstr2, int n + + +oil_ayuv2argb_u8 +void +uint8_t * d_4xn, const uint8_t * s_4xn, int n + + +oil_ayuv2uyvy +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_ayuv2yuyv +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_ayuv2yvyu +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_clamp_f32 +void +float * dest, const float * src, int n, const float * s2_1, const float * s3_1 + + +oil_clamp_f64 +void +double * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_clamp_s16 +void +int16_t * dest, const int16_t * src, int n, const int16_t * s2_1, const int16_t * s3_1 + + +oil_clamp_s32 +void +int32_t * dest, const int32_t * src, int n, const int32_t * s2_1, const int32_t * s3_1 + + +oil_clamp_s8 +void +int8_t * dest, const int8_t * src, int n, const int8_t * s2_1, const int8_t * s3_1 + + +oil_clamp_u16 +void +uint16_t * dest, const uint16_t * src, int n, const uint16_t * s2_1, const uint16_t * s3_1 + + +oil_clamp_u32 +void +uint32_t * dest, const uint32_t * src, int n, const uint32_t * s2_1, const uint32_t * s3_1 + + +oil_clamp_u8 +void +uint8_t * dest, const uint8_t * src, int n, const uint8_t * s2_1, const uint8_t * s3_1 + + +oil_clamphigh_f32 +void +float * dest, const float * src, int n, const float * s2_1 + + +oil_clamphigh_f64 +void +double * dest, const double * src, int n, const double * s2_1 + + +oil_clamphigh_s16 +void +int16_t * dest, const int16_t * src, int n, const int16_t * s2_1 + + +oil_clamphigh_s32 +void +int32_t * dest, const int32_t * src, int n, const int32_t * s2_1 + + +oil_clamphigh_s8 +void +int8_t * dest, const int8_t * src, int n, const int8_t * s2_1 + + +oil_clamphigh_u16 +void +uint16_t * dest, const uint16_t * src, int n, const uint16_t * s2_1 + + +oil_clamphigh_u32 +void +uint32_t * dest, const uint32_t * src, int n, const uint32_t * s2_1 + + +oil_clamphigh_u8 +void +uint8_t * dest, const uint8_t * src, int n, const uint8_t * s2_1 + + +oil_clamplow_f32 +void +float * dest, const float * src, int n, const float * s2_1 + + +oil_clamplow_f64 +void +double * dest, const double * src, int n, const double * s2_1 + + +oil_clamplow_s16 +void +int16_t * dest, const int16_t * src, int n, const int16_t * s2_1 + + +oil_clamplow_s32 +void +int32_t * dest, const int32_t * src, int n, const int32_t * s2_1 + + +oil_clamplow_s8 +void +int8_t * dest, const int8_t * src, int n, const int8_t * s2_1 + + +oil_clamplow_u16 +void +uint16_t * dest, const uint16_t * src, int n, const uint16_t * s2_1 + + +oil_clamplow_u32 +void +uint32_t * dest, const uint32_t * src, int n, const uint32_t * s2_1 + + +oil_clamplow_u8 +void +uint8_t * dest, const uint8_t * src, int n, const uint8_t * s2_1 + + +oil_clip_f32 +void +float * dest, int dstr, const float * src, int sstr, int n, const float * s2_1, const float * s3_1 + + +oil_clip_f64 +void +double * dest, int dstr, const double * src, int sstr, int n, const double * s2_1, const double * s3_1 + + +oil_clip_s16 +void +int16_t * dest, int dstr, const int16_t * src, int sstr, int n, const int16_t * s2_1, const int16_t * s3_1 + + +oil_clip_s32 +void +int32_t * dest, int dstr, const int32_t * src, int sstr, int n, const int32_t * s2_1, const int32_t * s3_1 + + +oil_clip_s8 +void +int8_t * dest, int dstr, const int8_t * src, int sstr, int n, const int8_t * s2_1, const int8_t * s3_1 + + +oil_clip_u16 +void +uint16_t * dest, int dstr, const uint16_t * src, int sstr, int n, const uint16_t * s2_1, const uint16_t * s3_1 + + +oil_clip_u32 +void +uint32_t * dest, int dstr, const uint32_t * src, int sstr, int n, const uint32_t * s2_1, const uint32_t * s3_1 + + +oil_clip_u8 +void +uint8_t * dest, int dstr, const uint8_t * src, int sstr, int n, const uint8_t * s2_1, const uint8_t * s3_1 + + +oil_clipconv8x8_u8_s16 +void +uint8_t * d_8x8, int dstr, const int16_t * s_8x8, int sstr + + +oil_clipconv_s16_f32 +void +int16_t * dest, int dstr, const float * src, int sstr, int n + + +oil_clipconv_s16_f64 +void +int16_t * dest, int dstr, const double * src, int sstr, int n + + +oil_clipconv_s16_s32 +void +int16_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_clipconv_s16_u16 +void +int16_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_clipconv_s16_u32 +void +int16_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_clipconv_s32_f32 +void +int32_t * dest, int dstr, const float * src, int sstr, int n + + +oil_clipconv_s32_f64 +void +int32_t * dest, int dstr, const double * src, int sstr, int n + + +oil_clipconv_s32_u32 +void +int32_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_clipconv_s8_f32 +void +int8_t * dest, int dstr, const float * src, int sstr, int n + + +oil_clipconv_s8_f64 +void +int8_t * dest, int dstr, const double * src, int sstr, int n + + +oil_clipconv_s8_s16 +void +int8_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_clipconv_s8_s32 +void +int8_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_clipconv_s8_u16 +void +int8_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_clipconv_s8_u32 +void +int8_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_clipconv_s8_u8 +void +int8_t * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_clipconv_u16_f32 +void +uint16_t * dest, int dstr, const float * src, int sstr, int n + + +oil_clipconv_u16_f64 +void +uint16_t * dest, int dstr, const double * src, int sstr, int n + + +oil_clipconv_u16_s16 +void +uint16_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_clipconv_u16_s32 +void +uint16_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_clipconv_u16_u32 +void +uint16_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_clipconv_u32_f32 +void +uint32_t * dest, int dstr, const float * src, int sstr, int n + + +oil_clipconv_u32_f64 +void +uint32_t * dest, int dstr, const double * src, int sstr, int n + + +oil_clipconv_u32_s32 +void +uint32_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_clipconv_u8_f32 +void +uint8_t * dest, int dstr, const float * src, int sstr, int n + + +oil_clipconv_u8_f64 +void +uint8_t * dest, int dstr, const double * src, int sstr, int n + + +oil_clipconv_u8_s16 +void +uint8_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_clipconv_u8_s32 +void +uint8_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_clipconv_u8_s8 +void +uint8_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_clipconv_u8_u16 +void +uint8_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_clipconv_u8_u32 +void +uint8_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_colorspace_argb +void +uint32_t * d, const uint32_t * s, const int16_t * s2_24, int n + + +oil_colsad8x8_u8 +void +uint32_t * d_1, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, int ss2 + + +oil_compare_u8 +void +uint32_t * d_1, const uint8_t * s1, const uint8_t * s2, int n + + +oil_composite_add_argb +void +uint32_t * i_n, const uint32_t * s1_n, int n + + +oil_composite_add_argb_const_src +void +uint32_t * i_n, const uint32_t * s1_1, int n + + +oil_composite_add_u8 +void +uint8_t * i_n, const uint8_t * s1_n, int n + + +oil_composite_add_u8_const_src +void +uint8_t * i_n, const uint8_t * s1_1, int n + + +oil_composite_in_argb +void +uint32_t * d_n, const uint32_t * s1_n, const uint8_t * s2_n, int n + + +oil_composite_in_argb_const_mask +void +uint32_t * d_n, const uint32_t * s1_n, const uint8_t * s2_1, int n + + +oil_composite_in_argb_const_src +void +uint32_t * d_n, const uint32_t * s1_1, const uint8_t * s2_n, int n + + +oil_composite_in_over_argb +void +uint32_t * i_n, const uint32_t * s1_n, const uint8_t * s2_n, int n + + +oil_composite_in_over_argb_const_mask +void +uint32_t * i_n, const uint32_t * s1_n, const uint8_t * s2_1, int n + + +oil_composite_in_over_argb_const_src +void +uint32_t * i_n, const uint32_t * s1_1, const uint8_t * s2_n, int n + + +oil_composite_over_argb +void +uint32_t * i_n, const uint32_t * s1_n, int n + + +oil_composite_over_argb_const_src +void +uint32_t * i_n, const uint32_t * s1_1, int n + + +oil_composite_over_u8 +void +uint8_t * i_n, const uint8_t * s1_n, int n + + +oil_conv8x8_f64_s16 +void +double * d_8x8, int dstr, const int16_t * s_8x8, int sstr + + +oil_conv8x8_s16_f64 +void +int16_t * d_8x8, int dstr, const double * s_8x8, int sstr + + +oil_conv_f32_f64 +void +float * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_f32_s16 +void +float * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_f32_s32 +void +float * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_f32_s8 +void +float * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_f32_u16 +void +float * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_f32_u32 +void +float * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_conv_f32_u8 +void +float * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_f64_f32 +void +double * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_f64_s16 +void +double * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_f64_s32 +void +double * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_f64_s8 +void +double * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_f64_u16 +void +double * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_f64_u32 +void +double * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_conv_f64_u8 +void +double * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_s16_f32 +void +int16_t * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_s16_f64 +void +int16_t * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_s16_s32 +void +int16_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_s16_s8 +void +int16_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_s16_u16 +void +int16_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_s16_u32 +void +int16_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_conv_s16_u8 +void +int16_t * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_s32_f32 +void +int32_t * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_s32_f64 +void +int32_t * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_s32_s16 +void +int32_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_s32_s8 +void +int32_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_s32_u16 +void +int32_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_s32_u32 +void +int32_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_conv_s32_u8 +void +int32_t * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_s8_f32 +void +int8_t * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_s8_f64 +void +int8_t * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_s8_s16 +void +int8_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_s8_s32 +void +int8_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_s8_u16 +void +int8_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_s8_u32 +void +int8_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_conv_s8_u8 +void +int8_t * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_u16_f32 +void +uint16_t * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_u16_f64 +void +uint16_t * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_u16_s16 +void +uint16_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_u16_s32 +void +uint16_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_u16_s8 +void +uint16_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_u16_u32 +void +uint16_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_conv_u16_u8 +void +uint16_t * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_u32_f32 +void +uint32_t * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_u32_f64 +void +uint32_t * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_u32_s16 +void +uint32_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_u32_s32 +void +uint32_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_u32_s8 +void +uint32_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_u32_u16 +void +uint32_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_u32_u8 +void +uint32_t * dest, int dstr, const uint8_t * src, int sstr, int n + + +oil_conv_u8_f32 +void +uint8_t * dest, int dstr, const float * src, int sstr, int n + + +oil_conv_u8_f64 +void +uint8_t * dest, int dstr, const double * src, int sstr, int n + + +oil_conv_u8_s16 +void +uint8_t * dest, int dstr, const int16_t * src, int sstr, int n + + +oil_conv_u8_s32 +void +uint8_t * dest, int dstr, const int32_t * src, int sstr, int n + + +oil_conv_u8_s8 +void +uint8_t * dest, int dstr, const int8_t * src, int sstr, int n + + +oil_conv_u8_u16 +void +uint8_t * dest, int dstr, const uint16_t * src, int sstr, int n + + +oil_conv_u8_u32 +void +uint8_t * dest, int dstr, const uint32_t * src, int sstr, int n + + +oil_convert_s16_f32 +void +int16_t * dest, const float * src, int n + + +oil_convert_s16_f64 +void +int16_t * dest, const double * src, int n + + +oil_convert_s16_s32 +void +int16_t * dest, const int32_t * src, int n + + +oil_convert_s16_s8 +void +int16_t * dest, const int8_t * src, int n + + +oil_convert_s16_u16 +void +int16_t * dest, const uint16_t * src, int n + + +oil_convert_s16_u32 +void +int16_t * dest, const uint32_t * src, int n + + +oil_convert_s16_u8 +void +int16_t * dest, const uint8_t * src, int n + + +oil_convert_s32_f64 +void +int32_t * dest, const double * src, int n + + +oil_convert_s32_s16 +void +int32_t * dest, const int16_t * src, int n + + +oil_convert_s32_s8 +void +int32_t * dest, const int8_t * src, int n + + +oil_convert_s32_u16 +void +int32_t * dest, const uint16_t * src, int n + + +oil_convert_s32_u32 +void +int32_t * dest, const uint32_t * src, int n + + +oil_convert_s32_u8 +void +int32_t * dest, const uint8_t * src, int n + + +oil_convert_s8_f32 +void +int8_t * dest, const float * src, int n + + +oil_convert_s8_f64 +void +int8_t * dest, const double * src, int n + + +oil_convert_s8_s16 +void +int8_t * dest, const int16_t * src, int n + + +oil_convert_s8_s32 +void +int8_t * dest, const int32_t * src, int n + + +oil_convert_s8_u16 +void +int8_t * dest, const uint16_t * src, int n + + +oil_convert_s8_u32 +void +int8_t * dest, const uint32_t * src, int n + + +oil_convert_s8_u8 +void +int8_t * dest, const uint8_t * src, int n + + +oil_convert_u16_f32 +void +uint16_t * dest, const float * src, int n + + +oil_convert_u16_f64 +void +uint16_t * dest, const double * src, int n + + +oil_convert_u16_s16 +void +uint16_t * dest, const int16_t * src, int n + + +oil_convert_u16_s32 +void +uint16_t * dest, const int32_t * src, int n + + +oil_convert_u16_u32 +void +uint16_t * dest, const uint32_t * src, int n + + +oil_convert_u16_u8 +void +uint16_t * dest, const uint8_t * src, int n + + +oil_convert_u32_f64 +void +uint32_t * dest, const double * src, int n + + +oil_convert_u32_s32 +void +uint32_t * dest, const int32_t * src, int n + + +oil_convert_u32_u16 +void +uint32_t * dest, const uint16_t * src, int n + + +oil_convert_u32_u8 +void +uint32_t * dest, const uint8_t * src, int n + + +oil_convert_u8_f32 +void +uint8_t * dest, const float * src, int n + + +oil_convert_u8_f64 +void +uint8_t * dest, const double * src, int n + + +oil_convert_u8_s16 +void +uint8_t * dest, const int16_t * src, int n + + +oil_convert_u8_s32 +void +uint8_t * dest, const int32_t * src, int n + + +oil_convert_u8_s8 +void +uint8_t * dest, const int8_t * src, int n + + +oil_convert_u8_u16 +void +uint8_t * dest, const uint16_t * src, int n + + +oil_convert_u8_u32 +void +uint8_t * dest, const uint32_t * src, int n + + +oil_copy8x8_u8 +void +uint8_t * d_8x8, int ds, const uint8_t * s_8x8, int ss + + +oil_copy_u8 +void +uint8_t * dest, const uint8_t * src, int n + + +oil_dct36_f32 +void +float * d_36, int dstr, const float * s_36, int sstr + + +oil_deinterleave +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_deinterleave2_s16 +void +int16_t * d1_n, int16_t * d2_n, const int16_t * s_2xn, int n + + +oil_dequantize8x8_s16 +void +int16_t * d_8x8, int dstr, const int16_t * s1_8x8, int sstr1, const int16_t * s2_8x8, int sstr2 + + +oil_diff8x8_average_s16_u8 +void +int16_t * d_8x8, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, int ss2, const uint8_t * s3_8x8, int ss3 + + +oil_diff8x8_const128_s16_u8 +void +int16_t * d_8x8, const uint8_t * s1_8x8, int ss1 + + +oil_diff8x8_s16_u8 +void +int16_t * d_8x8, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, int ss2 + + +oil_diffsquaresum_f64 +void +double * d_1, const double * src1, int sstr1, const double * src2, int sstr2, int n + + +oil_divide_f32 +void +float * d, const float * s1, const float * s2, int n + + +oil_err_inter8x8_u8 +void +uint32_t * d_1, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, int ss2 + + +oil_err_inter8x8_u8_avg +void +uint32_t * d_1, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, const uint8_t * s3_8x8, int ss2 + + +oil_err_intra8x8_u8 +void +uint32_t * d_1, const uint8_t * s1_8x8, int ss1 + + +oil_fdct8_f64 +void +double * d_8, const double * s_8, int dstr, int sstr + + +oil_fdct8x8_f64 +void +double * d_8x8, int dstr, const double * s_8x8, int sstr + + +oil_fdct8x8s_s16 +void +int16_t * d_8x8, int ds, const int16_t * s_8x8, int ss + + +oil_fdct8x8theora +void +const int16_t * s_8x8, int16_t * d_8x8 + + +oil_floor_f32 +void +float * d, const float * s, int n + + +oil_idct8_f64 +void +double * d_8, int dstr, const double * s_8, int sstr + + +oil_idct8theora_s16 +void +int16_t * d_8, int dstr, const int16_t * s_8, int sstr + + +oil_idct8x8_f64 +void +double * d_8x8, int dstr, const double * s_8x8, int sstr + + +oil_idct8x8_s16 +void +int16_t * d_8x8, int dstr, const int16_t * s_8x8, int sstr + + +oil_idct8x8lim10_f64 +void +double * d_8x8, int dstr, const double * s_8x8, int sstr + + +oil_idct8x8lim10_s16 +void +int16_t * d_8x8, int dstr, const int16_t * s_8x8, int sstr + + +oil_idct8x8theora_s16 +void +int16_t * d_8x8, int dstr, const int16_t * s_8x8, int sstr + + +oil_imdct12_f64 +void +double * d_12, const double * s_6 + + +oil_imdct32_f32 +void +float * d_32, const float * s_32 + + +oil_imdct36_f64 +void +double * d_36, const double * s_18 + + +oil_interleave +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_interleave2_s16 +void +int16_t * d_2xn, const int16_t * s1_n, const int16_t * s2_n, int n + + +oil_inverse_f32 +void +float * d, const float * s, int n + + +oil_lift_add_135 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, const int16_t * s4, const int16_t * s5, int n + + +oil_lift_add_mult_shift12 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, const int16_t * s4_1, int n + + +oil_lift_add_shift1 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, int n + + +oil_lift_add_shift2 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, int n + + +oil_lift_sub_135 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, const int16_t * s4, const int16_t * s5, int n + + +oil_lift_sub_mult_shift12 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, const int16_t * s4_1, int n + + +oil_lift_sub_shift1 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, int n + + +oil_lift_sub_shift2 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, int n + + +oil_lshift_s16 +void +int16_t * d1, const int16_t * s1, const int16_t * s2_1, int n + + +oil_mas2_across_add_s16 +void +int16_t * d, const int16_t * s1, const int16_t * s2, const int16_t * s3, const int16_t * s4_2, const int16_t * s5_2, int n + + +oil_mas2_add_s16 +void +int16_t * d, const int16_t * s1, const int16_t * s2_np1, const int16_t * s3_2, const int16_t * s4_2, int n + + +oil_mas4_across_add_s16 +void +int16_t * d, const int16_t * s1, const int16_t * s2_nx4, int sstr2, const int16_t * s3_4, const int16_t * s4_2, int n + + +oil_mas4_add_s16 +void +int16_t * d, const int16_t * s1, const int16_t * s2_np3, const int16_t * s3_4, const int16_t * s4_2, int n + + +oil_mas8_across_add_s16 +void +int16_t * d, const int16_t * s1, const int16_t * s2_nx8, int sstr2, const int16_t * s3_8, const int16_t * s4_2, int n + + +oil_mas8_add_s16 +void +int16_t * d, const int16_t * s1, const int16_t * s2_np7, const int16_t * s3_8, const int16_t * s4_2, int n + + +oil_maximum_f32 +void +float * d, const float * s1, const float * s2, int n + + +oil_md5 +void +uint32_t * i_4, const uint32_t * s_16 + + +oil_mdct12_f64 +void +double * d_6, const double * s_12 + + +oil_mdct36_f64 +void +double * d_18, const double * s_36 + + +oil_merge_linear_argb +void +uint32_t * d_n, const uint32_t * s_n, const uint32_t * s2_n, const uint32_t * s3_1, int n + + +oil_merge_linear_u8 +void +uint8_t * d_n, const uint8_t * s_n, const uint8_t * s2_n, const uint32_t * s3_1, int n + + +oil_minimum_f32 +void +float * d, const float * s1, const float * s2, int n + + +oil_mix_u8 +void +uint8_t * dest, const uint8_t * src1, const uint8_t * src2, const uint8_t * src3, int n + + +oil_mt19937 +void +uint32_t * d_624, uint32_t * i_624 + + +oil_mult8x8_s16 +void +int16_t * d_8x8, const int16_t * s1_8x8, const int16_t * s2_8x8, int ds, int ss1, int ss2 + + +oil_multiply_and_acc_12xn_s16_u8 +void +int16_t * i1_12xn, int is1, const int16_t * s1_12xn, int ss1, const uint8_t * s2_12xn, int ss2, int n + + +oil_multiply_and_add_s16 +void +int16_t * d, const int16_t * src1, const int16_t * src2, const int16_t * src3, int n + + +oil_multiply_and_add_s16_u8 +void +int16_t * d, const int16_t * src1, const int16_t * src2, const uint8_t * src3, int n + + +oil_multiply_f32 +void +float * d, const float * s1, const float * s2, int n + + +oil_multsum_f32 +void +float * dest, const float * src1, int sstr1, const float * src2, int sstr2, int n + + +oil_multsum_f64 +void +double * dest, const double * src1, int sstr1, const double * src2, int sstr2, int n + + +oil_negative_f32 +void +float * d, const float * s, int n + + +oil_null +void + + + +oil_permute_f32 +void +float * dest, int dstr, const float * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_f64 +void +double * dest, int dstr, const double * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_s16 +void +int16_t * dest, int dstr, const int16_t * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_s32 +void +int32_t * dest, int dstr, const int32_t * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_s8 +void +int8_t * dest, int dstr, const int8_t * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_u16 +void +uint16_t * dest, int dstr, const uint16_t * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_u32 +void +uint32_t * dest, int dstr, const uint32_t * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_permute_u8 +void +uint8_t * dest, int dstr, const uint8_t * src1, int sstr1, const int32_t * src2, int sstr2, int n + + +oil_recon8x8_inter +void +uint8_t * d_8x8, int ds, const uint8_t * s1_8x8, int ss1, const int16_t * s2_8x8 + + +oil_recon8x8_inter2 +void +uint8_t * d_8x8, int ds, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, int ss2, const int16_t * s3_8x8 + + +oil_recon8x8_intra +void +uint8_t * d_8x8, int ds, const int16_t * s_8x8 + + +oil_resample_linear_argb +void +uint32_t * d_n, const uint32_t * s_2xn, int n, uint32_t * i_2 + + +oil_resample_linear_u8 +void +uint8_t * d_n, const uint8_t * s_2xn, int n, uint32_t * i_2 + + +oil_rgb2bgr +void +uint8_t * d_3xn, const uint8_t * s_3xn, int n + + +oil_rgb2rgba +void +uint8_t * d_4xn, const uint8_t * s_3xn, int n + + +oil_rgb565_to_argb +void +uint32_t * d, const uint16_t * s, int n + + +oil_rowsad8x8_u8 +void +uint32_t * d_1, const uint8_t * s1_8x8, const uint8_t * s2_8x8 + + +oil_sad8x8_f64 +void +double * d_8x8, int ds, const double * s1_8x8, int ss1, const double * s2_8x8, int ss2 + + +oil_sad8x8_f64_2 +void +double * d_1, const double * s1_8x8, int ss1, const double * s2_8x8, int ss2 + + +oil_sad8x8_s16 +void +uint32_t * d_8x8, int ds, const int16_t * s1_8x8, int ss1, const int16_t * s2_8x8, int ss2 + + +oil_sad8x8_s16_2 +void +uint32_t * d_1, const int16_t * s1_8x8, int ss1, const int16_t * s2_8x8, int ss2 + + +oil_sad8x8_u8 +void +uint32_t * d_1, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, int ss2 + + +oil_sad8x8_u8_avg +void +uint32_t * d_1, const uint8_t * s1_8x8, int ss1, const uint8_t * s2_8x8, const uint8_t * s3_8x8, int ss2 + + +oil_scalaradd_f32 +void +float * d, int dstr, const float * s1, int sstr, const float * s2_1, int n + + +oil_scalaradd_f32_ns +void +float * d, const float * s1, const float * s2_1, int n + + +oil_scalaradd_f64 +void +double * d, int dstr, const double * s1, int sstr, const double * s2_1, int n + + +oil_scalaradd_s16 +void +int16_t * d, int dstr, const int16_t * s1, int sstr, const int16_t * s2_1, int n + + +oil_scalaradd_s32 +void +int32_t * d, int dstr, const int32_t * s1, int sstr, const int32_t * s2_1, int n + + +oil_scalaradd_s8 +void +int8_t * d, int dstr, const int8_t * s1, int sstr, const int8_t * s2_1, int n + + +oil_scalaradd_u16 +void +uint16_t * d, int dstr, const uint16_t * s1, int sstr, const uint16_t * s2_1, int n + + +oil_scalaradd_u32 +void +uint32_t * d, int dstr, const uint32_t * s1, int sstr, const uint32_t * s2_1, int n + + +oil_scalaradd_u8 +void +uint8_t * d, int dstr, const uint8_t * s1, int sstr, const uint8_t * s2_1, int n + + +oil_scalarmult_f32 +void +float * d, int dstr, const float * s1, int sstr, const float * s2_1, int n + + +oil_scalarmult_f64 +void +double * d, int dstr, const double * s1, int sstr, const double * s2_1, int n + + +oil_scalarmult_s16 +void +int16_t * d, int dstr, const int16_t * s1, int sstr, const int16_t * s2_1, int n + + +oil_scalarmult_s32 +void +int32_t * d, int dstr, const int32_t * s1, int sstr, const int32_t * s2_1, int n + + +oil_scalarmult_s8 +void +int8_t * d, int dstr, const int8_t * s1, int sstr, const int8_t * s2_1, int n + + +oil_scalarmult_u16 +void +uint16_t * d, int dstr, const uint16_t * s1, int sstr, const uint16_t * s2_1, int n + + +oil_scalarmult_u32 +void +uint32_t * d, int dstr, const uint32_t * s1, int sstr, const uint32_t * s2_1, int n + + +oil_scalarmult_u8 +void +uint8_t * d, int dstr, const uint8_t * s1, int sstr, const uint8_t * s2_1, int n + + +oil_scalarmultiply_f32_ns +void +float * d, const float * s1, const float * s2_1, int n + + +oil_scaleconv_f32_s16 +void +float * dest, const int16_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f32_s32 +void +float * dest, const int32_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f32_s8 +void +float * dest, const int8_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f32_u16 +void +float * dest, const uint16_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f32_u32 +void +float * dest, const uint32_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f32_u8 +void +float * dest, const uint8_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f64_s16 +void +double * dest, const int16_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f64_s32 +void +double * dest, const int32_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f64_s8 +void +double * dest, const int8_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f64_u16 +void +double * dest, const uint16_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f64_u32 +void +double * dest, const uint32_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_f64_u8 +void +double * dest, const uint8_t * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_s16_f32 +void +int16_t * dest, const float * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_s16_f64 +void +int16_t * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_s32_f32 +void +int32_t * dest, const float * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_s32_f64 +void +int32_t * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_s8_f32 +void +int8_t * dest, const float * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_s8_f64 +void +int8_t * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_u16_f32 +void +uint16_t * dest, const float * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_u16_f64 +void +uint16_t * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_u32_f32 +void +uint32_t * dest, const float * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_u32_f64 +void +uint32_t * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_u8_f32 +void +uint8_t * dest, const float * src, int n, const double * s2_1, const double * s3_1 + + +oil_scaleconv_u8_f64 +void +uint8_t * dest, const double * src, int n, const double * s2_1, const double * s3_1 + + +oil_scanlinescale2_u8 +void +uint8_t * d, const uint8_t * s, int n + + +oil_sign_f32 +void +float * d, const float * s, int n + + +oil_sincos_f64 +void +double * dest1, double * dest2, int n, const double * s1_1, const double * s2_1 + + +oil_splat_u16_ns +void +uint16_t * dest, const uint16_t * s1_1, int n + + +oil_splat_u32 +void +uint32_t * dest, int dstr, const uint32_t * s1_1, int n + + +oil_splat_u32_ns +void +uint32_t * dest, const uint32_t * s1_1, int n + + +oil_splat_u8 +void +uint8_t * dest, int dstr, const uint8_t * s1_1, int n + + +oil_splat_u8_ns +void +uint8_t * dest, const uint8_t * s1_1, int n + + +oil_split_135 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_split_53 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_split_approx97 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_split_daub97 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_squaresum_f64 +void +double * d, const double * s, int n + + +oil_squaresum_shifted_s16 +void +uint32_t * d, const int16_t * s, int n + + +oil_subtract_f32 +void +float * d, const float * s1, const float * s2, int n + + +oil_subtract_s16 +void +int16_t * d, const int16_t * src1, const int16_t * src2, int n + + +oil_subtract_s16_u8 +void +int16_t * d, const int16_t * src1, const uint8_t * src2, int n + + +oil_sum_f64 +void +double * d_1, const double * s, int sstr, int n + + +oil_sum_s16 +void +int16_t * d_1, const int16_t * s, int n + + +oil_swab_u16 +void +uint16_t * d_n, const uint16_t * s_n, int n + + +oil_swab_u32 +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_synth_135 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_synth_53 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_synth_approx97 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_synth_daub97 +void +int16_t * d_2xn, const int16_t * s_2xn, int n + + +oil_tablelookup_u8 +void +uint8_t * d, int ds, const uint8_t * s1, int ss1, const uint8_t * s2_256, int ss2, int n + + +oil_testzero_u8 +void +uint32_t * d_1, const uint8_t * s, int n + + +oil_trans8x8_f64 +void +double * d_8x8, int ds, const double * s_8x8, int ss + + +oil_trans8x8_u16 +void +uint16_t * d_8x8, int ds, const uint16_t * s_8x8, int ss + + +oil_trans8x8_u32 +void +uint32_t * d_8x8, int ds, const uint32_t * s_8x8, int ss + + +oil_trans8x8_u8 +void +uint8_t * d_8x8, int ds, const uint8_t * s_8x8, int ss + + +oil_unzigzag8x8_s16 +void +int16_t * d_8x8, int ds, const int16_t * s_8x8, int ss + + +oil_utf8_validate +void +int32_t * d_1, const uint8_t * s, int n + + +oil_uyvy2ayuv +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_vectoradd_f32 +void +float * d, int dstr, const float * s1, int sstr1, const float * s2, int sstr2, int n, const float * s3_1, const float * s4_1 + + +oil_vectoradd_f64 +void +double * d, int dstr, const double * s1, int sstr1, const double * s2, int sstr2, int n, const double * s3_1, const double * s4_1 + + +oil_vectoradd_s16 +void +int16_t * d, int dstr, const int16_t * s1, int sstr1, const int16_t * s2, int sstr2, int n, const int16_t * s3_1, const int16_t * s4_1 + + +oil_vectoradd_s32 +void +int32_t * d, int dstr, const int32_t * s1, int sstr1, const int32_t * s2, int sstr2, int n, const int32_t * s3_1, const int32_t * s4_1 + + +oil_vectoradd_s8 +void +int8_t * d, int dstr, const int8_t * s1, int sstr1, const int8_t * s2, int sstr2, int n, const int8_t * s3_1, const int8_t * s4_1 + + +oil_vectoradd_s_f32 +void +float * d, int dstr, const float * s1, int sstr1, const float * s2, int sstr2, int n + + +oil_vectoradd_s_f64 +void +double * d, int dstr, const double * s1, int sstr1, const double * s2, int sstr2, int n + + +oil_vectoradd_s_s16 +void +int16_t * d, int dstr, const int16_t * s1, int sstr1, const int16_t * s2, int sstr2, int n + + +oil_vectoradd_s_s8 +void +int8_t * d, int dstr, const int8_t * s1, int sstr1, const int8_t * s2, int sstr2, int n + + +oil_vectoradd_s_u16 +void +uint16_t * d, int dstr, const uint16_t * s1, int sstr1, const uint16_t * s2, int sstr2, int n + + +oil_vectoradd_s_u8 +void +uint8_t * d, int dstr, const uint8_t * s1, int sstr1, const uint8_t * s2, int sstr2, int n + + +oil_vectoradd_u16 +void +uint16_t * d, int dstr, const uint16_t * s1, int sstr1, const uint16_t * s2, int sstr2, int n, const uint16_t * s3_1, const uint16_t * s4_1 + + +oil_vectoradd_u32 +void +uint32_t * d, int dstr, const uint32_t * s1, int sstr1, const uint32_t * s2, int sstr2, int n, const uint32_t * s3_1, const uint32_t * s4_1 + + +oil_vectoradd_u8 +void +uint8_t * d, int dstr, const uint8_t * s1, int sstr1, const uint8_t * s2, int sstr2, int n, const uint8_t * s3_1, const uint8_t * s4_1 + + +oil_yuv2rgbx_sub2_u8 +void +uint8_t * d_4xn, const uint8_t * src1, const uint8_t * src2, const uint8_t * src3, int n + + +oil_yuv2rgbx_sub4_u8 +void +uint8_t * d_4xn, const uint8_t * src1, const uint8_t * src2, const uint8_t * src3, int n + + +oil_yuv2rgbx_u8 +void +uint8_t * d_4xn, const uint8_t * src1, const uint8_t * src2, const uint8_t * src3, int n + + +oil_yuyv2ayuv +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_yvyu2ayuv +void +uint32_t * d_n, const uint32_t * s_n, int n + + +oil_zigzag8x8_s16 +void +int16_t * d_8x8, int ds, const int16_t * s_8x8, int ss + + +OIL_SSE_WRAPPER +#define OIL_SSE_WRAPPER(func) \ +static void func () __attribute__ ((used)); \ +static void func ## _wrapper (void) \ +{ \ + __asm__ __volatile__ ("\n" \ + " subl $0x20, %%esp\n" \ + " andl $0xfffffff0, %%esp\n" \ + " movdqu 0x08(%%ebp), %%xmm0\n" \ + " movdqa %%xmm0, 0x00(%%esp)\n" \ + " movdqu 0x18(%%ebp), %%xmm0\n" \ + " movdqa %%xmm0, 0x10(%%esp)\n" \ + " call " #func "\n" \ + " movl %%ebp, %%esp\n" \ + : : : "xmm0"); \ + (void)&func; \ +} + + +OIL_DEFINE_IMPL_FULL_WRAPPER +#define OIL_DEFINE_IMPL_FULL_WRAPPER(func,klass,flags) \ +OIL_SSE_WRAPPER(func) \ +OIL_DEFINE_IMPL_FULL(func ## _wrapper, klass, flags) + + +OIL_DEFINE_IMPL_FULL_WRAPPER +#define OIL_DEFINE_IMPL_FULL_WRAPPER(func,klass,flags) \ +OIL_DEFINE_IMPL_FULL(func, klass, flags) + --- liboil-0.3.11.orig/doc/xml/tree_index.sgml +++ liboil-0.3.11/doc/xml/tree_index.sgml @@ -0,0 +1,6 @@ + + + + --- liboil-0.3.11.orig/doc/xml/liboil-doc.bottom +++ liboil-0.3.11/doc/xml/liboil-doc.bottom @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + --- liboil-0.3.11.orig/doc/xml/liboilfuncs-doc.xml +++ liboil-0.3.11/doc/xml/liboilfuncs-doc.xml @@ -97,7 +97,7 @@ const uint8_t *src2, const uint8_t *src3, int n); -void oil_null (void); +void oil_null (); void oil_scanlinescale2_u8 (uint8_t *d, const uint8_t *s, int n); @@ -624,7 +624,7 @@ <anchor id="oil-null" role="function"/>oil_null () -oil_nullvoid oil_null (void); +oil_nullvoid oil_null (); Does nothing, and does it fast. --- liboil-0.3.11.orig/doc/xml/object_index.sgml +++ liboil-0.3.11/doc/xml/object_index.sgml @@ -0,0 +1,8 @@ + + + + + + + + --- liboil-0.3.11.orig/doc/liboil-decl-list.txt +++ liboil-0.3.11/doc/liboil-decl-list.txt @@ -0,0 +1,618 @@ +
+liboil +oil_init +oil_memcpy +oil_trans8x8_s16 +
+ +
+liboilfunction +OIL_CHECK_PROTOTYPE +OIL_OPT_MANGLE +OIL_OPT_FLAG_MANGLE +OIL_NO_CLASSES +OIL_OPT_SUFFIX +OilFunction +OilFunctionImpl +OIL_GET +OIL_OFFSET +OIL_INCREMENT +OilImplFlag +OIL_CPU_FLAG_MASK +OIL_DECLARE_CLASS +OIL_DEFINE_CLASS_FULL +OIL_DEFINE_CLASS +OIL_DEFINE_IMPL_FULL +OIL_DEFINE_IMPL +OIL_DEFINE_IMPL_REF +OIL_DEFINE_IMPL_ASM +OIL_DEFINE_IMPL_DEPENDS +oil_optimize_all +oil_optimize +oil_class_get_by_index +oil_class_get +oil_class_optimize +oil_class_get_n_classes +oil_impl_get_by_index +oil_impl_is_runnable +oil_class_choose_by_name +oil_class_register_impl_full +oil_class_register_impl +oil_class_register_impl_by_name +oil_init_no_optimize +
+ +
+liboildebug +OilDebugPrintFunc +OilDebugLevel +OIL_ERROR +OIL_WARNING +OIL_INFO +OIL_DEBUG +OIL_LOG +OIL_FUNCTION +OIL_DEBUG_PRINT +oil_debug_set_print_function +oil_debug_get_level +oil_debug_set_level +oil_debug_print +
+ +
+liboiltypes +NULL +OilFunctionClass +OilFunctionImpl +OilParameter +OilTest +OilTestFunction +oil_type_s8 +oil_type_u8 +oil_type_s16 +oil_type_u16 +oil_type_s32 +oil_type_u32 +oil_type_s64 +oil_type_u64 +oil_type_f32 +oil_type_f64 +oil_type_min_s8 +oil_type_min_u8 +oil_type_min_s16 +oil_type_min_u16 +oil_type_min_s32 +oil_type_min_u32 +oil_type_max_s8 +oil_type_max_u8 +oil_type_max_s16 +oil_type_max_u16 +oil_type_max_s32 +oil_type_max_u32 +
+ +
+liboilcpu +oil_cpu_get_flags +oil_cpu_fault_check_enable +oil_cpu_fault_check_disable +oil_cpu_fault_check_try +oil_cpu_get_ticks_per_second +
+ +
+liboilprototype +OilPrototype +oil_prototype_from_string +oil_prototype_to_string +oil_prototype_to_arg_string +oil_prototype_free +oil_prototype_append_param +oil_type_sizeof +oil_type_name +oil_arg_type_name +
+ +
+liboilparameter +OilType +OilArgType +OilParameter +oil_param_get_source_data +oil_param_from_string +oil_type_is_floating_point +
+ +
+liboilrandom +oil_random_s32 +oil_random_s64 +oil_random_s16 +oil_random_s8 +oil_random_u32 +oil_random_u64 +oil_random_u16 +oil_random_u8 +oil_random_f64 +oil_random_f32 +oil_random_argb +oil_random_alpha +oil_rand_s32 +oil_rand_s64 +oil_rand_s16 +oil_rand_s8 +oil_rand_u32 +oil_rand_u64 +oil_rand_u16 +oil_rand_u8 +oil_rand_f64 +oil_rand_f32 +
+ +
+liboilgcc +
+ +
+liboiltest +OilTest +OIL_TEST_HEADER +OIL_TEST_FOOTER +oil_test_new +oil_test_free +oil_test_set_iterations +oil_test_check_ref +oil_test_check_impl +oil_test_cleanup +oil_test_init +oil_test_set_test_header +oil_test_set_test_footer +oil_test_get_source_data +oil_test_get_arg_pre_n +oil_test_get_arg_post_n +oil_test_get_arg_stride +oil_test_get_value +
+ +
+liboilprofile +OIL_PROFILE_HIST_LENGTH +OilProfile +oil_profile_stamp +oil_profile_init +oil_profile_stop_handle +oil_profile_get_ave_std +oil_profile_start +oil_profile_stop +
+ +
+liboilinternal +
+ +
+liboilclasses +
+ +
+liboilcolorspace +oil_max +oil_min +oil_clamp_255 +oil_argb +oil_argb_noclamp +oil_argb_A +oil_argb_R +oil_argb_G +oil_argb_B +oil_divide_255 +oil_muldiv_255 +
+ +
+liboilfuncs-doc +oil_abs_f32_f32 +oil_abs_f64_f64 +oil_abs_u16_s16 +oil_abs_u32_s32 +oil_abs_u8_s8 +oil_add_const_rshift_s16 +oil_add_f32 +oil_add_s16 +oil_add_s16_u8 +oil_argb_paint_u8 +oil_average2_u8 +oil_ayuv2argb_u8 +oil_ayuv2uyvy +oil_ayuv2yuyv +oil_ayuv2yvyu +oil_clamp_f32 +oil_clamp_f64 +oil_clamp_s16 +oil_clamp_s32 +oil_clamp_s8 +oil_clamp_u16 +oil_clamp_u32 +oil_clamp_u8 +oil_clamphigh_f32 +oil_clamphigh_f64 +oil_clamphigh_s16 +oil_clamphigh_s32 +oil_clamphigh_s8 +oil_clamphigh_u16 +oil_clamphigh_u32 +oil_clamphigh_u8 +oil_clamplow_f32 +oil_clamplow_f64 +oil_clamplow_s16 +oil_clamplow_s32 +oil_clamplow_s8 +oil_clamplow_u16 +oil_clamplow_u32 +oil_clamplow_u8 +oil_clip_f32 +oil_clip_f64 +oil_clip_s16 +oil_clip_s32 +oil_clip_s8 +oil_clip_u16 +oil_clip_u32 +oil_clip_u8 +oil_clipconv8x8_u8_s16 +oil_clipconv_s16_f32 +oil_clipconv_s16_f64 +oil_clipconv_s16_s32 +oil_clipconv_s16_u16 +oil_clipconv_s16_u32 +oil_clipconv_s32_f32 +oil_clipconv_s32_f64 +oil_clipconv_s32_u32 +oil_clipconv_s8_f32 +oil_clipconv_s8_f64 +oil_clipconv_s8_s16 +oil_clipconv_s8_s32 +oil_clipconv_s8_u16 +oil_clipconv_s8_u32 +oil_clipconv_s8_u8 +oil_clipconv_u16_f32 +oil_clipconv_u16_f64 +oil_clipconv_u16_s16 +oil_clipconv_u16_s32 +oil_clipconv_u16_u32 +oil_clipconv_u32_f32 +oil_clipconv_u32_f64 +oil_clipconv_u32_s32 +oil_clipconv_u8_f32 +oil_clipconv_u8_f64 +oil_clipconv_u8_s16 +oil_clipconv_u8_s32 +oil_clipconv_u8_s8 +oil_clipconv_u8_u16 +oil_clipconv_u8_u32 +oil_colorspace_argb +oil_colsad8x8_u8 +oil_compare_u8 +oil_composite_add_argb +oil_composite_add_argb_const_src +oil_composite_add_u8 +oil_composite_add_u8_const_src +oil_composite_in_argb +oil_composite_in_argb_const_mask +oil_composite_in_argb_const_src +oil_composite_in_over_argb +oil_composite_in_over_argb_const_mask +oil_composite_in_over_argb_const_src +oil_composite_over_argb +oil_composite_over_argb_const_src +oil_composite_over_u8 +oil_conv8x8_f64_s16 +oil_conv8x8_s16_f64 +oil_conv_f32_f64 +oil_conv_f32_s16 +oil_conv_f32_s32 +oil_conv_f32_s8 +oil_conv_f32_u16 +oil_conv_f32_u32 +oil_conv_f32_u8 +oil_conv_f64_f32 +oil_conv_f64_s16 +oil_conv_f64_s32 +oil_conv_f64_s8 +oil_conv_f64_u16 +oil_conv_f64_u32 +oil_conv_f64_u8 +oil_conv_s16_f32 +oil_conv_s16_f64 +oil_conv_s16_s32 +oil_conv_s16_s8 +oil_conv_s16_u16 +oil_conv_s16_u32 +oil_conv_s16_u8 +oil_conv_s32_f32 +oil_conv_s32_f64 +oil_conv_s32_s16 +oil_conv_s32_s8 +oil_conv_s32_u16 +oil_conv_s32_u32 +oil_conv_s32_u8 +oil_conv_s8_f32 +oil_conv_s8_f64 +oil_conv_s8_s16 +oil_conv_s8_s32 +oil_conv_s8_u16 +oil_conv_s8_u32 +oil_conv_s8_u8 +oil_conv_u16_f32 +oil_conv_u16_f64 +oil_conv_u16_s16 +oil_conv_u16_s32 +oil_conv_u16_s8 +oil_conv_u16_u32 +oil_conv_u16_u8 +oil_conv_u32_f32 +oil_conv_u32_f64 +oil_conv_u32_s16 +oil_conv_u32_s32 +oil_conv_u32_s8 +oil_conv_u32_u16 +oil_conv_u32_u8 +oil_conv_u8_f32 +oil_conv_u8_f64 +oil_conv_u8_s16 +oil_conv_u8_s32 +oil_conv_u8_s8 +oil_conv_u8_u16 +oil_conv_u8_u32 +oil_convert_s16_f32 +oil_convert_s16_f64 +oil_convert_s16_s32 +oil_convert_s16_s8 +oil_convert_s16_u16 +oil_convert_s16_u32 +oil_convert_s16_u8 +oil_convert_s32_f64 +oil_convert_s32_s16 +oil_convert_s32_s8 +oil_convert_s32_u16 +oil_convert_s32_u32 +oil_convert_s32_u8 +oil_convert_s8_f32 +oil_convert_s8_f64 +oil_convert_s8_s16 +oil_convert_s8_s32 +oil_convert_s8_u16 +oil_convert_s8_u32 +oil_convert_s8_u8 +oil_convert_u16_f32 +oil_convert_u16_f64 +oil_convert_u16_s16 +oil_convert_u16_s32 +oil_convert_u16_u32 +oil_convert_u16_u8 +oil_convert_u32_f64 +oil_convert_u32_s32 +oil_convert_u32_u16 +oil_convert_u32_u8 +oil_convert_u8_f32 +oil_convert_u8_f64 +oil_convert_u8_s16 +oil_convert_u8_s32 +oil_convert_u8_s8 +oil_convert_u8_u16 +oil_convert_u8_u32 +oil_copy8x8_u8 +oil_copy_u8 +oil_dct36_f32 +oil_deinterleave +oil_deinterleave2_s16 +oil_dequantize8x8_s16 +oil_diff8x8_average_s16_u8 +oil_diff8x8_const128_s16_u8 +oil_diff8x8_s16_u8 +oil_diffsquaresum_f64 +oil_divide_f32 +oil_err_inter8x8_u8 +oil_err_inter8x8_u8_avg +oil_err_intra8x8_u8 +oil_fdct8_f64 +oil_fdct8x8_f64 +oil_fdct8x8s_s16 +oil_fdct8x8theora +oil_floor_f32 +oil_idct8_f64 +oil_idct8theora_s16 +oil_idct8x8_f64 +oil_idct8x8_s16 +oil_idct8x8lim10_f64 +oil_idct8x8lim10_s16 +oil_idct8x8theora_s16 +oil_imdct12_f64 +oil_imdct32_f32 +oil_imdct36_f64 +oil_interleave +oil_interleave2_s16 +oil_inverse_f32 +oil_lift_add_135 +oil_lift_add_mult_shift12 +oil_lift_add_shift1 +oil_lift_add_shift2 +oil_lift_sub_135 +oil_lift_sub_mult_shift12 +oil_lift_sub_shift1 +oil_lift_sub_shift2 +oil_lshift_s16 +oil_mas2_across_add_s16 +oil_mas2_add_s16 +oil_mas4_across_add_s16 +oil_mas4_add_s16 +oil_mas8_across_add_s16 +oil_mas8_add_s16 +oil_maximum_f32 +oil_md5 +oil_mdct12_f64 +oil_mdct36_f64 +oil_merge_linear_argb +oil_merge_linear_u8 +oil_minimum_f32 +oil_mix_u8 +oil_mt19937 +oil_mult8x8_s16 +oil_multiply_and_acc_12xn_s16_u8 +oil_multiply_and_add_s16 +oil_multiply_and_add_s16_u8 +oil_multiply_f32 +oil_multsum_f32 +oil_multsum_f64 +oil_negative_f32 +oil_null +oil_permute_f32 +oil_permute_f64 +oil_permute_s16 +oil_permute_s32 +oil_permute_s8 +oil_permute_u16 +oil_permute_u32 +oil_permute_u8 +oil_recon8x8_inter +oil_recon8x8_inter2 +oil_recon8x8_intra +oil_resample_linear_argb +oil_resample_linear_u8 +oil_rgb2bgr +oil_rgb2rgba +oil_rgb565_to_argb +oil_rowsad8x8_u8 +oil_sad8x8_f64 +oil_sad8x8_f64_2 +oil_sad8x8_s16 +oil_sad8x8_s16_2 +oil_sad8x8_u8 +oil_sad8x8_u8_avg +oil_scalaradd_f32 +oil_scalaradd_f32_ns +oil_scalaradd_f64 +oil_scalaradd_s16 +oil_scalaradd_s32 +oil_scalaradd_s8 +oil_scalaradd_u16 +oil_scalaradd_u32 +oil_scalaradd_u8 +oil_scalarmult_f32 +oil_scalarmult_f64 +oil_scalarmult_s16 +oil_scalarmult_s32 +oil_scalarmult_s8 +oil_scalarmult_u16 +oil_scalarmult_u32 +oil_scalarmult_u8 +oil_scalarmultiply_f32_ns +oil_scaleconv_f32_s16 +oil_scaleconv_f32_s32 +oil_scaleconv_f32_s8 +oil_scaleconv_f32_u16 +oil_scaleconv_f32_u32 +oil_scaleconv_f32_u8 +oil_scaleconv_f64_s16 +oil_scaleconv_f64_s32 +oil_scaleconv_f64_s8 +oil_scaleconv_f64_u16 +oil_scaleconv_f64_u32 +oil_scaleconv_f64_u8 +oil_scaleconv_s16_f32 +oil_scaleconv_s16_f64 +oil_scaleconv_s32_f32 +oil_scaleconv_s32_f64 +oil_scaleconv_s8_f32 +oil_scaleconv_s8_f64 +oil_scaleconv_u16_f32 +oil_scaleconv_u16_f64 +oil_scaleconv_u32_f32 +oil_scaleconv_u32_f64 +oil_scaleconv_u8_f32 +oil_scaleconv_u8_f64 +oil_scanlinescale2_u8 +oil_sign_f32 +oil_sincos_f64 +oil_splat_u16_ns +oil_splat_u32 +oil_splat_u32_ns +oil_splat_u8 +oil_splat_u8_ns +oil_split_135 +oil_split_53 +oil_split_approx97 +oil_split_daub97 +oil_squaresum_f64 +oil_squaresum_shifted_s16 +oil_subtract_f32 +oil_subtract_s16 +oil_subtract_s16_u8 +oil_sum_f64 +oil_sum_s16 +oil_swab_u16 +oil_swab_u32 +oil_synth_135 +oil_synth_53 +oil_synth_approx97 +oil_synth_daub97 +oil_tablelookup_u8 +oil_testzero_u8 +oil_trans8x8_f64 +oil_trans8x8_u16 +oil_trans8x8_u32 +oil_trans8x8_u8 +oil_unzigzag8x8_s16 +oil_utf8_validate +oil_uyvy2ayuv +oil_vectoradd_f32 +oil_vectoradd_f64 +oil_vectoradd_s16 +oil_vectoradd_s32 +oil_vectoradd_s8 +oil_vectoradd_s_f32 +oil_vectoradd_s_f64 +oil_vectoradd_s_s16 +oil_vectoradd_s_s8 +oil_vectoradd_s_u16 +oil_vectoradd_s_u8 +oil_vectoradd_u16 +oil_vectoradd_u32 +oil_vectoradd_u8 +oil_yuv2rgbx_sub2_u8 +oil_yuv2rgbx_sub4_u8 +oil_yuv2rgbx_u8 +oil_yuyv2ayuv +oil_yvyu2ayuv +oil_zigzag8x8_s16 +
+ +
+conv +
+ +
+dct +
+ +
+jpeg +
+ +
+md5 +
+ +
+simdpack +
+ +
+sse_wrapper +OIL_SSE_WRAPPER +OIL_DEFINE_IMPL_FULL_WRAPPER +
+ +
+utf8 +
+ --- liboil-0.3.11.orig/doc/liboil-undocumented.txt +++ liboil-0.3.11/doc/liboil-undocumented.txt @@ -0,0 +1,298 @@ +95% symbol docs coverage. +433 symbols documented. +265 symbols incomplete. +25 not documented. + + +OIL_CHECK_PROTOTYPE (a) +OIL_DEBUG (...) +OIL_DEBUG_PRINT (level, ...) +OIL_ERROR (...) +OIL_GET (ptr, offset, type) +OIL_INCREMENT (ptr, offset) +OIL_INFO (...) +OIL_LOG (...) +OIL_OFFSET (ptr, offset) +OIL_OPT_FLAG_MANGLE (a) +OIL_OPT_MANGLE (a) +OIL_WARNING (...) +OilArgType (OIL_ARG_UNKNOWN, OIL_ARG_N, OIL_ARG_M, OIL_ARG_DEST1, OIL_ARG_DSTR1, OIL_ARG_DEST2, OIL_ARG_DSTR2, OIL_ARG_SRC1, OIL_ARG_SSTR1, OIL_ARG_SRC2, OIL_ARG_SSTR2, OIL_ARG_SRC3, OIL_ARG_SSTR3, OIL_ARG_SRC4, OIL_ARG_SSTR4, OIL_ARG_SRC5, OIL_ARG_SSTR5, OIL_ARG_INPLACE1, OIL_ARG_ISTR1, OIL_ARG_INPLACE2, OIL_ARG_ISTR2, OIL_ARG_LAST) +OilDebugLevel (OIL_DEBUG_NONE, OIL_DEBUG_ERROR, OIL_DEBUG_WARNING, OIL_DEBUG_INFO, OIL_DEBUG_DEBUG, OIL_DEBUG_LOG) +OilImplFlag (OIL_IMPL_FLAG_REF, OIL_IMPL_FLAG_OPT, OIL_IMPL_FLAG_ASM, OIL_IMPL_FLAG_DISABLED, OIL_IMPL_FLAG_CMOV, OIL_IMPL_FLAG_MMX, OIL_IMPL_FLAG_SSE, OIL_IMPL_FLAG_MMXEXT, OIL_IMPL_FLAG_SSE2, OIL_IMPL_FLAG_3DNOW, OIL_IMPL_FLAG_3DNOWEXT, OIL_IMPL_FLAG_SSE3, OIL_IMPL_FLAG_ALTIVEC) +OilPrototype (n_params, params, klass) +OilType (OIL_TYPE_UNKNOWN, OIL_TYPE_INT, OIL_TYPE_s8, OIL_TYPE_u8, OIL_TYPE_s16, OIL_TYPE_u16, OIL_TYPE_s32, OIL_TYPE_u32, OIL_TYPE_s64, OIL_TYPE_u64, OIL_TYPE_f32, OIL_TYPE_f64, OIL_TYPE_s8p, OIL_TYPE_u8p, OIL_TYPE_s16p, OIL_TYPE_u16p, OIL_TYPE_s32p, OIL_TYPE_u32p, OIL_TYPE_s64p, OIL_TYPE_u64p, OIL_TYPE_f32p, OIL_TYPE_f64p) +oil_average2_u8 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_ayuv2argb_u8 (d_4xn, s_4xn, n) +oil_ayuv2uyvy (d_n, n) +oil_ayuv2yuyv (d_n, n) +oil_ayuv2yvyu (d_n, n) +oil_clip_f32 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_f64 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_s16 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_s32 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_s8 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_u16 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_u32 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clip_u8 (dest, dstr, src, sstr, n, s2_1, s3_1) +oil_clipconv8x8_u8_s16 (d_8x8, dstr, s_8x8, sstr) +oil_clipconv_s16_f32 (dest, dstr, src, sstr, n) +oil_clipconv_s16_f64 (dest, dstr, src, sstr, n) +oil_clipconv_s16_s32 (dest, dstr, src, sstr, n) +oil_clipconv_s16_u16 (dest, dstr, src, sstr, n) +oil_clipconv_s16_u32 (dest, dstr, src, sstr, n) +oil_clipconv_s32_f32 (dest, dstr, src, sstr, n) +oil_clipconv_s32_f64 (dest, dstr, src, sstr, n) +oil_clipconv_s32_u32 (dest, dstr, src, sstr, n) +oil_clipconv_s8_f32 (dest, dstr, src, sstr, n) +oil_clipconv_s8_f64 (dest, dstr, src, sstr, n) +oil_clipconv_s8_s16 (dest, dstr, src, sstr, n) +oil_clipconv_s8_s32 (dest, dstr, src, sstr, n) +oil_clipconv_s8_u16 (dest, dstr, src, sstr, n) +oil_clipconv_s8_u32 (dest, dstr, src, sstr, n) +oil_clipconv_s8_u8 (dest, dstr, src, sstr, n) +oil_clipconv_u16_f32 (dest, dstr, src, sstr, n) +oil_clipconv_u16_f64 (dest, dstr, src, sstr, n) +oil_clipconv_u16_s16 (dest, dstr, src, sstr, n) +oil_clipconv_u16_s32 (dest, dstr, src, sstr, n) +oil_clipconv_u16_u32 (dest, dstr, src, sstr, n) +oil_clipconv_u32_f32 (dest, dstr, src, sstr, n) +oil_clipconv_u32_f64 (dest, dstr, src, sstr, n) +oil_clipconv_u32_s32 (dest, dstr, src, sstr, n) +oil_clipconv_u8_f32 (dest, dstr, src, sstr, n) +oil_clipconv_u8_f64 (dest, dstr, src, sstr, n) +oil_clipconv_u8_s16 (dest, dstr, src, sstr, n) +oil_clipconv_u8_s32 (dest, dstr, src, sstr, n) +oil_clipconv_u8_s8 (dest, dstr, src, sstr, n) +oil_clipconv_u8_u16 (dest, dstr, src, sstr, n) +oil_clipconv_u8_u32 (dest, dstr, src, sstr, n) +oil_colsad8x8_u8 (d_1, s1_8x8, ss1, s2_8x8, ss2) +oil_conv8x8_f64_s16 (d_8x8, dstr, s_8x8, sstr) +oil_conv8x8_s16_f64 (d_8x8, dstr, s_8x8, sstr) +oil_conv_f32_f64 (dest, dstr, src, sstr, n) +oil_conv_f32_s16 (dest, dstr, src, sstr, n) +oil_conv_f32_s32 (dest, dstr, src, sstr, n) +oil_conv_f32_s8 (dest, dstr, src, sstr, n) +oil_conv_f32_u16 (dest, dstr, src, sstr, n) +oil_conv_f32_u32 (dest, dstr, src, sstr, n) +oil_conv_f32_u8 (dest, dstr, src, sstr, n) +oil_conv_f64_f32 (dest, dstr, src, sstr, n) +oil_conv_f64_s16 (dest, dstr, src, sstr, n) +oil_conv_f64_s32 (dest, dstr, src, sstr, n) +oil_conv_f64_s8 (dest, dstr, src, sstr, n) +oil_conv_f64_u16 (dest, dstr, src, sstr, n) +oil_conv_f64_u32 (dest, dstr, src, sstr, n) +oil_conv_f64_u8 (dest, dstr, src, sstr, n) +oil_conv_s16_f32 (dest, dstr, src, sstr, n) +oil_conv_s16_f64 (dest, dstr, src, sstr, n) +oil_conv_s16_s32 (dest, dstr, src, sstr, n) +oil_conv_s16_s8 (dest, dstr, src, sstr, n) +oil_conv_s16_u16 (dest, dstr, src, sstr, n) +oil_conv_s16_u32 (dest, dstr, src, sstr, n) +oil_conv_s16_u8 (dest, dstr, src, sstr, n) +oil_conv_s32_f32 (dest, dstr, src, sstr, n) +oil_conv_s32_f64 (dest, dstr, src, sstr, n) +oil_conv_s32_s16 (dest, dstr, src, sstr, n) +oil_conv_s32_s8 (dest, dstr, src, sstr, n) +oil_conv_s32_u16 (dest, dstr, src, sstr, n) +oil_conv_s32_u32 (dest, dstr, src, sstr, n) +oil_conv_s32_u8 (dest, dstr, src, sstr, n) +oil_conv_s8_f32 (dest, dstr, src, sstr, n) +oil_conv_s8_f64 (dest, dstr, src, sstr, n) +oil_conv_s8_s16 (dest, dstr, src, sstr, n) +oil_conv_s8_s32 (dest, dstr, src, sstr, n) +oil_conv_s8_u16 (dest, dstr, src, sstr, n) +oil_conv_s8_u32 (dest, dstr, src, sstr, n) +oil_conv_s8_u8 (dest, dstr, src, sstr, n) +oil_conv_u16_f32 (dest, dstr, src, sstr, n) +oil_conv_u16_f64 (dest, dstr, src, sstr, n) +oil_conv_u16_s16 (dest, dstr, src, sstr, n) +oil_conv_u16_s32 (dest, dstr, src, sstr, n) +oil_conv_u16_s8 (dest, dstr, src, sstr, n) +oil_conv_u16_u32 (dest, dstr, src, sstr, n) +oil_conv_u16_u8 (dest, dstr, src, sstr, n) +oil_conv_u32_f32 (dest, dstr, src, sstr, n) +oil_conv_u32_f64 (dest, dstr, src, sstr, n) +oil_conv_u32_s16 (dest, dstr, src, sstr, n) +oil_conv_u32_s32 (dest, dstr, src, sstr, n) +oil_conv_u32_s8 (dest, dstr, src, sstr, n) +oil_conv_u32_u16 (dest, dstr, src, sstr, n) +oil_conv_u32_u8 (dest, dstr, src, sstr, n) +oil_conv_u8_f32 (dest, dstr, src, sstr, n) +oil_conv_u8_f64 (dest, dstr, src, sstr, n) +oil_conv_u8_s16 (dest, dstr, src, sstr, n) +oil_conv_u8_s32 (dest, dstr, src, sstr, n) +oil_conv_u8_s8 (dest, dstr, src, sstr, n) +oil_conv_u8_u16 (dest, dstr, src, sstr, n) +oil_conv_u8_u32 (dest, dstr, src, sstr, n) +oil_copy8x8_u8 (d_8x8, ds, s_8x8, ss) +oil_dct36_f32 (d_36, dstr, s_36, sstr) +oil_debug_set_print_function (func) +oil_dequantize8x8_s16 (d_8x8, dstr, s1_8x8, sstr1, s2_8x8, sstr2) +oil_diff8x8_average_s16_u8 (d_8x8, s1_8x8, ss1, s2_8x8, ss2, s3_8x8, ss3) +oil_diff8x8_const128_s16_u8 (d_8x8, s1_8x8, ss1) +oil_diff8x8_s16_u8 (d_8x8, s1_8x8, ss1, s2_8x8, ss2) +oil_diffsquaresum_f64 (d_1, src1, sstr1, src2, sstr2, n) +oil_err_inter8x8_u8 (d_1, s1_8x8, ss1, s2_8x8, ss2) +oil_err_inter8x8_u8_avg (d_1, s1_8x8, ss1, s2_8x8, s3_8x8, ss2) +oil_err_intra8x8_u8 (d_1, s1_8x8, ss1) +oil_fdct8_f64 (d_8, s_8, dstr, sstr) +oil_fdct8x8_f64 (d_8x8, dstr, s_8x8, sstr) +oil_fdct8x8s_s16 (d_8x8, ds, s_8x8, ss) +oil_fdct8x8theora (s_8x8, d_8x8) +oil_idct8_f64 (d_8, dstr, s_8, sstr) +oil_idct8theora_s16 (d_8, dstr, s_8, sstr) +oil_idct8x8_f64 (d_8x8, dstr, s_8x8, sstr) +oil_idct8x8_s16 (d_8x8, dstr, s_8x8, sstr) +oil_idct8x8lim10_f64 (d_8x8, dstr, s_8x8, sstr) +oil_idct8x8lim10_s16 (d_8x8, dstr, s_8x8, sstr) +oil_idct8x8theora_s16 (d_8x8, dstr, s_8x8, sstr) +oil_imdct12_f64 (d_12, s_6) +oil_imdct32_f32 (d_32, s_32) +oil_imdct36_f64 (d_36, s_18) +oil_md5 (i_4, s_16) +oil_mdct12_f64 (d_6, s_12) +oil_mdct36_f64 (d_18, s_36) +oil_memcpy (dest, src, n_bytes) +oil_merge_linear_argb (d_n, s_n, s2_n, s3_1, n) +oil_mix_u8 (n) +oil_mult8x8_s16 (d_8x8, s1_8x8, s2_8x8, ds, ss1, ss2) +oil_multsum_f32 (dest, src1, sstr1, src2, sstr2, n) +oil_multsum_f64 (dest, src1, sstr1, src2, sstr2, n) +oil_param_get_source_data +oil_permute_f32 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_f64 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_s16 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_s32 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_s8 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_u16 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_u32 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_permute_u8 (dest, dstr, src1, sstr1, src2, sstr2, n) +oil_random_alpha (dest, n) +oil_random_f32 (dest, n) +oil_random_f64 (dest, n) +oil_random_s16 (dest, n) +oil_random_s32 (dest, n) +oil_random_s64 (dest, n) +oil_random_s8 (dest, n) +oil_random_u16 (dest, n) +oil_random_u32 (dest, n) +oil_random_u64 (dest, n) +oil_random_u8 (dest, n) +oil_recon8x8_inter (d_8x8, ds, s1_8x8, ss1, s2_8x8) +oil_recon8x8_inter2 (d_8x8, ds, s1_8x8, ss1, s2_8x8, ss2, s3_8x8) +oil_recon8x8_intra (d_8x8, ds, s_8x8) +oil_resample_linear_argb (d_n, s_2xn, n, i_2) +oil_resample_linear_u8 (d_n, s_2xn, n, i_2) +oil_rgb2bgr (d_3xn, s_3xn, n) +oil_rgb2rgba (d_4xn, s_3xn, n) +oil_rowsad8x8_u8 (d_1, s1_8x8, s2_8x8) +oil_sad8x8_f64 (d_8x8, ds, s1_8x8, ss1, s2_8x8, ss2) +oil_sad8x8_f64_2 (d_1, s1_8x8, ss1, s2_8x8, ss2) +oil_sad8x8_s16 (d_8x8, ds, s1_8x8, ss1, s2_8x8, ss2) +oil_sad8x8_s16_2 (d_1, s1_8x8, ss1, s2_8x8, ss2) +oil_sad8x8_u8 (d_1, s1_8x8, ss1, s2_8x8, ss2) +oil_sad8x8_u8_avg (d_1, s1_8x8, ss1, s2_8x8, s3_8x8, ss2) +oil_scalaradd_f32 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_f64 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_s16 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_s32 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_s8 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_u16 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_u32 (d, dstr, s1, sstr, s2_1, n) +oil_scalaradd_u8 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_f32 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_f64 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_s16 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_s32 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_s8 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_u16 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_u32 (d, dstr, s1, sstr, s2_1, n) +oil_scalarmult_u8 (d, dstr, s1, sstr, s2_1, n) +oil_scaleconv_f32_s16 (dest, src, s2_1, s3_1) +oil_scaleconv_f32_s32 (dest, src, s2_1, s3_1) +oil_scaleconv_f32_s8 (dest, src, s2_1, s3_1) +oil_scaleconv_f32_u16 (dest, src, s2_1, s3_1) +oil_scaleconv_f32_u32 (dest, src, s2_1, s3_1) +oil_scaleconv_f32_u8 (dest, src, s2_1, s3_1) +oil_scaleconv_f64_s16 (dest, src, s2_1, s3_1) +oil_scaleconv_f64_s32 (dest, src, s2_1, s3_1) +oil_scaleconv_f64_s8 (dest, src, s2_1, s3_1) +oil_scaleconv_f64_u16 (dest, src, s2_1, s3_1) +oil_scaleconv_f64_u32 (dest, src, s2_1, s3_1) +oil_scaleconv_f64_u8 (dest, src, s2_1, s3_1) +oil_scaleconv_s16_f32 (dest, src, s2_1, s3_1) +oil_scaleconv_s16_f64 (dest, src, s2_1, s3_1) +oil_scaleconv_s32_f32 (dest, src, s2_1, s3_1) +oil_scaleconv_s32_f64 (dest, src, s2_1, s3_1) +oil_scaleconv_s8_f32 (dest, src, s2_1, s3_1) +oil_scaleconv_s8_f64 (dest, src, s2_1, s3_1) +oil_scaleconv_u16_f32 (dest, src, s2_1, s3_1) +oil_scaleconv_u16_f64 (dest, src, s2_1, s3_1) +oil_scaleconv_u32_f32 (dest, src, s2_1, s3_1) +oil_scaleconv_u32_f64 (dest, src, s2_1, s3_1) +oil_scaleconv_u8_f32 (dest, src, s2_1, s3_1) +oil_scaleconv_u8_f64 (dest, src, s2_1, s3_1) +oil_sincos_f64 (dest1, dest2, n, s1_1, s2_1) +oil_splat_u32 (dest, dstr, s1_1, n) +oil_splat_u32_ns (dest, s1_1, n) +oil_splat_u8 (dest, dstr, s1_1, n) +oil_splat_u8_ns (dest, s1_1, n) +oil_squaresum_f64 (d, s, n) +oil_squaresum_shifted_s16 (d, s, n) +oil_swab_u16 (d_n, n) +oil_swab_u32 (d_n, n) +oil_tablelookup_u8 (d, ds, s1, ss1, s2_256, ss2, n) +oil_test_get_source_data +oil_test_get_value +oil_trans8x8_f64 (d_8x8, ds, s_8x8, ss) +oil_trans8x8_s16 (dest, dstr, src, sstr) +oil_trans8x8_u16 (d_8x8, ds, s_8x8, ss) +oil_trans8x8_u32 (d_8x8, ds, s_8x8, ss) +oil_trans8x8_u8 (d_8x8, ds, s_8x8, ss) +oil_type_is_floating_point +oil_unzigzag8x8_s16 (d_8x8, ds, s_8x8, ss) +oil_utf8_validate (d_1, s, n) +oil_uyvy2ayuv (d_n, n) +oil_vectoradd_f32 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_f64 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_s16 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_s32 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_s8 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_s_f32 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_vectoradd_s_f64 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_vectoradd_s_s16 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_vectoradd_s_s8 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_vectoradd_s_u16 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_vectoradd_s_u8 (d, dstr, s1, sstr1, s2, sstr2, n) +oil_vectoradd_u16 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_u32 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_vectoradd_u8 (d, dstr, s1, sstr1, s2, sstr2, n, s3_1, s4_1) +oil_yuv2rgbx_sub2_u8 (d_4xn, n) +oil_yuv2rgbx_sub4_u8 (d_4xn, n) +oil_yuv2rgbx_u8 (d_4xn, n) +oil_yuyv2ayuv (d_n, n) +oil_yvyu2ayuv (d_n, n) +oil_zigzag8x8_s16 (d_8x8, ds, s_8x8, ss) + + +liboilcpu:Long_Description +liboildebug:Long_Description +liboilfuncs-copy:Long_Description +liboilfuncs-copy:Short_Description +liboilfuncs-dct:Long_Description +liboilfuncs-dct:Short_Description +liboilfuncs-doc:Long_Description +liboilfuncs-doc:Short_Description +liboilfuncs-math8x8:Long_Description +liboilfuncs-math:Long_Description +liboilimpl-unstable:Long_Description +liboilinit-unstable:Long_Description +liboilinit:Long_Description +liboiljunk:Long_Description +liboiljunk:Short_Description +liboilparameter:Long_Description +liboilprofile:Long_Description +liboilprototype:Long_Description +liboilrandom:Long_Description +liboiltest:Long_Description +liboiltypes:Long_Description --- liboil-0.3.11.orig/doc/html/liboil-liboilmacros.html +++ liboil-0.3.11/doc/html/liboil-liboilmacros.html @@ -22,16 +22,16 @@ Liboil Reference Manual Next -Top +Top  |  - Description + Description
@@ -60,7 +60,7 @@
-

Description

+

Description

@@ -68,11 +68,11 @@

-

Details

+

Details

-

+

oil_min()

-
#define oil_min(x,y) ((x)<(y)?(x):(y))
+
#define oil_min(x,y) ((x)<(y)?(x):(y))
 

Evaluates to the minimum of x and y.

@@ -97,9 +97,9 @@

-

+

oil_max()

-
#define oil_max(x,y) ((x)>(y)?(x):(y))
+
#define oil_max(x,y) ((x)>(y)?(x):(y))
 

Evaluates to the maximum of x and y.

@@ -124,9 +124,9 @@

-

+

oil_divide_255()

-
#define oil_divide_255(x) ((((x)+128) + (((x)+128)>>8))>>8)
+
#define oil_divide_255(x) ((((x)+128) + (((x)+128)>>8))>>8)
 

Divides x by 255 in a way that is compatible with the pixel @@ -148,9 +148,9 @@


-

+

oil_argb()

-
#define             oil_argb(a,r,g,b)
+
#define             oil_argb(a,r,g,b)

Creates a Liboil ARGB value from individual components. Clamps each component to [0,255]. @@ -188,9 +188,9 @@


-

+

oil_argb_noclamp()

-
#define             oil_argb_noclamp(a,r,g,b)
+
#define             oil_argb_noclamp(a,r,g,b)

Creates a Liboil ARGB value from individual components. Does not clamp components. @@ -228,9 +228,9 @@


-

+

oil_argb_A()

-
#define oil_argb_A(color) (((color)>>24)&0xff)
+
#define oil_argb_A(color) (((color)>>24)&0xff)
 

Extracts the alpha component from color. @@ -251,9 +251,9 @@


-

+

oil_argb_G()

-
#define oil_argb_G(color) (((color)>>8)&0xff)
+
#define oil_argb_G(color) (((color)>>8)&0xff)
 

Extracts the green component from color. @@ -274,9 +274,9 @@


-

+

oil_argb_B()

-
#define oil_argb_B(color) (((color)>>0)&0xff)
+
#define oil_argb_B(color) (((color)>>0)&0xff)
 

Extracts the blue component from color. @@ -297,9 +297,9 @@


-

+

oil_argb_R()

-
#define oil_argb_R(color) (((color)>>16)&0xff)
+
#define oil_argb_R(color) (((color)>>16)&0xff)
 

Extracts the red component from color. @@ -320,9 +320,9 @@


-

+

oil_muldiv_255()

-
#define oil_muldiv_255(a,b) oil_divide_255((a)*(b))
+
#define oil_muldiv_255(a,b) oil_divide_255((a)*(b))
 

Multiplies a and b and divides the result by 255 in a way that @@ -351,9 +351,9 @@


-

+

oil_clamp_255()

-
#define oil_clamp_255(x) oil_max(0,oil_min((x),255))
+
#define oil_clamp_255(x) oil_max(0,oil_min((x),255))
 

Clamps x to the range [0,255]. @@ -374,9 +374,9 @@


-

+

OIL_GET()

-
#define OIL_GET(ptr, offset, type) (*(type *)((uint8_t *)(ptr) + (offset)) )
+
#define OIL_GET(ptr, offset, type) (*(type *)((uint8_t *)(ptr) + (offset)) )
 

Offsets ptr by offset number of bytes, and dereferences it @@ -408,9 +408,9 @@


-

+

OIL_OFFSET()

-
#define OIL_OFFSET(ptr, offset) ((void *)((uint8_t *)(ptr) + (offset)) )
+
#define OIL_OFFSET(ptr, offset) ((void *)((uint8_t *)(ptr) + (offset)) )
 

Add offset bytes to the pointer ptr.

@@ -435,9 +435,9 @@

-

+

OIL_INCREMENT()

-
#define OIL_INCREMENT(ptr, offset) (ptr = (void *)((uint8_t *)ptr + (offset)) )
+
#define OIL_INCREMENT(ptr, offset) (ptr = (void *)((uint8_t *)ptr + (offset)) )
 

Increments the pointer ptr by offset number of bytes.

--- liboil-0.3.11.orig/doc/html/liboil-liboilimpl-unstable.html +++ liboil-0.3.11/doc/html/liboil-liboilimpl-unstable.html @@ -22,16 +22,16 @@
- + Description

-Macros +Macros

Macros — Macros

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -56,7 +56,7 @@
-

Description

+

Description

@@ -64,11 +64,11 @@

-

Details

+

Details

-

+

OilFunctionImpl

-
typedef struct {
+
typedef struct {
 } OilFunctionImpl;
 

@@ -79,9 +79,9 @@


-

+

oil_impl_get_by_index ()

-
OilFunctionImpl*    oil_impl_get_by_index               (int i);
+
OilFunctionImpl*    oil_impl_get_by_index               (int i);

Returns a pointer to the function implementation with index i.

@@ -105,9 +105,9 @@


-

+

oil_impl_is_runnable ()

-
int                 oil_impl_is_runnable                (OilFunctionImpl *impl);
+
int                 oil_impl_is_runnable                (OilFunctionImpl *impl);

Determines whether the function implementation given by impl can be executed by the current CPU.

@@ -132,9 +132,9 @@

-

+

enum OilImplFlag

-
typedef enum {
+
typedef enum {
   OIL_IMPL_FLAG_REF = (1<<0),
   OIL_IMPL_FLAG_OPT = (1<<1),
   OIL_IMPL_FLAG_ASM = (1<<2),
@@ -204,9 +204,9 @@
 

-

+

OIL_CPU_FLAG_MASK

-
#define OIL_CPU_FLAG_MASK 0xffff0000
+
#define OIL_CPU_FLAG_MASK 0xffff0000
 

Mask describing which bits in OilImplFlag depend on the current @@ -217,9 +217,9 @@


-

+

OIL_DEFINE_IMPL_FULL()

-
#define             OIL_DEFINE_IMPL_FULL(function,klass,flags)
+
#define             OIL_DEFINE_IMPL_FULL(function,klass,flags)

Defines a OilFunctionImpl structure for the function function and class klass. CPU-dependent flags in flags will indicate @@ -250,9 +250,9 @@


-

+

OIL_DEFINE_IMPL()

-
#define             OIL_DEFINE_IMPL(function,klass)
+
#define             OIL_DEFINE_IMPL(function,klass)

Shorthand for defining a C implementation. See OIL_DEFINE_IMPL_FULL().

@@ -276,9 +276,9 @@


-

+

OIL_DEFINE_IMPL_REF()

-
#define             OIL_DEFINE_IMPL_REF(function,klass)
+
#define             OIL_DEFINE_IMPL_REF(function,klass)

Shorthand for defining a reference implementation. See OIL_DEFINE_IMPL_FULL().

@@ -302,9 +302,9 @@


-

+

OIL_DEFINE_IMPL_ASM()

-
#define             OIL_DEFINE_IMPL_ASM(function,klass)
+
#define             OIL_DEFINE_IMPL_ASM(function,klass)

Shorthand for defining an implementation written in inline assembly code. See OIL_DEFINE_IMPL_FULL().

@@ -329,9 +329,9 @@

-

+

OIL_DEFINE_IMPL_DEPENDS()

-
#define             OIL_DEFINE_IMPL_DEPENDS(function,klass,...)
+
#define             OIL_DEFINE_IMPL_DEPENDS(function,klass,...)

Shorthand for defining an implementation that uses another Liboil function class. This is not currently used. See --- liboil-0.3.11.orig/doc/html/liboil-liboilrandom.html +++ liboil-0.3.11/doc/html/liboil-liboilrandom.html @@ -22,16 +22,16 @@

- + Description

-OilFunctionImpl +OilFunctionImpl

OilFunctionImpl — Functions for manipulating function implementations.

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -80,7 +80,7 @@
-

Description

+

Description

@@ -88,11 +88,11 @@

-

Details

+

Details

-

+

oil_rand_s32()

-
#define oil_rand_s32() ((rand()&0xffff)<<16 | (rand()&0xffff))
+
#define oil_rand_s32() ((rand()&0xffff)<<16 | (rand()&0xffff))
 

Evaluates to a random integer in the range [-(1<<31), (1<<31)-1].

@@ -102,9 +102,9 @@

-

+

oil_rand_s16()

-
#define oil_rand_s16() ((int16_t)(rand()&0xffff))
+
#define oil_rand_s16() ((int16_t)(rand()&0xffff))
 

Evaluates to a random integer in the range [-(1<<15), (1<<15)-1].

@@ -114,9 +114,9 @@

-

+

oil_rand_s8()

-
#define oil_rand_s8() ((int8_t)(rand()&0xffff))
+
#define oil_rand_s8() ((int8_t)(rand()&0xffff))
 

Evaluates to a random integer in the range [-(1<<7), (1<<7)-1].

@@ -126,9 +126,9 @@

-

+

oil_rand_u32()

-
#define oil_rand_u32() ((uint32_t)((rand()&0xffff)<<16 | (rand()&0xffff)))
+
#define oil_rand_u32() ((uint32_t)((rand()&0xffff)<<16 | (rand()&0xffff)))
 

Evaluates to a random integer in the range [0, (1<<32)-1].

@@ -138,9 +138,9 @@

-

+

oil_rand_u16()

-
#define oil_rand_u16() ((uint16_t)(rand()&0xffff))
+
#define oil_rand_u16() ((uint16_t)(rand()&0xffff))
 

Evaluates to a random integer in the range [0, (1<<16)-1].

@@ -150,9 +150,9 @@

-

+

oil_rand_u8()

-
#define oil_rand_u8() ((uint8_t)(rand()&0xffff))
+
#define oil_rand_u8() ((uint8_t)(rand()&0xffff))
 

Evaluates to a random integer in the range [0, (1<<8)-1].

@@ -162,9 +162,9 @@

-

+

oil_rand_s64()

-
#define oil_rand_s64() ((int64_t)(oil_rand_s32())<<32 | oil_rand_s32())
+
#define oil_rand_s64() ((int64_t)(oil_rand_s32())<<32 | oil_rand_s32())
 

Evaluates to a random integer in the range [-(1<<63), (1<<63)-1].

@@ -174,9 +174,9 @@

-

+

oil_rand_u64()

-
#define oil_rand_u64() ((uint64_t)(oil_rand_u32())<<32 | oil_rand_u32())
+
#define oil_rand_u64() ((uint64_t)(oil_rand_u32())<<32 | oil_rand_u32())
 

Evaluates to a random integer in the range [0, (1<<64)-1].

@@ -186,9 +186,9 @@

-

+

oil_rand_f32()

-
#define oil_rand_f32() (rand()/(RAND_MAX+1.0))
+
#define oil_rand_f32() (rand()/(RAND_MAX+1.0))
 

Evaluates to a random single-precision floating point number @@ -199,9 +199,9 @@


-

+

oil_rand_f64()

-
#define oil_rand_f64() (((rand()/(RAND_MAX+1.0))+rand())/(RAND_MAX+1.0))
+
#define oil_rand_f64() (((rand()/(RAND_MAX+1.0))+rand())/(RAND_MAX+1.0))
 

Evaluates to a random double-precision floating point number @@ -212,9 +212,9 @@


-

+

oil_random_alpha ()

-
void                oil_random_alpha                    (oil_type_u8 *dest,
+
void                oil_random_alpha                    (oil_type_u8 *dest,
                                                          int n);

Writes random values in the range [0, 255] to the destination @@ -243,9 +243,9 @@


-

+

oil_random_argb ()

-
void                oil_random_argb                     (oil_type_u32 *dest,
+
void                oil_random_argb                     (oil_type_u32 *dest,
                                                          int n);

Creates valid random RGBA values and places them in the destination @@ -271,9 +271,9 @@


-

+

oil_random_f32 ()

-
void                oil_random_f32                      (oil_type_f32 *dest,
+
void                oil_random_f32                      (oil_type_f32 *dest,
                                                          int n);

Writes random single-precision floating point values in the @@ -301,9 +301,9 @@


-

+

oil_random_f64 ()

-
void                oil_random_f64                      (oil_type_f64 *dest,
+
void                oil_random_f64                      (oil_type_f64 *dest,
                                                          int n);

Writes random double-precision floating point values in the @@ -331,9 +331,9 @@


-

+

oil_random_s16 ()

-
void                oil_random_s16                      (oil_type_s16 *dest,
+
void                oil_random_s16                      (oil_type_s16 *dest,
                                                          int n);

Writes random values in the range [-(1<<15), (1<<15)-1] to the @@ -361,9 +361,9 @@


-

+

oil_random_s32 ()

-
void                oil_random_s32                      (oil_type_s32 *dest,
+
void                oil_random_s32                      (oil_type_s32 *dest,
                                                          int n);

Writes random values in the range [-(1<<31), (1<<31)-1] to the @@ -389,9 +389,9 @@


-

+

oil_random_s64 ()

-
void                oil_random_s64                      (oil_type_s64 *dest,
+
void                oil_random_s64                      (oil_type_s64 *dest,
                                                          int n);

Writes random values in the range [-(1<<63), (1<<63)-1] to the @@ -419,9 +419,9 @@


-

+

oil_random_s8 ()

-
void                oil_random_s8                       (oil_type_s8 *dest,
+
void                oil_random_s8                       (oil_type_s8 *dest,
                                                          int n);

Writes random values in the range [-(1<<7), (1<<7)-1] to the @@ -449,9 +449,9 @@


-

+

oil_random_u16 ()

-
void                oil_random_u16                      (oil_type_u16 *dest,
+
void                oil_random_u16                      (oil_type_u16 *dest,
                                                          int n);

Writes random values in the range [0, (1<<16)-1] to the @@ -479,9 +479,9 @@


-

+

oil_random_u32 ()

-
void                oil_random_u32                      (oil_type_u32 *dest,
+
void                oil_random_u32                      (oil_type_u32 *dest,
                                                          int n);

Writes random values in the range [0, (1<<32)-1] to the @@ -509,9 +509,9 @@


-

+

oil_random_u64 ()

-
void                oil_random_u64                      (oil_type_u64 *dest,
+
void                oil_random_u64                      (oil_type_u64 *dest,
                                                          int n);

Writes random values in the range [0, (1<<64)-1] to the @@ -539,9 +539,9 @@


-

+

oil_random_u8 ()

-
void                oil_random_u8                       (oil_type_u8 *dest,
+
void                oil_random_u8                       (oil_type_u8 *dest,
                                                          int n);

Writes random values in the range [0, (1<<8)-1] to the --- liboil-0.3.11.orig/doc/html/liboil-liboilclass-unstable.html +++ liboil-0.3.11/doc/html/liboil-liboilclass-unstable.html @@ -22,16 +22,16 @@

- + Description

-Random Number Generation +Random Number Generation

Random Number Generation — Random number generation

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -64,7 +64,7 @@
-

Description

+

Description

@@ -127,9 +127,9 @@

-

Details

+

Details

-

+

OilFunctionClass

typedef struct {
 } OilFunctionClass;
@@ -142,9 +142,9 @@
 

-

+

OIL_DECLARE_CLASS()

-
#define             OIL_DECLARE_CLASS(klass)
+
#define             OIL_DECLARE_CLASS(klass)

Declares the Liboil function class klass.

@@ -163,7 +163,7 @@

OIL_DEFINE_CLASS_FULL()

-
#define             OIL_DEFINE_CLASS_FULL(klass, string, test)
+
#define             OIL_DEFINE_CLASS_FULL(klass, string, test)

Defines a OilFunctionClass structure for klass. Classes defined this way will be automatically at Liboil initialization @@ -194,9 +194,9 @@


-

+

OIL_DEFINE_CLASS()

-
#define             OIL_DEFINE_CLASS(klass, string)
+
#define             OIL_DEFINE_CLASS(klass, string)

Defines a OilFunctionClass structure for klass. Classes defined this way will be automatically at Liboil initialization @@ -222,7 +222,7 @@


-

+

oil_class_get_by_index ()

OilFunctionClass*   oil_class_get_by_index              (int i);

@@ -248,9 +248,9 @@


-

+

oil_class_get ()

-
OilFunctionClass*   oil_class_get                       (const char *class_name);
+
OilFunctionClass*   oil_class_get                       (const char *class_name);

Returns a pointer to the function class that has the given class name. If no such class is found, NULL is returned.

@@ -275,7 +275,7 @@

-

+

oil_class_optimize ()

void                oil_class_optimize                  (OilFunctionClass *klass);

@@ -374,9 +374,9 @@


-

+

oil_class_register_impl ()

-
void                oil_class_register_impl             (OilFunctionClass *klass,
+
void                oil_class_register_impl             (OilFunctionClass *klass,
                                                          OilFunctionImpl *impl);

Adds impl to the list of implementations associated with @@ -402,9 +402,9 @@


-

+

oil_class_register_impl_full ()

-
void                oil_class_register_impl_full        (OilFunctionClass *klass,
+
void                oil_class_register_impl_full        (OilFunctionClass *klass,
                                                          void (*func) (void),
                                                          const char *name,
                                                          unsigned int flags);
--- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-math.html +++ liboil-0.3.11/doc/html/liboil-liboilfuncs-math.html @@ -53,44 +53,26 @@ const double *src, int sstr, int n); -void oil_abs_u16_s16 (uint16_t *dest, +void oil_abs_u16_s16 (uint16_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_abs_u32_s32 (uint32_t *dest, +void oil_abs_u32_s32 (uint32_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_abs_u8_s8 (uint8_t *dest, +void oil_abs_u8_s8 (uint8_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_average2_u8 (uint8_t *d, +void oil_average2_u8 (uint8_t *d, int dstr, - const uint8_t *s1, + const uint8_t *s1, int sstr1, - const uint8_t *s2, + const uint8_t *s2, int sstr2, int n); void oil_multsum_f32 (float *dest, @@ -117,77 +99,41 @@ int sstr, const double *s2_1, int n); -void oil_scalaradd_s16 (int16_t *d, - int dstr, - const int16_t *s1, - int sstr, - const int16_t *s2_1, - int n); -void oil_scalaradd_s32 (int32_t *d, - int dstr, - const int32_t *s1, - int sstr, - const int32_t *s2_1, - int n); -void oil_scalaradd_s8 (int8_t *d, - int dstr, - const int8_t *s1, - int sstr, - const int8_t *s2_1, - int n); -void oil_scalaradd_u16 (uint16_t *d, - int dstr, - const uint16_t *s1, - int sstr, - const uint16_t *s2_1, - int n); -void oil_scalaradd_u32 (uint32_t *d, - int dstr, - const uint32_t *s1, - int sstr, - const uint32_t *s2_1, - int n); -void oil_scalaradd_u8 (uint8_t *d, - int dstr, - const uint8_t *s1, - int sstr, - const uint8_t *s2_1, +void oil_scalaradd_s16 (int16_t *d, + int dstr, + const int16_t *s1, + int sstr, + const int16_t *s2_1, + int n); +void oil_scalaradd_s32 (int32_t *d, + int dstr, + const int32_t *s1, + int sstr, + const int32_t *s2_1, + int n); +void oil_scalaradd_s8 (int8_t *d, + int dstr, + const int8_t *s1, + int sstr, + const int8_t *s2_1, + int n); +void oil_scalaradd_u16 (uint16_t *d, + int dstr, + const uint16_t *s1, + int sstr, + const uint16_t *s2_1, + int n); +void oil_scalaradd_u32 (uint32_t *d, + int dstr, + const uint32_t *s1, + int sstr, + const uint32_t *s2_1, + int n); +void oil_scalaradd_u8 (uint8_t *d, + int dstr, + const uint8_t *s1, + int sstr, + const uint8_t *s2_1, int n); void oil_scalarmult_f32 (float *d, int dstr, @@ -201,77 +147,41 @@ int sstr, const double *s2_1, int n); -void oil_scalarmult_s16 (int16_t *d, - int dstr, - const int16_t *s1, - int sstr, - const int16_t *s2_1, - int n); -void oil_scalarmult_s32 (int32_t *d, - int dstr, - const int32_t *s1, - int sstr, - const int32_t *s2_1, - int n); -void oil_scalarmult_s8 (int8_t *d, - int dstr, - const int8_t *s1, - int sstr, - const int8_t *s2_1, - int n); -void oil_scalarmult_u16 (uint16_t *d, - int dstr, - const uint16_t *s1, - int sstr, - const uint16_t *s2_1, - int n); -void oil_scalarmult_u32 (uint32_t *d, - int dstr, - const uint32_t *s1, - int sstr, - const uint32_t *s2_1, - int n); -void oil_scalarmult_u8 (uint8_t *d, - int dstr, - const uint8_t *s1, - int sstr, - const uint8_t *s2_1, +void oil_scalarmult_s16 (int16_t *d, + int dstr, + const int16_t *s1, + int sstr, + const int16_t *s2_1, + int n); +void oil_scalarmult_s32 (int32_t *d, + int dstr, + const int32_t *s1, + int sstr, + const int32_t *s2_1, + int n); +void oil_scalarmult_s8 (int8_t *d, + int dstr, + const int8_t *s1, + int sstr, + const int8_t *s2_1, + int n); +void oil_scalarmult_u16 (uint16_t *d, + int dstr, + const uint16_t *s1, + int sstr, + const uint16_t *s2_1, + int n); +void oil_scalarmult_u32 (uint32_t *d, + int dstr, + const uint32_t *s1, + int sstr, + const uint32_t *s2_1, + int n); +void oil_scalarmult_u8 (uint8_t *d, + int dstr, + const uint8_t *s1, + int sstr, + const uint8_t *s2_1, int n); void oil_vectoradd_f32 (float *d, int dstr, @@ -291,170 +201,86 @@ int n, const double *s3_1, const double *s4_1); -void oil_vectoradd_s16 (int16_t *d, - int dstr, - const int16_t *s1, - int sstr1, - const int16_t *s2, +void oil_vectoradd_s16 (int16_t *d, + int dstr, + const int16_t *s1, + int sstr1, + const int16_t *s2, int sstr2, int n, - const int16_t *s3_1, - const int16_t *s4_1); -void oil_vectoradd_s32 (int32_t *d, - int dstr, - const int32_t *s1, - int sstr1, - const int32_t *s2, + const int16_t *s3_1, + const int16_t *s4_1); +void oil_vectoradd_s32 (int32_t *d, + int dstr, + const int32_t *s1, + int sstr1, + const int32_t *s2, int sstr2, int n, - const int32_t *s3_1, - const int32_t *s4_1); -void oil_vectoradd_s8 (int8_t *d, - int dstr, - const int8_t *s1, - int sstr1, - const int8_t *s2, + const int32_t *s3_1, + const int32_t *s4_1); +void oil_vectoradd_s8 (int8_t *d, + int dstr, + const int8_t *s1, + int sstr1, + const int8_t *s2, int sstr2, int n, - const int8_t *s3_1, - const int8_t *s4_1); -void oil_vectoradd_u16 (uint16_t *d, - int dstr, - const uint16_t *s1, - int sstr1, - const uint16_t *s2, + const int8_t *s3_1, + const int8_t *s4_1); +void oil_vectoradd_u16 (uint16_t *d, + int dstr, + const uint16_t *s1, + int sstr1, + const uint16_t *s2, int sstr2, int n, - const uint16_t *s3_1, - const uint16_t *s4_1); -void oil_vectoradd_u32 (uint32_t *d, - int dstr, - const uint32_t *s1, - int sstr1, - const uint32_t *s2, + const uint16_t *s3_1, + const uint16_t *s4_1); +void oil_vectoradd_u32 (uint32_t *d, + int dstr, + const uint32_t *s1, + int sstr1, + const uint32_t *s2, int sstr2, int n, - const uint32_t *s3_1, - const uint32_t *s4_1); -void oil_vectoradd_u8 (uint8_t *d, - int dstr, - const uint8_t *s1, - int sstr1, - const uint8_t *s2, + const uint32_t *s3_1, + const uint32_t *s4_1); +void oil_vectoradd_u8 (uint8_t *d, + int dstr, + const uint8_t *s1, + int sstr1, + const uint8_t *s2, int sstr2, int n, - const uint8_t *s3_1, - const uint8_t *s4_1); -void oil_vectoradd_s_s8 (int8_t *d, - int dstr, - const int8_t *s1, - int sstr1, - const int8_t *s2, - int sstr2, - int n); -void oil_vectoradd_s_u8 (uint8_t *d, - int dstr, - const uint8_t *s1, - int sstr1, - const uint8_t *s2, - int sstr2, - int n); -void oil_vectoradd_s_s16 (int16_t *d, - int dstr, - const int16_t *s1, - int sstr1, - const int16_t *s2, - int sstr2, - int n); -void oil_vectoradd_s_u16 (uint16_t *d, - int dstr, - const uint16_t *s1, - int sstr1, - const uint16_t *s2, + const uint8_t *s3_1, + const uint8_t *s4_1); +void oil_vectoradd_s_s8 (int8_t *d, + int dstr, + const int8_t *s1, + int sstr1, + const int8_t *s2, + int sstr2, + int n); +void oil_vectoradd_s_u8 (uint8_t *d, + int dstr, + const uint8_t *s1, + int sstr1, + const uint8_t *s2, + int sstr2, + int n); +void oil_vectoradd_s_s16 (int16_t *d, + int dstr, + const int16_t *s1, + int sstr1, + const int16_t *s2, + int sstr2, + int n); +void oil_vectoradd_s_u16 (uint16_t *d, + int dstr, + const uint16_t *s1, + int sstr1, + const uint16_t *s2, int sstr2, int n); void oil_vectoradd_s_f32 (float *d, @@ -474,12 +300,8 @@ void oil_squaresum_f64 (double *d, const double *s, int n); -void oil_squaresum_shifted_s16 (uint32_t *d, - const int16_t *s, +void oil_squaresum_shifted_s16 (uint32_t *d, + const int16_t *s, int n); void oil_sum_f64 (double *d_1, const double *s, @@ -636,13 +458,9 @@

oil_abs_u16_s16 ()

-
void                oil_abs_u16_s16                     (uint16_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_abs_u16_s16                     (uint16_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -686,13 +504,9 @@

oil_abs_u32_s32 ()

-
void                oil_abs_u32_s32                     (uint32_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_abs_u32_s32                     (uint32_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -736,13 +550,9 @@

oil_abs_u8_s8 ()

-
void                oil_abs_u8_s8                       (uint8_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_abs_u8_s8                       (uint8_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -786,17 +596,11 @@

oil_average2_u8 ()

-
void                oil_average2_u8                     (uint8_t *d,
-                                                         int dstr,
-                                                         const uint8_t *s1,
-                                                         int sstr1,
-                                                         const uint8_t *s2,
+
void                oil_average2_u8                     (uint8_t *d,
+                                                         int dstr,
+                                                         const uint8_t *s1,
+                                                         int sstr1,
+                                                         const uint8_t *s2,
                                                          int sstr2,
                                                          int n);

@@ -1069,17 +873,11 @@

oil_scalaradd_s16 ()

-
void                oil_scalaradd_s16                   (int16_t *d,
-                                                         int dstr,
-                                                         const int16_t *s1,
-                                                         int sstr,
-                                                         const int16_t *s2_1,
+
void                oil_scalaradd_s16                   (int16_t *d,
+                                                         int dstr,
+                                                         const int16_t *s1,
+                                                         int sstr,
+                                                         const int16_t *s2_1,
                                                          int n);

Adds the constant value s2_1 to each value in s1 and places the @@ -1131,17 +929,11 @@

oil_scalaradd_s32 ()

-
void                oil_scalaradd_s32                   (int32_t *d,
-                                                         int dstr,
-                                                         const int32_t *s1,
-                                                         int sstr,
-                                                         const int32_t *s2_1,
+
void                oil_scalaradd_s32                   (int32_t *d,
+                                                         int dstr,
+                                                         const int32_t *s1,
+                                                         int sstr,
+                                                         const int32_t *s2_1,
                                                          int n);

Adds the constant value s2_1 to each value in s1 and places the @@ -1193,17 +985,11 @@

oil_scalaradd_s8 ()

-
void                oil_scalaradd_s8                    (int8_t *d,
-                                                         int dstr,
-                                                         const int8_t *s1,
-                                                         int sstr,
-                                                         const int8_t *s2_1,
+
void                oil_scalaradd_s8                    (int8_t *d,
+                                                         int dstr,
+                                                         const int8_t *s1,
+                                                         int sstr,
+                                                         const int8_t *s2_1,
                                                          int n);

Adds the constant value s2_1 to each value in s1 and places the @@ -1255,17 +1041,11 @@

oil_scalaradd_u16 ()

-
void                oil_scalaradd_u16                   (uint16_t *d,
-                                                         int dstr,
-                                                         const uint16_t *s1,
-                                                         int sstr,
-                                                         const uint16_t *s2_1,
+
void                oil_scalaradd_u16                   (uint16_t *d,
+                                                         int dstr,
+                                                         const uint16_t *s1,
+                                                         int sstr,
+                                                         const uint16_t *s2_1,
                                                          int n);

Adds the constant value s2_1 to each value in s1 and places the @@ -1317,17 +1097,11 @@

oil_scalaradd_u32 ()

-
void                oil_scalaradd_u32                   (uint32_t *d,
-                                                         int dstr,
-                                                         const uint32_t *s1,
-                                                         int sstr,
-                                                         const uint32_t *s2_1,
+
void                oil_scalaradd_u32                   (uint32_t *d,
+                                                         int dstr,
+                                                         const uint32_t *s1,
+                                                         int sstr,
+                                                         const uint32_t *s2_1,
                                                          int n);

Adds the constant value s2_1 to each value in s1 and places the @@ -1379,17 +1153,11 @@

oil_scalaradd_u8 ()

-
void                oil_scalaradd_u8                    (uint8_t *d,
-                                                         int dstr,
-                                                         const uint8_t *s1,
-                                                         int sstr,
-                                                         const uint8_t *s2_1,
+
void                oil_scalaradd_u8                    (uint8_t *d,
+                                                         int dstr,
+                                                         const uint8_t *s1,
+                                                         int sstr,
+                                                         const uint8_t *s2_1,
                                                          int n);

Adds the constant value s2_1 to each value in s1 and places the @@ -1553,17 +1321,11 @@

oil_scalarmult_s16 ()

-
void                oil_scalarmult_s16                  (int16_t *d,
-                                                         int dstr,
-                                                         const int16_t *s1,
-                                                         int sstr,
-                                                         const int16_t *s2_1,
+
void                oil_scalarmult_s16                  (int16_t *d,
+                                                         int dstr,
+                                                         const int16_t *s1,
+                                                         int sstr,
+                                                         const int16_t *s2_1,
                                                          int n);

Multiplies the constant value s2_1 to each value in s1 and places the @@ -1615,17 +1377,11 @@

oil_scalarmult_s32 ()

-
void                oil_scalarmult_s32                  (int32_t *d,
-                                                         int dstr,
-                                                         const int32_t *s1,
-                                                         int sstr,
-                                                         const int32_t *s2_1,
+
void                oil_scalarmult_s32                  (int32_t *d,
+                                                         int dstr,
+                                                         const int32_t *s1,
+                                                         int sstr,
+                                                         const int32_t *s2_1,
                                                          int n);

Multiplies the constant value s2_1 to each value in s1 and places the @@ -1677,17 +1433,11 @@

oil_scalarmult_s8 ()

-
void                oil_scalarmult_s8                   (int8_t *d,
-                                                         int dstr,
-                                                         const int8_t *s1,
-                                                         int sstr,
-                                                         const int8_t *s2_1,
+
void                oil_scalarmult_s8                   (int8_t *d,
+                                                         int dstr,
+                                                         const int8_t *s1,
+                                                         int sstr,
+                                                         const int8_t *s2_1,
                                                          int n);

Multiplies the constant value s2_1 to each value in s1 and places the @@ -1739,17 +1489,11 @@

oil_scalarmult_u16 ()

-
void                oil_scalarmult_u16                  (uint16_t *d,
-                                                         int dstr,
-                                                         const uint16_t *s1,
-                                                         int sstr,
-                                                         const uint16_t *s2_1,
+
void                oil_scalarmult_u16                  (uint16_t *d,
+                                                         int dstr,
+                                                         const uint16_t *s1,
+                                                         int sstr,
+                                                         const uint16_t *s2_1,
                                                          int n);

Multiplies the constant value s2_1 to each value in s1 and places the @@ -1801,17 +1545,11 @@

oil_scalarmult_u32 ()

-
void                oil_scalarmult_u32                  (uint32_t *d,
-                                                         int dstr,
-                                                         const uint32_t *s1,
-                                                         int sstr,
-                                                         const uint32_t *s2_1,
+
void                oil_scalarmult_u32                  (uint32_t *d,
+                                                         int dstr,
+                                                         const uint32_t *s1,
+                                                         int sstr,
+                                                         const uint32_t *s2_1,
                                                          int n);

Multiplies the constant value s2_1 to each value in s1 and places the @@ -1863,17 +1601,11 @@

oil_scalarmult_u8 ()

-
void                oil_scalarmult_u8                   (uint8_t *d,
-                                                         int dstr,
-                                                         const uint8_t *s1,
-                                                         int sstr,
-                                                         const uint8_t *s2_1,
+
void                oil_scalarmult_u8                   (uint8_t *d,
+                                                         int dstr,
+                                                         const uint8_t *s1,
+                                                         int sstr,
+                                                         const uint8_t *s2_1,
                                                          int n);

Multiplies the constant value s2_1 to each value in s1 and places the @@ -2077,25 +1809,15 @@

oil_vectoradd_s16 ()

-
void                oil_vectoradd_s16                   (int16_t *d,
-                                                         int dstr,
-                                                         const int16_t *s1,
-                                                         int sstr1,
-                                                         const int16_t *s2,
+
void                oil_vectoradd_s16                   (int16_t *d,
+                                                         int dstr,
+                                                         const int16_t *s1,
+                                                         int sstr1,
+                                                         const int16_t *s2,
                                                          int sstr2,
                                                          int n,
-                                                         const int16_t *s3_1,
-                                                         const int16_t *s4_1);
+ const int16_t *s3_1, + const int16_t *s4_1);

Multiplies the constant s3_1 with each element of s1 and multiplies the constant s4_1 with each element of s2 and @@ -2163,25 +1885,15 @@

oil_vectoradd_s32 ()

-
void                oil_vectoradd_s32                   (int32_t *d,
-                                                         int dstr,
-                                                         const int32_t *s1,
-                                                         int sstr1,
-                                                         const int32_t *s2,
+
void                oil_vectoradd_s32                   (int32_t *d,
+                                                         int dstr,
+                                                         const int32_t *s1,
+                                                         int sstr1,
+                                                         const int32_t *s2,
                                                          int sstr2,
                                                          int n,
-                                                         const int32_t *s3_1,
-                                                         const int32_t *s4_1);
+ const int32_t *s3_1, + const int32_t *s4_1);

Multiplies the constant s3_1 with each element of s1 and multiplies the constant s4_1 with each element of s2 and @@ -2249,25 +1961,15 @@

oil_vectoradd_s8 ()

-
void                oil_vectoradd_s8                    (int8_t *d,
-                                                         int dstr,
-                                                         const int8_t *s1,
-                                                         int sstr1,
-                                                         const int8_t *s2,
+
void                oil_vectoradd_s8                    (int8_t *d,
+                                                         int dstr,
+                                                         const int8_t *s1,
+                                                         int sstr1,
+                                                         const int8_t *s2,
                                                          int sstr2,
                                                          int n,
-                                                         const int8_t *s3_1,
-                                                         const int8_t *s4_1);
+ const int8_t *s3_1, + const int8_t *s4_1);

Multiplies the constant s3_1 with each element of s1 and multiplies the constant s4_1 with each element of s2 and @@ -2335,25 +2037,15 @@

oil_vectoradd_u16 ()

-
void                oil_vectoradd_u16                   (uint16_t *d,
-                                                         int dstr,
-                                                         const uint16_t *s1,
-                                                         int sstr1,
-                                                         const uint16_t *s2,
+
void                oil_vectoradd_u16                   (uint16_t *d,
+                                                         int dstr,
+                                                         const uint16_t *s1,
+                                                         int sstr1,
+                                                         const uint16_t *s2,
                                                          int sstr2,
                                                          int n,
-                                                         const uint16_t *s3_1,
-                                                         const uint16_t *s4_1);
+ const uint16_t *s3_1, + const uint16_t *s4_1);

Multiplies the constant s3_1 with each element of s1 and multiplies the constant s4_1 with each element of s2 and @@ -2421,25 +2113,15 @@

oil_vectoradd_u32 ()

-
void                oil_vectoradd_u32                   (uint32_t *d,
-                                                         int dstr,
-                                                         const uint32_t *s1,
-                                                         int sstr1,
-                                                         const uint32_t *s2,
+
void                oil_vectoradd_u32                   (uint32_t *d,
+                                                         int dstr,
+                                                         const uint32_t *s1,
+                                                         int sstr1,
+                                                         const uint32_t *s2,
                                                          int sstr2,
                                                          int n,
-                                                         const uint32_t *s3_1,
-                                                         const uint32_t *s4_1);
+ const uint32_t *s3_1, + const uint32_t *s4_1);

Multiplies the constant s3_1 with each element of s1 and multiplies the constant s4_1 with each element of s2 and @@ -2507,25 +2189,15 @@

oil_vectoradd_u8 ()

-
void                oil_vectoradd_u8                    (uint8_t *d,
-                                                         int dstr,
-                                                         const uint8_t *s1,
-                                                         int sstr1,
-                                                         const uint8_t *s2,
+
void                oil_vectoradd_u8                    (uint8_t *d,
+                                                         int dstr,
+                                                         const uint8_t *s1,
+                                                         int sstr1,
+                                                         const uint8_t *s2,
                                                          int sstr2,
                                                          int n,
-                                                         const uint8_t *s3_1,
-                                                         const uint8_t *s4_1);
+ const uint8_t *s3_1, + const uint8_t *s4_1);

Multiplies the constant s3_1 with each element of s1 and multiplies the constant s4_1 with each element of s2 and @@ -2593,17 +2265,11 @@

oil_vectoradd_s_s8 ()

-
void                oil_vectoradd_s_s8                  (int8_t *d,
-                                                         int dstr,
-                                                         const int8_t *s1,
-                                                         int sstr1,
-                                                         const int8_t *s2,
+
void                oil_vectoradd_s_s8                  (int8_t *d,
+                                                         int dstr,
+                                                         const int8_t *s1,
+                                                         int sstr1,
+                                                         const int8_t *s2,
                                                          int sstr2,
                                                          int n);

@@ -2661,17 +2327,11 @@

oil_vectoradd_s_u8 ()

-
void                oil_vectoradd_s_u8                  (uint8_t *d,
-                                                         int dstr,
-                                                         const uint8_t *s1,
-                                                         int sstr1,
-                                                         const uint8_t *s2,
+
void                oil_vectoradd_s_u8                  (uint8_t *d,
+                                                         int dstr,
+                                                         const uint8_t *s1,
+                                                         int sstr1,
+                                                         const uint8_t *s2,
                                                          int sstr2,
                                                          int n);

@@ -2729,17 +2389,11 @@

oil_vectoradd_s_s16 ()

-
void                oil_vectoradd_s_s16                 (int16_t *d,
-                                                         int dstr,
-                                                         const int16_t *s1,
-                                                         int sstr1,
-                                                         const int16_t *s2,
+
void                oil_vectoradd_s_s16                 (int16_t *d,
+                                                         int dstr,
+                                                         const int16_t *s1,
+                                                         int sstr1,
+                                                         const int16_t *s2,
                                                          int sstr2,
                                                          int n);

@@ -2797,17 +2451,11 @@

oil_vectoradd_s_u16 ()

-
void                oil_vectoradd_s_u16                 (uint16_t *d,
-                                                         int dstr,
-                                                         const uint16_t *s1,
-                                                         int sstr1,
-                                                         const uint16_t *s2,
+
void                oil_vectoradd_s_u16                 (uint16_t *d,
+                                                         int dstr,
+                                                         const uint16_t *s1,
+                                                         int sstr1,
+                                                         const uint16_t *s2,
                                                          int sstr2,
                                                          int n);

@@ -3023,12 +2671,8 @@

oil_squaresum_shifted_s16 ()

-
void                oil_squaresum_shifted_s16           (uint32_t *d,
-                                                         const int16_t *s,
+
void                oil_squaresum_shifted_s16           (uint32_t *d,
+                                                         const int16_t *s,
                                                          int n);

Square each element in s and divide by (1<<15), and sum the --- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-pixel.html +++ liboil-0.3.11/doc/html/liboil-liboilfuncs-pixel.html @@ -43,240 +43,102 @@ -void oil_argb_paint_u8 (uint8_t *i_4xn, - const uint8_t *s1_4, - const uint8_t *s2_n, - int n); -void oil_ayuv2argb_u8 (uint8_t *d_4xn, - const uint8_t *s_4xn, - int n); -void oil_ayuv2uyvy (uint32_t *d_n, - const uint32_t *s_n, - int n); -void oil_ayuv2yuyv (uint32_t *d_n, - const uint32_t *s_n, - int n); -void oil_ayuv2yvyu (uint32_t *d_n, - const uint32_t *s_n, - int n); -void oil_composite_add_argb (uint32_t *i_n, - const uint32_t *s1_n, - int n); -void oil_composite_add_argb_const_src (uint32_t *i_n, - const uint32_t *s1_1, - int n); -void oil_composite_in_argb (uint32_t *d_n, - const uint32_t *s1_n, - const uint8_t *s2_n, - int n); -void oil_composite_in_argb_const_mask (uint32_t *d_n, - const uint32_t *s1_n, - const uint8_t *s2_1, - int n); -void oil_composite_in_argb_const_src (uint32_t *d_n, - const uint32_t *s1_1, - const uint8_t *s2_n, - int n); -void oil_composite_in_over_argb (uint32_t *i_n, - const uint32_t *s1_n, - const uint8_t *s2_n, +void oil_argb_paint_u8 (uint8_t *i_4xn, + const uint8_t *s1_4, + const uint8_t *s2_n, + int n); +void oil_ayuv2argb_u8 (uint8_t *d_4xn, + const uint8_t *s_4xn, + int n); +void oil_ayuv2uyvy (uint32_t *d_n, + const uint32_t *s_n, + int n); +void oil_ayuv2yuyv (uint32_t *d_n, + const uint32_t *s_n, + int n); +void oil_ayuv2yvyu (uint32_t *d_n, + const uint32_t *s_n, + int n); +void oil_composite_add_argb (uint32_t *i_n, + const uint32_t *s1_n, + int n); +void oil_composite_add_argb_const_src (uint32_t *i_n, + const uint32_t *s1_1, + int n); +void oil_composite_in_argb (uint32_t *d_n, + const uint32_t *s1_n, + const uint8_t *s2_n, + int n); +void oil_composite_in_argb_const_mask (uint32_t *d_n, + const uint32_t *s1_n, + const uint8_t *s2_1, + int n); +void oil_composite_in_argb_const_src (uint32_t *d_n, + const uint32_t *s1_1, + const uint8_t *s2_n, + int n); +void oil_composite_in_over_argb (uint32_t *i_n, + const uint32_t *s1_n, + const uint8_t *s2_n, int n); void oil_composite_in_over_argb_const_mask - (uint32_t *i_n, - const uint32_t *s1_n, - const uint8_t *s2_1, + (uint32_t *i_n, + const uint32_t *s1_n, + const uint8_t *s2_1, int n); void oil_composite_in_over_argb_const_src - (uint32_t *i_n, - const uint32_t *s1_1, - const uint8_t *s2_n, - int n); -void oil_composite_over_argb (uint32_t *i_n, - const uint32_t *s1_n, - int n); -void oil_composite_over_argb_const_src (uint32_t *i_n, - const uint32_t *s1_1, - int n); -void oil_merge_linear_argb (uint32_t *d_n, - const uint32_t *s_n, - const uint32_t *s2_n, - const uint32_t *s3_1, - int n); -void oil_resample_linear_argb (uint32_t *d_n, - const uint32_t *s_2xn, + (uint32_t *i_n, + const uint32_t *s1_1, + const uint8_t *s2_n, + int n); +void oil_composite_over_argb (uint32_t *i_n, + const uint32_t *s1_n, + int n); +void oil_composite_over_argb_const_src (uint32_t *i_n, + const uint32_t *s1_1, + int n); +void oil_merge_linear_argb (uint32_t *d_n, + const uint32_t *s_n, + const uint32_t *s2_n, + const uint32_t *s3_1, + int n); +void oil_resample_linear_argb (uint32_t *d_n, + const uint32_t *s_2xn, int n, - uint32_t *i_2); -void oil_resample_linear_u8 (uint8_t *d_n, - const uint8_t *s_2xn, + uint32_t *i_2); +void oil_resample_linear_u8 (uint8_t *d_n, + const uint8_t *s_2xn, int n, - uint32_t *i_2); -void oil_rgb2bgr (uint8_t *d_3xn, - const uint8_t *s_3xn, - int n); -void oil_rgb2rgba (uint8_t *d_4xn, - const uint8_t *s_3xn, - int n); -void oil_yuv2rgbx_sub2_u8 (uint8_t *d_4xn, - const uint8_t *src1, - const uint8_t *src2, - const uint8_t *src3, - int n); -void oil_yuv2rgbx_sub4_u8 (uint8_t *d_4xn, - const uint8_t *src1, - const uint8_t *src2, - const uint8_t *src3, - int n); -void oil_yuv2rgbx_u8 (uint8_t *d_4xn, - const uint8_t *src1, - const uint8_t *src2, - const uint8_t *src3, - int n); -void oil_uyvy2ayuv (uint32_t *d_n, - const uint32_t *s_n, - int n); -void oil_yuyv2ayuv (uint32_t *d_n, - const uint32_t *s_n, - int n); -void oil_yvyu2ayuv (uint32_t *d_n, - const uint32_t *s_n, + uint32_t *i_2); +void oil_rgb2bgr (uint8_t *d_3xn, + const uint8_t *s_3xn, + int n); +void oil_rgb2rgba (uint8_t *d_4xn, + const uint8_t *s_3xn, + int n); +void oil_yuv2rgbx_sub2_u8 (uint8_t *d_4xn, + const uint8_t *src1, + const uint8_t *src2, + const uint8_t *src3, + int n); +void oil_yuv2rgbx_sub4_u8 (uint8_t *d_4xn, + const uint8_t *src1, + const uint8_t *src2, + const uint8_t *src3, + int n); +void oil_yuv2rgbx_u8 (uint8_t *d_4xn, + const uint8_t *src1, + const uint8_t *src2, + const uint8_t *src3, + int n); +void oil_uyvy2ayuv (uint32_t *d_n, + const uint32_t *s_n, + int n); +void oil_yuyv2ayuv (uint32_t *d_n, + const uint32_t *s_n, + int n); +void oil_yvyu2ayuv (uint32_t *d_n, + const uint32_t *s_n, int n);

@@ -301,15 +163,9 @@

oil_argb_paint_u8 ()

-
void                oil_argb_paint_u8                   (uint8_t *i_4xn,
-                                                         const uint8_t *s1_4,
-                                                         const uint8_t *s2_n,
+
void                oil_argb_paint_u8                   (uint8_t *i_4xn,
+                                                         const uint8_t *s1_4,
+                                                         const uint8_t *s2_n,
                                                          int n);

Composites source color onto in-place array according to the alpha @@ -350,12 +206,8 @@

oil_ayuv2argb_u8 ()

-
void                oil_ayuv2argb_u8                    (uint8_t *d_4xn,
-                                                         const uint8_t *s_4xn,
+
void                oil_ayuv2argb_u8                    (uint8_t *d_4xn,
+                                                         const uint8_t *s_4xn,
                                                          int n);

Converts AYUV pixels to ARGB pixels. AYUV pixels are in the @@ -393,12 +245,8 @@

oil_ayuv2uyvy ()

-
void                oil_ayuv2uyvy                       (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_ayuv2uyvy                       (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Converts pixels in AYUV format to UYVY. Note that only approximately @@ -434,12 +282,8 @@

oil_ayuv2yuyv ()

-
void                oil_ayuv2yuyv                       (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_ayuv2yuyv                       (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Converts pixels in AYUV format to YUYV. Note that only approximately @@ -475,12 +319,8 @@

oil_ayuv2yvyu ()

-
void                oil_ayuv2yvyu                       (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_ayuv2yvyu                       (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Converts pixels in AYUV format to YVYU. Note that only approximately @@ -516,12 +356,8 @@

oil_composite_add_argb ()

-
void                oil_composite_add_argb              (uint32_t *i_n,
-                                                         const uint32_t *s1_n,
+
void                oil_composite_add_argb              (uint32_t *i_n,
+                                                         const uint32_t *s1_n,
                                                          int n);

Performs the compositing operation DEST = SRC ADD DEST.

@@ -553,12 +389,8 @@

oil_composite_add_argb_const_src ()

-
void                oil_composite_add_argb_const_src    (uint32_t *i_n,
-                                                         const uint32_t *s1_1,
+
void                oil_composite_add_argb_const_src    (uint32_t *i_n,
+                                                         const uint32_t *s1_1,
                                                          int n);

Performs the compositing operation DEST = SRC ADD DEST, for a @@ -591,15 +423,9 @@

oil_composite_in_argb ()

-
void                oil_composite_in_argb               (uint32_t *d_n,
-                                                         const uint32_t *s1_n,
-                                                         const uint8_t *s2_n,
+
void                oil_composite_in_argb               (uint32_t *d_n,
+                                                         const uint32_t *s1_n,
+                                                         const uint8_t *s2_n,
                                                          int n);

Performs the compositing operation DEST = SRC IN MASK.

@@ -636,15 +462,9 @@

oil_composite_in_argb_const_mask ()

-
void                oil_composite_in_argb_const_mask    (uint32_t *d_n,
-                                                         const uint32_t *s1_n,
-                                                         const uint8_t *s2_1,
+
void                oil_composite_in_argb_const_mask    (uint32_t *d_n,
+                                                         const uint32_t *s1_n,
+                                                         const uint8_t *s2_1,
                                                          int n);

Performs the compositing operation DEST = SRC IN MASK, for a constant @@ -682,15 +502,9 @@

oil_composite_in_argb_const_src ()

-
void                oil_composite_in_argb_const_src     (uint32_t *d_n,
-                                                         const uint32_t *s1_1,
-                                                         const uint8_t *s2_n,
+
void                oil_composite_in_argb_const_src     (uint32_t *d_n,
+                                                         const uint32_t *s1_1,
+                                                         const uint8_t *s2_n,
                                                          int n);

Performs the compositing operation DEST = SRC IN MASK, for a constant @@ -728,15 +542,9 @@

oil_composite_in_over_argb ()

-
void                oil_composite_in_over_argb          (uint32_t *i_n,
-                                                         const uint32_t *s1_n,
-                                                         const uint8_t *s2_n,
+
void                oil_composite_in_over_argb          (uint32_t *i_n,
+                                                         const uint32_t *s1_n,
+                                                         const uint8_t *s2_n,
                                                          int n);

Performs the compositing operation DEST = (SRC IN MASK) OVER DEST.

@@ -774,15 +582,9 @@

oil_composite_in_over_argb_const_mask ()

void                oil_composite_in_over_argb_const_mask
-                                                        (uint32_t *i_n,
-                                                         const uint32_t *s1_n,
-                                                         const uint8_t *s2_1,
+                                                        (uint32_t *i_n,
+                                                         const uint32_t *s1_n,
+                                                         const uint8_t *s2_1,
                                                          int n);

Performs the compositing operation DEST = (SRC IN MASK) OVER DEST, @@ -821,15 +623,9 @@

oil_composite_in_over_argb_const_src ()

void                oil_composite_in_over_argb_const_src
-                                                        (uint32_t *i_n,
-                                                         const uint32_t *s1_1,
-                                                         const uint8_t *s2_n,
+                                                        (uint32_t *i_n,
+                                                         const uint32_t *s1_1,
+                                                         const uint8_t *s2_n,
                                                          int n);

Performs the compositing operation DEST = (SRC IN MASK) OVER DEST, @@ -867,12 +663,8 @@

oil_composite_over_argb ()

-
void                oil_composite_over_argb             (uint32_t *i_n,
-                                                         const uint32_t *s1_n,
+
void                oil_composite_over_argb             (uint32_t *i_n,
+                                                         const uint32_t *s1_n,
                                                          int n);

Performs the compositing operation DEST = SRC OVER DEST.

@@ -904,12 +696,8 @@

oil_composite_over_argb_const_src ()

-
void                oil_composite_over_argb_const_src   (uint32_t *i_n,
-                                                         const uint32_t *s1_1,
+
void                oil_composite_over_argb_const_src   (uint32_t *i_n,
+                                                         const uint32_t *s1_1,
                                                          int n);

Performs the compositing operation DEST = SRC OVER DEST, for a @@ -942,18 +730,10 @@

oil_merge_linear_argb ()

-
void                oil_merge_linear_argb               (uint32_t *d_n,
-                                                         const uint32_t *s_n,
-                                                         const uint32_t *s2_n,
-                                                         const uint32_t *s3_1,
+
void                oil_merge_linear_argb               (uint32_t *d_n,
+                                                         const uint32_t *s_n,
+                                                         const uint32_t *s2_n,
+                                                         const uint32_t *s3_1,
                                                          int n);

Linearly interpolate the s_n and s2_n arrays using the scale @@ -1003,16 +783,10 @@

oil_resample_linear_argb ()

-
void                oil_resample_linear_argb            (uint32_t *d_n,
-                                                         const uint32_t *s_2xn,
+
void                oil_resample_linear_argb            (uint32_t *d_n,
+                                                         const uint32_t *s_2xn,
                                                          int n,
-                                                         uint32_t *i_2);
+ uint32_t *i_2);

Linearly resamples a row of pixels. FIXME.

@@ -1048,16 +822,10 @@

oil_resample_linear_u8 ()

-
void                oil_resample_linear_u8              (uint8_t *d_n,
-                                                         const uint8_t *s_2xn,
+
void                oil_resample_linear_u8              (uint8_t *d_n,
+                                                         const uint8_t *s_2xn,
                                                          int n,
-                                                         uint32_t *i_2);
+ uint32_t *i_2);

Linearly resamples a row of pixels. FIXME.

@@ -1093,12 +861,8 @@

oil_rgb2bgr ()

-
void                oil_rgb2bgr                         (uint8_t *d_3xn,
-                                                         const uint8_t *s_3xn,
+
void                oil_rgb2bgr                         (uint8_t *d_3xn,
+                                                         const uint8_t *s_3xn,
                                                          int n);

Converts arrays of 24-bit RGB pixels from RGBRGBRGB ordering to @@ -1131,12 +895,8 @@

oil_rgb2rgba ()

-
void                oil_rgb2rgba                        (uint8_t *d_4xn,
-                                                         const uint8_t *s_3xn,
+
void                oil_rgb2rgba                        (uint8_t *d_4xn,
+                                                         const uint8_t *s_3xn,
                                                          int n);

Converts arrays of 24-bit RGB pixels in RGBRGBRGB memory order @@ -1169,18 +929,10 @@

oil_yuv2rgbx_sub2_u8 ()

-
void                oil_yuv2rgbx_sub2_u8                (uint8_t *d_4xn,
-                                                         const uint8_t *src1,
-                                                         const uint8_t *src2,
-                                                         const uint8_t *src3,
+
void                oil_yuv2rgbx_sub2_u8                (uint8_t *d_4xn,
+                                                         const uint8_t *src1,
+                                                         const uint8_t *src2,
+                                                         const uint8_t *src3,
                                                          int n);

Converts YUV pixels to RGB pixels. Each YUV component is in a @@ -1228,18 +980,10 @@

oil_yuv2rgbx_sub4_u8 ()

-
void                oil_yuv2rgbx_sub4_u8                (uint8_t *d_4xn,
-                                                         const uint8_t *src1,
-                                                         const uint8_t *src2,
-                                                         const uint8_t *src3,
+
void                oil_yuv2rgbx_sub4_u8                (uint8_t *d_4xn,
+                                                         const uint8_t *src1,
+                                                         const uint8_t *src2,
+                                                         const uint8_t *src3,
                                                          int n);

Converts YUV pixels to RGB pixels. Each YUV component is in a @@ -1287,18 +1031,10 @@

oil_yuv2rgbx_u8 ()

-
void                oil_yuv2rgbx_u8                     (uint8_t *d_4xn,
-                                                         const uint8_t *src1,
-                                                         const uint8_t *src2,
-                                                         const uint8_t *src3,
+
void                oil_yuv2rgbx_u8                     (uint8_t *d_4xn,
+                                                         const uint8_t *src1,
+                                                         const uint8_t *src2,
+                                                         const uint8_t *src3,
                                                          int n);

Converts YUV pixels to RGB pixels. Each YUV component is in a @@ -1344,12 +1080,8 @@

oil_uyvy2ayuv ()

-
void                oil_uyvy2ayuv                       (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_uyvy2ayuv                       (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Converts pixels in UYVY format to AYUV. Note that only approximately @@ -1385,12 +1117,8 @@

oil_yuyv2ayuv ()

-
void                oil_yuyv2ayuv                       (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_yuyv2ayuv                       (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Converts pixels in YUYV format to AYUV. Note that only approximately @@ -1426,12 +1154,8 @@

oil_yvyu2ayuv ()

-
void                oil_yvyu2ayuv                       (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_yvyu2ayuv                       (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Converts pixels in YVYU format to AYUV. Note that only approximately --- liboil-0.3.11.orig/doc/html/liboil-liboilparameter.html +++ liboil-0.3.11/doc/html/liboil-liboilparameter.html @@ -22,16 +22,16 @@

- + Description

-OilFunctionClass +OilFunctionClass

OilFunctionClass — Functions for manipulating function classes

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -48,7 +48,7 @@
-

Description

+

Description

@@ -56,11 +56,11 @@

-

Details

+

Details

-

+

OilParameter

-
typedef struct {
+
typedef struct {
 } OilParameter;
 

@@ -72,9 +72,9 @@


-

+

oil_param_get_source_data ()

-
void*               oil_param_get_source_data           (OilParameter *param);
+
void*               oil_param_get_source_data           (OilParameter *param);

--- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-math8x8.html +++ liboil-0.3.11/doc/html/liboil-liboilfuncs-math8x8.html @@ -43,15 +43,9 @@ -void oil_mult8x8_s16 (int16_t *d_8x8, - const int16_t *s1_8x8, - const int16_t *s2_8x8, +void oil_mult8x8_s16 (int16_t *d_8x8, + const int16_t *s1_8x8, + const int16_t *s2_8x8, int ds, int ss1, int ss2); @@ -61,44 +55,26 @@ int ss1, const double *s2_8x8, int ss2); -void oil_sad8x8_s16 (uint32_t *d_8x8, +void oil_sad8x8_s16 (uint32_t *d_8x8, int ds, - const int16_t *s1_8x8, - int ss1, - const int16_t *s2_8x8, + const int16_t *s1_8x8, + int ss1, + const int16_t *s2_8x8, int ss2); void oil_sad8x8_f64_2 (double *d_1, const double *s1_8x8, int ss1, const double *s2_8x8, int ss2); -void oil_sad8x8_s16_2 (uint32_t *d_1, - const int16_t *s1_8x8, - int ss1, - const int16_t *s2_8x8, +void oil_sad8x8_s16_2 (uint32_t *d_1, + const int16_t *s1_8x8, + int ss1, + const int16_t *s2_8x8, int ss2); -void oil_sad8x8_u8 (uint32_t *d_1, - const uint8_t *s1_8x8, - int ss1, - const uint8_t *s2_8x8, +void oil_sad8x8_u8 (uint32_t *d_1, + const uint8_t *s1_8x8, + int ss1, + const uint8_t *s2_8x8, int ss2);
@@ -115,15 +91,9 @@

oil_mult8x8_s16 ()

-
void                oil_mult8x8_s16                     (int16_t *d_8x8,
-                                                         const int16_t *s1_8x8,
-                                                         const int16_t *s2_8x8,
+
void                oil_mult8x8_s16                     (int16_t *d_8x8,
+                                                         const int16_t *s1_8x8,
+                                                         const int16_t *s2_8x8,
                                                          int ds,
                                                          int ss1,
                                                          int ss2);
@@ -226,17 +196,11 @@

oil_sad8x8_s16 ()

-
void                oil_sad8x8_s16                      (uint32_t *d_8x8,
+
void                oil_sad8x8_s16                      (uint32_t *d_8x8,
                                                          int ds,
-                                                         const int16_t *s1_8x8,
-                                                         int ss1,
-                                                         const int16_t *s2_8x8,
+                                                         const int16_t *s1_8x8,
+                                                         int ss1,
+                                                         const int16_t *s2_8x8,
                                                          int ss2);

FIXME: This function is broken and has been replaced by @@ -331,16 +295,10 @@

oil_sad8x8_s16_2 ()

-
void                oil_sad8x8_s16_2                    (uint32_t *d_1,
-                                                         const int16_t *s1_8x8,
-                                                         int ss1,
-                                                         const int16_t *s2_8x8,
+
void                oil_sad8x8_s16_2                    (uint32_t *d_1,
+                                                         const int16_t *s1_8x8,
+                                                         int ss1,
+                                                         const int16_t *s2_8x8,
                                                          int ss2);

Calculates the sum of absolute differences between elements in s1_8x8 @@ -383,16 +341,10 @@

oil_sad8x8_u8 ()

-
void                oil_sad8x8_u8                       (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
-                                                         int ss1,
-                                                         const uint8_t *s2_8x8,
+
void                oil_sad8x8_u8                       (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
+                                                         int ss1,
+                                                         const uint8_t *s2_8x8,
                                                          int ss2);

Calculates the sum of absolute differences between elements in s1_8x8 --- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-copy.html +++ liboil-0.3.11/doc/html/liboil-liboilfuncs-copy.html @@ -43,226 +43,122 @@ -void oil_compare_u8 (uint32_t *d_1, - const uint8_t *s1, - const uint8_t *s2, +void oil_compare_u8 (uint32_t *d_1, + const uint8_t *s1, + const uint8_t *s2, int n); -void oil_copy_u8 (uint8_t *dest, - const uint8_t *src, +void oil_copy_u8 (uint8_t *dest, + const uint8_t *src, int n); void oil_permute_f32 (float *dest, int dstr, const float *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); void oil_permute_f64 (double *dest, int dstr, const double *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_permute_s16 (int16_t *dest, +void oil_permute_s16 (int16_t *dest, int dstr, - const int16_t *src1, + const int16_t *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_permute_s32 (int32_t *dest, +void oil_permute_s32 (int32_t *dest, int dstr, - const int32_t *src1, + const int32_t *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_permute_s8 (int8_t *dest, +void oil_permute_s8 (int8_t *dest, int dstr, - const int8_t *src1, + const int8_t *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_permute_u16 (uint16_t *dest, +void oil_permute_u16 (uint16_t *dest, int dstr, - const uint16_t *src1, + const uint16_t *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_permute_u32 (uint32_t *dest, +void oil_permute_u32 (uint32_t *dest, int dstr, - const uint32_t *src1, + const uint32_t *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_permute_u8 (uint8_t *dest, +void oil_permute_u8 (uint8_t *dest, int dstr, - const uint8_t *src1, + const uint8_t *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n); -void oil_splat_u32 (uint32_t *dest, +void oil_splat_u32 (uint32_t *dest, int dstr, - const uint32_t *s1_1, + const uint32_t *s1_1, int n); -void oil_splat_u8 (uint8_t *dest, +void oil_splat_u8 (uint8_t *dest, int dstr, - const uint8_t *s1_1, + const uint8_t *s1_1, int n); -void oil_swab_u16 (uint16_t *d_n, - const uint16_t *s_n, +void oil_swab_u16 (uint16_t *d_n, + const uint16_t *s_n, int n); -void oil_swab_u32 (uint32_t *d_n, - const uint32_t *s_n, +void oil_swab_u32 (uint32_t *d_n, + const uint32_t *s_n, int n); -void oil_tablelookup_u8 (uint8_t *d, +void oil_tablelookup_u8 (uint8_t *d, int ds, - const uint8_t *s1, + const uint8_t *s1, int ss1, - const uint8_t *s2_256, + const uint8_t *s2_256, int ss2, int n); -void oil_testzero_u8 (uint32_t *d_1, - const uint8_t *s, +void oil_testzero_u8 (uint32_t *d_1, + const uint8_t *s, int n); void oil_trans8x8_f64 (double *d_8x8, int ds, const double *s_8x8, int ss); -void oil_trans8x8_u16 (uint16_t *d_8x8, +void oil_trans8x8_u16 (uint16_t *d_8x8, int ds, - const uint16_t *s_8x8, + const uint16_t *s_8x8, int ss); -void oil_trans8x8_u32 (uint32_t *d_8x8, +void oil_trans8x8_u32 (uint32_t *d_8x8, int ds, - const uint32_t *s_8x8, + const uint32_t *s_8x8, int ss); -void oil_trans8x8_u8 (uint8_t *d_8x8, +void oil_trans8x8_u8 (uint8_t *d_8x8, int ds, - const uint8_t *s_8x8, + const uint8_t *s_8x8, int ss); -void oil_unzigzag8x8_s16 (int16_t *d_8x8, +void oil_unzigzag8x8_s16 (int16_t *d_8x8, int ds, - const int16_t *s_8x8, + const int16_t *s_8x8, int ss); -void oil_zigzag8x8_s16 (int16_t *d_8x8, +void oil_zigzag8x8_s16 (int16_t *d_8x8, int ds, - const int16_t *s_8x8, + const int16_t *s_8x8, int ss); -void oil_splat_u32_ns (uint32_t *dest, - const uint32_t *s1_1, +void oil_splat_u32_ns (uint32_t *dest, + const uint32_t *s1_1, int n); -void oil_splat_u8_ns (uint8_t *dest, - const uint8_t *s1_1, +void oil_splat_u8_ns (uint8_t *dest, + const uint8_t *s1_1, int n); #define oil_trans8x8_s16 (dest, dstr, src, sstr) #define oil_memcpy (dest,src,n_bytes) @@ -279,15 +175,9 @@

oil_compare_u8 ()

-
void                oil_compare_u8                      (uint32_t *d_1,
-                                                         const uint8_t *s1,
-                                                         const uint8_t *s2,
+
void                oil_compare_u8                      (uint32_t *d_1,
+                                                         const uint8_t *s1,
+                                                         const uint8_t *s2,
                                                          int n);

Compares two arrays. The index of the first two elements that are @@ -326,12 +216,8 @@

oil_copy_u8 ()

-
void                oil_copy_u8                         (uint8_t *dest,
-                                                         const uint8_t *src,
+
void                oil_copy_u8                         (uint8_t *dest,
+                                                         const uint8_t *src,
                                                          int n);

Copies from source to destination.

@@ -367,9 +253,7 @@ int dstr, const float *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n);

@@ -428,9 +312,7 @@ int dstr, const double *src1, int sstr1, - const int32_t *src2, + const int32_t *src2, int sstr2, int n);

@@ -485,17 +367,11 @@

oil_permute_s16 ()

-
void                oil_permute_s16                     (int16_t *dest,
+
void                oil_permute_s16                     (int16_t *dest,
                                                          int dstr,
-                                                         const int16_t *src1,
+                                                         const int16_t *src1,
                                                          int sstr1,
-                                                         const int32_t *src2,
+                                                         const int32_t *src2,
                                                          int sstr2,
                                                          int n);

@@ -550,17 +426,11 @@

oil_permute_s32 ()

-
void                oil_permute_s32                     (int32_t *dest,
+
void                oil_permute_s32                     (int32_t *dest,
                                                          int dstr,
-                                                         const int32_t *src1,
+                                                         const int32_t *src1,
                                                          int sstr1,
-                                                         const int32_t *src2,
+                                                         const int32_t *src2,
                                                          int sstr2,
                                                          int n);

@@ -615,17 +485,11 @@

oil_permute_s8 ()

-
void                oil_permute_s8                      (int8_t *dest,
+
void                oil_permute_s8                      (int8_t *dest,
                                                          int dstr,
-                                                         const int8_t *src1,
+                                                         const int8_t *src1,
                                                          int sstr1,
-                                                         const int32_t *src2,
+                                                         const int32_t *src2,
                                                          int sstr2,
                                                          int n);

@@ -680,17 +544,11 @@

oil_permute_u16 ()

-
void                oil_permute_u16                     (uint16_t *dest,
+
void                oil_permute_u16                     (uint16_t *dest,
                                                          int dstr,
-                                                         const uint16_t *src1,
+                                                         const uint16_t *src1,
                                                          int sstr1,
-                                                         const int32_t *src2,
+                                                         const int32_t *src2,
                                                          int sstr2,
                                                          int n);

@@ -745,17 +603,11 @@

oil_permute_u32 ()

-
void                oil_permute_u32                     (uint32_t *dest,
+
void                oil_permute_u32                     (uint32_t *dest,
                                                          int dstr,
-                                                         const uint32_t *src1,
+                                                         const uint32_t *src1,
                                                          int sstr1,
-                                                         const int32_t *src2,
+                                                         const int32_t *src2,
                                                          int sstr2,
                                                          int n);

@@ -810,17 +662,11 @@

oil_permute_u8 ()

-
void                oil_permute_u8                      (uint8_t *dest,
+
void                oil_permute_u8                      (uint8_t *dest,
                                                          int dstr,
-                                                         const uint8_t *src1,
+                                                         const uint8_t *src1,
                                                          int sstr1,
-                                                         const int32_t *src2,
+                                                         const int32_t *src2,
                                                          int sstr2,
                                                          int n);

@@ -875,13 +721,9 @@

oil_splat_u32 ()

-
void                oil_splat_u32                       (uint32_t *dest,
+
void                oil_splat_u32                       (uint32_t *dest,
                                                          int dstr,
-                                                         const uint32_t *s1_1,
+                                                         const uint32_t *s1_1,
                                                          int n);

Copies the constant source value s1_1 to each element in dest.

@@ -918,13 +760,9 @@

oil_splat_u8 ()

-
void                oil_splat_u8                        (uint8_t *dest,
+
void                oil_splat_u8                        (uint8_t *dest,
                                                          int dstr,
-                                                         const uint8_t *s1_1,
+                                                         const uint8_t *s1_1,
                                                          int n);

Copies the constant source value s1_1 to each element in dest.

@@ -961,12 +799,8 @@

oil_swab_u16 ()

-
void                oil_swab_u16                        (uint16_t *d_n,
-                                                         const uint16_t *s_n,
+
void                oil_swab_u16                        (uint16_t *d_n,
+                                                         const uint16_t *s_n,
                                                          int n);

Swaps the endianness of values in the source array and places the @@ -1003,12 +837,8 @@

oil_swab_u32 ()

-
void                oil_swab_u32                        (uint32_t *d_n,
-                                                         const uint32_t *s_n,
+
void                oil_swab_u32                        (uint32_t *d_n,
+                                                         const uint32_t *s_n,
                                                          int n);

Swaps the endianness of values in the source array and places the @@ -1045,17 +875,11 @@

oil_tablelookup_u8 ()

-
void                oil_tablelookup_u8                  (uint8_t *d,
+
void                oil_tablelookup_u8                  (uint8_t *d,
                                                          int ds,
-                                                         const uint8_t *s1,
+                                                         const uint8_t *s1,
                                                          int ss1,
-                                                         const uint8_t *s2_256,
+                                                         const uint8_t *s2_256,
                                                          int ss2,
                                                          int n);

@@ -1109,12 +933,8 @@

oil_testzero_u8 ()

-
void                oil_testzero_u8                     (uint32_t *d_1,
-                                                         const uint8_t *s,
+
void                oil_testzero_u8                     (uint32_t *d_1,
+                                                         const uint8_t *s,
                                                          int n);

Tests each element in the source array for equality with 0. The @@ -1194,13 +1014,9 @@

oil_trans8x8_u16 ()

-
void                oil_trans8x8_u16                    (uint16_t *d_8x8,
+
void                oil_trans8x8_u16                    (uint16_t *d_8x8,
                                                          int ds,
-                                                         const uint16_t *s_8x8,
+                                                         const uint16_t *s_8x8,
                                                          int ss);

Performs a matrix transpose the 8x8 block represented by s_8x8 @@ -1240,13 +1056,9 @@

oil_trans8x8_u32 ()

-
void                oil_trans8x8_u32                    (uint32_t *d_8x8,
+
void                oil_trans8x8_u32                    (uint32_t *d_8x8,
                                                          int ds,
-                                                         const uint32_t *s_8x8,
+                                                         const uint32_t *s_8x8,
                                                          int ss);

Performs a matrix transpose the 8x8 block represented by s_8x8 @@ -1286,13 +1098,9 @@

oil_trans8x8_u8 ()

-
void                oil_trans8x8_u8                     (uint8_t *d_8x8,
+
void                oil_trans8x8_u8                     (uint8_t *d_8x8,
                                                          int ds,
-                                                         const uint8_t *s_8x8,
+                                                         const uint8_t *s_8x8,
                                                          int ss);

Performs a matrix transpose the 8x8 block represented by s_8x8 @@ -1332,13 +1140,9 @@

oil_unzigzag8x8_s16 ()

-
void                oil_unzigzag8x8_s16                 (int16_t *d_8x8,
+
void                oil_unzigzag8x8_s16                 (int16_t *d_8x8,
                                                          int ds,
-                                                         const int16_t *s_8x8,
+                                                         const int16_t *s_8x8,
                                                          int ss);

Reorders an 8x8 block to reverse the zig-zag reordering of @@ -1376,13 +1180,9 @@

oil_zigzag8x8_s16 ()

-
void                oil_zigzag8x8_s16                   (int16_t *d_8x8,
+
void                oil_zigzag8x8_s16                   (int16_t *d_8x8,
                                                          int ds,
-                                                         const int16_t *s_8x8,
+                                                         const int16_t *s_8x8,
                                                          int ss);

Reorders an 8x8 block using a zig-zag pattern. The zig-zag pattern @@ -1423,12 +1223,8 @@

oil_splat_u32_ns ()

-
void                oil_splat_u32_ns                    (uint32_t *dest,
-                                                         const uint32_t *s1_1,
+
void                oil_splat_u32_ns                    (uint32_t *dest,
+                                                         const uint32_t *s1_1,
                                                          int n);

Copies the constant source value s1_1 to each element in dest.

@@ -1460,12 +1256,8 @@

oil_splat_u8_ns ()

-
void                oil_splat_u8_ns                     (uint8_t *dest,
-                                                         const uint8_t *s1_1,
+
void                oil_splat_u8_ns                     (uint8_t *dest,
+                                                         const uint8_t *s1_1,
                                                          int n);

Copies the constant source value s1_1 to each element in dest.

--- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-dct.html +++ liboil-0.3.11/doc/html/liboil-liboilfuncs-dct.html @@ -55,13 +55,9 @@ int dstr, const double *s_8x8, int sstr); -void oil_fdct8x8s_s16 (int16_t *d_8x8, +void oil_fdct8x8s_s16 (int16_t *d_8x8, int ds, - const int16_t *s_8x8, + const int16_t *s_8x8, int ss); void oil_idct8_f64 (double *d_8, int dstr, @@ -71,13 +67,9 @@ int dstr, const double *s_8x8, int sstr); -void oil_idct8x8_s16 (int16_t *d_8x8, - int dstr, - const int16_t *s_8x8, +void oil_idct8x8_s16 (int16_t *d_8x8, + int dstr, + const int16_t *s_8x8, int sstr); void oil_imdct12_f64 (double *d_12, const double *s_6); @@ -89,33 +81,21 @@ const double *s_12); void oil_mdct36_f64 (double *d_18, const double *s_36); -void oil_idct8theora_s16 (int16_t *d_8, - int dstr, - const int16_t *s_8, +void oil_idct8theora_s16 (int16_t *d_8, + int dstr, + const int16_t *s_8, int sstr); void oil_idct8x8lim10_f64 (double *d_8x8, int dstr, const double *s_8x8, int sstr); -void oil_idct8x8lim10_s16 (int16_t *d_8x8, - int dstr, - const int16_t *s_8x8, +void oil_idct8x8lim10_s16 (int16_t *d_8x8, + int dstr, + const int16_t *s_8x8, int sstr); -void oil_idct8x8theora_s16 (int16_t *d_8x8, - int dstr, - const int16_t *s_8x8, +void oil_idct8x8theora_s16 (int16_t *d_8x8, + int dstr, + const int16_t *s_8x8, int sstr);
@@ -249,13 +229,9 @@

oil_fdct8x8s_s16 ()

-
void                oil_fdct8x8s_s16                    (int16_t *d_8x8,
+
void                oil_fdct8x8s_s16                    (int16_t *d_8x8,
                                                          int ds,
-                                                         const int16_t *s_8x8,
+                                                         const int16_t *s_8x8,
                                                          int ss);

Performs a 2-D Forward Discrete Cosine Transform on s_8x8 and places @@ -376,13 +352,9 @@

oil_idct8x8_s16 ()

-
void                oil_idct8x8_s16                     (int16_t *d_8x8,
-                                                         int dstr,
-                                                         const int16_t *s_8x8,
+
void                oil_idct8x8_s16                     (int16_t *d_8x8,
+                                                         int dstr,
+                                                         const int16_t *s_8x8,
                                                          int sstr);

Performs a limited 2-D Inverse Discrete Cosine Transform on s_8x8 @@ -560,13 +532,9 @@

oil_idct8theora_s16 ()

-
void                oil_idct8theora_s16                 (int16_t *d_8,
-                                                         int dstr,
-                                                         const int16_t *s_8,
+
void                oil_idct8theora_s16                 (int16_t *d_8,
+                                                         int dstr,
+                                                         const int16_t *s_8,
                                                          int sstr);

Performs a Inverse Discrete Cosine Transform on s_8 and places @@ -644,13 +612,9 @@

oil_idct8x8lim10_s16 ()

-
void                oil_idct8x8lim10_s16                (int16_t *d_8x8,
-                                                         int dstr,
-                                                         const int16_t *s_8x8,
+
void                oil_idct8x8lim10_s16                (int16_t *d_8x8,
+                                                         int dstr,
+                                                         const int16_t *s_8x8,
                                                          int sstr);

Performs a limited 2-D Inverse Discrete Cosine Transform on s_8x8 @@ -689,13 +653,9 @@

oil_idct8x8theora_s16 ()

-
void                oil_idct8x8theora_s16               (int16_t *d_8x8,
-                                                         int dstr,
-                                                         const int16_t *s_8x8,
+
void                oil_idct8x8theora_s16               (int16_t *d_8x8,
+                                                         int dstr,
+                                                         const int16_t *s_8x8,
                                                          int sstr);

Performs a Inverse Discrete Cosine Transform on s_8x8 and places --- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-conv.html +++ liboil-0.3.11/doc/html/liboil-liboilfuncs-conv.html @@ -43,269 +43,165 @@ -void oil_clipconv8x8_u8_s16 (uint8_t *d_8x8, - int dstr, - const int16_t *s_8x8, +void oil_clipconv8x8_u8_s16 (uint8_t *d_8x8, + int dstr, + const int16_t *s_8x8, int sstr); -void oil_clipconv_s16_f32 (int16_t *dest, +void oil_clipconv_s16_f32 (int16_t *dest, int dstr, const float *src, int sstr, int n); -void oil_clipconv_s16_f64 (int16_t *dest, +void oil_clipconv_s16_f64 (int16_t *dest, int dstr, const double *src, int sstr, int n); -void oil_clipconv_s16_s32 (int16_t *dest, +void oil_clipconv_s16_s32 (int16_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_clipconv_s16_u16 (int16_t *dest, +void oil_clipconv_s16_u16 (int16_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_clipconv_s16_u32 (int16_t *dest, +void oil_clipconv_s16_u32 (int16_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_clipconv_s32_f32 (int32_t *dest, +void oil_clipconv_s32_f32 (int32_t *dest, int dstr, const float *src, int sstr, int n); -void oil_clipconv_s32_f64 (int32_t *dest, +void oil_clipconv_s32_f64 (int32_t *dest, int dstr, const double *src, int sstr, int n); -void oil_clipconv_s32_u32 (int32_t *dest, - int dstr, - const uint32_t *src, +void oil_clipconv_s32_u32 (int32_t *dest, + int dstr, + const uint32_t *src, int sstr, int n); -void oil_clipconv_s8_f32 (int8_t *dest, +void oil_clipconv_s8_f32 (int8_t *dest, int dstr, const float *src, int sstr, int n); -void oil_clipconv_s8_f64 (int8_t *dest, +void oil_clipconv_s8_f64 (int8_t *dest, int dstr, const double *src, int sstr, int n); -void oil_clipconv_s8_s16 (int8_t *dest, +void oil_clipconv_s8_s16 (int8_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_clipconv_s8_s32 (int8_t *dest, +void oil_clipconv_s8_s32 (int8_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_clipconv_s8_u16 (int8_t *dest, +void oil_clipconv_s8_u16 (int8_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_clipconv_s8_u32 (int8_t *dest, +void oil_clipconv_s8_u32 (int8_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_clipconv_s8_u8 (int8_t *dest, +void oil_clipconv_s8_u8 (int8_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_clipconv_u16_f32 (uint16_t *dest, +void oil_clipconv_u16_f32 (uint16_t *dest, int dstr, const float *src, int sstr, int n); -void oil_clipconv_u16_f64 (uint16_t *dest, +void oil_clipconv_u16_f64 (uint16_t *dest, int dstr, const double *src, int sstr, int n); -void oil_clipconv_u16_s16 (uint16_t *dest, +void oil_clipconv_u16_s16 (uint16_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_clipconv_u16_s32 (uint16_t *dest, +void oil_clipconv_u16_s32 (uint16_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_clipconv_u16_u32 (uint16_t *dest, +void oil_clipconv_u16_u32 (uint16_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_clipconv_u32_f32 (uint32_t *dest, +void oil_clipconv_u32_f32 (uint32_t *dest, int dstr, const float *src, int sstr, int n); -void oil_clipconv_u32_f64 (uint32_t *dest, +void oil_clipconv_u32_f64 (uint32_t *dest, int dstr, const double *src, int sstr, int n); -void oil_clipconv_u32_s32 (uint32_t *dest, - int dstr, - const int32_t *src, +void oil_clipconv_u32_s32 (uint32_t *dest, + int dstr, + const int32_t *src, int sstr, int n); -void oil_clipconv_u8_f32 (uint8_t *dest, +void oil_clipconv_u8_f32 (uint8_t *dest, int dstr, const float *src, int sstr, int n); -void oil_clipconv_u8_f64 (uint8_t *dest, +void oil_clipconv_u8_f64 (uint8_t *dest, int dstr, const double *src, int sstr, int n); -void oil_clipconv_u8_s16 (uint8_t *dest, +void oil_clipconv_u8_s16 (uint8_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_clipconv_u8_s32 (uint8_t *dest, +void oil_clipconv_u8_s32 (uint8_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_clipconv_u8_s8 (uint8_t *dest, +void oil_clipconv_u8_s8 (uint8_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_clipconv_u8_u16 (uint8_t *dest, +void oil_clipconv_u8_u16 (uint8_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_clipconv_u8_u32 (uint8_t *dest, +void oil_clipconv_u8_u32 (uint8_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); void oil_conv8x8_f64_s16 (double *d_8x8, int dstr, - const int16_t *s_8x8, + const int16_t *s_8x8, int sstr); -void oil_conv8x8_s16_f64 (int16_t *d_8x8, +void oil_conv8x8_s16_f64 (int16_t *d_8x8, int dstr, const double *s_8x8, int sstr); @@ -316,44 +212,32 @@ int n); void oil_conv_f32_s16 (float *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); void oil_conv_f32_s32 (float *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); void oil_conv_f32_s8 (float *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); void oil_conv_f32_u16 (float *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); void oil_conv_f32_u32 (float *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); void oil_conv_f32_u8 (float *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); void oil_conv_f64_f32 (double *dest, @@ -363,564 +247,360 @@ int n); void oil_conv_f64_s16 (double *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); void oil_conv_f64_s32 (double *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); void oil_conv_f64_s8 (double *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); void oil_conv_f64_u16 (double *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); void oil_conv_f64_u32 (double *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); void oil_conv_f64_u8 (double *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_conv_s16_f32 (int16_t *dest, +void oil_conv_s16_f32 (int16_t *dest, int dstr, const float *src, int sstr, int n); -void oil_conv_s16_f64 (int16_t *dest, +void oil_conv_s16_f64 (int16_t *dest, int dstr, const double *src, int sstr, int n); -void oil_conv_s16_s32 (int16_t *dest, +void oil_conv_s16_s32 (int16_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_conv_s16_s8 (int16_t *dest, +void oil_conv_s16_s8 (int16_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_conv_s16_u16 (int16_t *dest, +void oil_conv_s16_u16 (int16_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_conv_s16_u32 (int16_t *dest, +void oil_conv_s16_u32 (int16_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_conv_s16_u8 (int16_t *dest, +void oil_conv_s16_u8 (int16_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_conv_s32_f32 (int32_t *dest, +void oil_conv_s32_f32 (int32_t *dest, int dstr, const float *src, int sstr, int n); -void oil_conv_s32_f64 (int32_t *dest, +void oil_conv_s32_f64 (int32_t *dest, int dstr, const double *src, int sstr, int n); -void oil_conv_s32_s16 (int32_t *dest, +void oil_conv_s32_s16 (int32_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_conv_s32_s8 (int32_t *dest, +void oil_conv_s32_s8 (int32_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_conv_s32_u16 (int32_t *dest, +void oil_conv_s32_u16 (int32_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_conv_s32_u32 (int32_t *dest, +void oil_conv_s32_u32 (int32_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_conv_s32_u8 (int32_t *dest, +void oil_conv_s32_u8 (int32_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_conv_s8_f32 (int8_t *dest, +void oil_conv_s8_f32 (int8_t *dest, int dstr, const float *src, int sstr, int n); -void oil_conv_s8_f64 (int8_t *dest, +void oil_conv_s8_f64 (int8_t *dest, int dstr, const double *src, int sstr, int n); -void oil_conv_s8_s16 (int8_t *dest, +void oil_conv_s8_s16 (int8_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_conv_s8_s32 (int8_t *dest, +void oil_conv_s8_s32 (int8_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_conv_s8_u16 (int8_t *dest, +void oil_conv_s8_u16 (int8_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_conv_s8_u32 (int8_t *dest, +void oil_conv_s8_u32 (int8_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_conv_s8_u8 (int8_t *dest, +void oil_conv_s8_u8 (int8_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_conv_u16_f32 (uint16_t *dest, +void oil_conv_u16_f32 (uint16_t *dest, int dstr, const float *src, int sstr, int n); -void oil_conv_u16_f64 (uint16_t *dest, +void oil_conv_u16_f64 (uint16_t *dest, int dstr, const double *src, int sstr, int n); -void oil_conv_u16_s16 (uint16_t *dest, +void oil_conv_u16_s16 (uint16_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_conv_u16_s32 (uint16_t *dest, +void oil_conv_u16_s32 (uint16_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_conv_u16_s8 (uint16_t *dest, +void oil_conv_u16_s8 (uint16_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_conv_u16_u32 (uint16_t *dest, +void oil_conv_u16_u32 (uint16_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); -void oil_conv_u16_u8 (uint16_t *dest, +void oil_conv_u16_u8 (uint16_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_conv_u32_f32 (uint32_t *dest, +void oil_conv_u32_f32 (uint32_t *dest, int dstr, const float *src, int sstr, int n); -void oil_conv_u32_f64 (uint32_t *dest, +void oil_conv_u32_f64 (uint32_t *dest, int dstr, const double *src, int sstr, int n); -void oil_conv_u32_s16 (uint32_t *dest, +void oil_conv_u32_s16 (uint32_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_conv_u32_s32 (uint32_t *dest, +void oil_conv_u32_s32 (uint32_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_conv_u32_s8 (uint32_t *dest, +void oil_conv_u32_s8 (uint32_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_conv_u32_u16 (uint32_t *dest, +void oil_conv_u32_u16 (uint32_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_conv_u32_u8 (uint32_t *dest, +void oil_conv_u32_u8 (uint32_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n); -void oil_conv_u8_f32 (uint8_t *dest, +void oil_conv_u8_f32 (uint8_t *dest, int dstr, const float *src, int sstr, int n); -void oil_conv_u8_f64 (uint8_t *dest, +void oil_conv_u8_f64 (uint8_t *dest, int dstr, const double *src, int sstr, int n); -void oil_conv_u8_s16 (uint8_t *dest, +void oil_conv_u8_s16 (uint8_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n); -void oil_conv_u8_s32 (uint8_t *dest, +void oil_conv_u8_s32 (uint8_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n); -void oil_conv_u8_s8 (uint8_t *dest, +void oil_conv_u8_s8 (uint8_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n); -void oil_conv_u8_u16 (uint8_t *dest, +void oil_conv_u8_u16 (uint8_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n); -void oil_conv_u8_u32 (uint8_t *dest, +void oil_conv_u8_u32 (uint8_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n); void oil_scaleconv_f32_s16 (float *dest, - const int16_t *src, + const int16_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f32_s32 (float *dest, - const int32_t *src, + const int32_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f32_s8 (float *dest, - const int8_t *src, + const int8_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f32_u16 (float *dest, - const uint16_t *src, + const uint16_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f32_u32 (float *dest, - const uint32_t *src, + const uint32_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f32_u8 (float *dest, - const uint8_t *src, + const uint8_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f64_s16 (double *dest, - const int16_t *src, + const int16_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f64_s32 (double *dest, - const int32_t *src, + const int32_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f64_s8 (double *dest, - const int8_t *src, + const int8_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f64_u16 (double *dest, - const uint16_t *src, + const uint16_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f64_u32 (double *dest, - const uint32_t *src, + const uint32_t *src, int n, const double *s2_1, const double *s3_1); void oil_scaleconv_f64_u8 (double *dest, - const uint8_t *src, + const uint8_t *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_s16_f32 (int16_t *dest, +void oil_scaleconv_s16_f32 (int16_t *dest, const float *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_s16_f64 (int16_t *dest, +void oil_scaleconv_s16_f64 (int16_t *dest, const double *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_s32_f32 (int32_t *dest, +void oil_scaleconv_s32_f32 (int32_t *dest, const float *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_s32_f64 (int32_t *dest, +void oil_scaleconv_s32_f64 (int32_t *dest, const double *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_s8_f32 (int8_t *dest, +void oil_scaleconv_s8_f32 (int8_t *dest, const float *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_s8_f64 (int8_t *dest, +void oil_scaleconv_s8_f64 (int8_t *dest, const double *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_u16_f32 (uint16_t *dest, +void oil_scaleconv_u16_f32 (uint16_t *dest, const float *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_u16_f64 (uint16_t *dest, +void oil_scaleconv_u16_f64 (uint16_t *dest, const double *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_u32_f32 (uint32_t *dest, +void oil_scaleconv_u32_f32 (uint32_t *dest, const float *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_u32_f64 (uint32_t *dest, +void oil_scaleconv_u32_f64 (uint32_t *dest, const double *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_u8_f32 (uint8_t *dest, +void oil_scaleconv_u8_f32 (uint8_t *dest, const float *src, int n, const double *s2_1, const double *s3_1); -void oil_scaleconv_u8_f64 (uint8_t *dest, +void oil_scaleconv_u8_f64 (uint8_t *dest, const double *src, int n, const double *s2_1, @@ -961,13 +641,9 @@

oil_clipconv8x8_u8_s16 ()

-
void                oil_clipconv8x8_u8_s16              (uint8_t *d_8x8,
-                                                         int dstr,
-                                                         const int16_t *s_8x8,
+
void                oil_clipconv8x8_u8_s16              (uint8_t *d_8x8,
+                                                         int dstr,
+                                                         const int16_t *s_8x8,
                                                          int sstr);

Converts elements in source array s_8x8 to the destination @@ -1006,9 +682,7 @@

oil_clipconv_s16_f32 ()

-
void                oil_clipconv_s16_f32                (int16_t *dest,
+
void                oil_clipconv_s16_f32                (int16_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -1057,9 +731,7 @@
 

oil_clipconv_s16_f64 ()

-
void                oil_clipconv_s16_f64                (int16_t *dest,
+
void                oil_clipconv_s16_f64                (int16_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -1108,13 +780,9 @@
 

oil_clipconv_s16_s32 ()

-
void                oil_clipconv_s16_s32                (int16_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_clipconv_s16_s32                (int16_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -1161,13 +829,9 @@

oil_clipconv_s16_u16 ()

-
void                oil_clipconv_s16_u16                (int16_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_clipconv_s16_u16                (int16_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -1214,13 +878,9 @@

oil_clipconv_s16_u32 ()

-
void                oil_clipconv_s16_u32                (int16_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_clipconv_s16_u32                (int16_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -1267,9 +927,7 @@

oil_clipconv_s32_f32 ()

-
void                oil_clipconv_s32_f32                (int32_t *dest,
+
void                oil_clipconv_s32_f32                (int32_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -1318,9 +976,7 @@
 

oil_clipconv_s32_f64 ()

-
void                oil_clipconv_s32_f64                (int32_t *dest,
+
void                oil_clipconv_s32_f64                (int32_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -1369,13 +1025,9 @@
 

oil_clipconv_s32_u32 ()

-
void                oil_clipconv_s32_u32                (int32_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_clipconv_s32_u32                (int32_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -1422,9 +1074,7 @@

oil_clipconv_s8_f32 ()

-
void                oil_clipconv_s8_f32                 (int8_t *dest,
+
void                oil_clipconv_s8_f32                 (int8_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -1473,9 +1123,7 @@
 

oil_clipconv_s8_f64 ()

-
void                oil_clipconv_s8_f64                 (int8_t *dest,
+
void                oil_clipconv_s8_f64                 (int8_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -1524,13 +1172,9 @@
 

oil_clipconv_s8_s16 ()

-
void                oil_clipconv_s8_s16                 (int8_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_clipconv_s8_s16                 (int8_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -1577,13 +1221,9 @@

oil_clipconv_s8_s32 ()

-
void                oil_clipconv_s8_s32                 (int8_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_clipconv_s8_s32                 (int8_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -1630,13 +1270,9 @@

oil_clipconv_s8_u16 ()

-
void                oil_clipconv_s8_u16                 (int8_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_clipconv_s8_u16                 (int8_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -1683,13 +1319,9 @@

oil_clipconv_s8_u32 ()

-
void                oil_clipconv_s8_u32                 (int8_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_clipconv_s8_u32                 (int8_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -1736,13 +1368,9 @@

oil_clipconv_s8_u8 ()

-
void                oil_clipconv_s8_u8                  (int8_t *dest,
-                                                         int dstr,
-                                                         const uint8_t *src,
+
void                oil_clipconv_s8_u8                  (int8_t *dest,
+                                                         int dstr,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -1789,9 +1417,7 @@

oil_clipconv_u16_f32 ()

-
void                oil_clipconv_u16_f32                (uint16_t *dest,
+
void                oil_clipconv_u16_f32                (uint16_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -1840,9 +1466,7 @@
 

oil_clipconv_u16_f64 ()

-
void                oil_clipconv_u16_f64                (uint16_t *dest,
+
void                oil_clipconv_u16_f64                (uint16_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -1891,13 +1515,9 @@
 

oil_clipconv_u16_s16 ()

-
void                oil_clipconv_u16_s16                (uint16_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_clipconv_u16_s16                (uint16_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -1944,13 +1564,9 @@

oil_clipconv_u16_s32 ()

-
void                oil_clipconv_u16_s32                (uint16_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_clipconv_u16_s32                (uint16_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -1997,13 +1613,9 @@

oil_clipconv_u16_u32 ()

-
void                oil_clipconv_u16_u32                (uint16_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_clipconv_u16_u32                (uint16_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -2050,9 +1662,7 @@

oil_clipconv_u32_f32 ()

-
void                oil_clipconv_u32_f32                (uint32_t *dest,
+
void                oil_clipconv_u32_f32                (uint32_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -2101,9 +1711,7 @@
 

oil_clipconv_u32_f64 ()

-
void                oil_clipconv_u32_f64                (uint32_t *dest,
+
void                oil_clipconv_u32_f64                (uint32_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -2152,13 +1760,9 @@
 

oil_clipconv_u32_s32 ()

-
void                oil_clipconv_u32_s32                (uint32_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_clipconv_u32_s32                (uint32_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -2205,9 +1809,7 @@

oil_clipconv_u8_f32 ()

-
void                oil_clipconv_u8_f32                 (uint8_t *dest,
+
void                oil_clipconv_u8_f32                 (uint8_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -2256,9 +1858,7 @@
 

oil_clipconv_u8_f64 ()

-
void                oil_clipconv_u8_f64                 (uint8_t *dest,
+
void                oil_clipconv_u8_f64                 (uint8_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -2307,13 +1907,9 @@
 

oil_clipconv_u8_s16 ()

-
void                oil_clipconv_u8_s16                 (uint8_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_clipconv_u8_s16                 (uint8_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -2360,13 +1956,9 @@

oil_clipconv_u8_s32 ()

-
void                oil_clipconv_u8_s32                 (uint8_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_clipconv_u8_s32                 (uint8_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -2413,13 +2005,9 @@

oil_clipconv_u8_s8 ()

-
void                oil_clipconv_u8_s8                  (uint8_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_clipconv_u8_s8                  (uint8_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -2466,13 +2054,9 @@

oil_clipconv_u8_u16 ()

-
void                oil_clipconv_u8_u16                 (uint8_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_clipconv_u8_u16                 (uint8_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -2519,13 +2103,9 @@

oil_clipconv_u8_u32 ()

-
void                oil_clipconv_u8_u32                 (uint8_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_clipconv_u8_u32                 (uint8_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -2574,9 +2154,7 @@ oil_conv8x8_f64_s16 ()

void                oil_conv8x8_f64_s16                 (double *d_8x8,
                                                          int dstr,
-                                                         const int16_t *s_8x8,
+                                                         const int16_t *s_8x8,
                                                          int sstr);

Converts elements in source array s_8x8 to the destination @@ -2616,9 +2194,7 @@

oil_conv8x8_s16_f64 ()

-
void                oil_conv8x8_s16_f64                 (int16_t *d_8x8,
+
void                oil_conv8x8_s16_f64                 (int16_t *d_8x8,
                                                          int dstr,
                                                          const double *s_8x8,
                                                          int sstr);
@@ -2709,9 +2285,7 @@ oil_conv_f32_s16 ()
void                oil_conv_f32_s16                    (float *dest,
                                                          int dstr,
-                                                         const int16_t *src,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -2760,9 +2334,7 @@ oil_conv_f32_s32 ()

void                oil_conv_f32_s32                    (float *dest,
                                                          int dstr,
-                                                         const int32_t *src,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -2811,9 +2383,7 @@ oil_conv_f32_s8 ()

void                oil_conv_f32_s8                     (float *dest,
                                                          int dstr,
-                                                         const int8_t *src,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -2862,9 +2432,7 @@ oil_conv_f32_u16 ()

void                oil_conv_f32_u16                    (float *dest,
                                                          int dstr,
-                                                         const uint16_t *src,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -2913,9 +2481,7 @@ oil_conv_f32_u32 ()

void                oil_conv_f32_u32                    (float *dest,
                                                          int dstr,
-                                                         const uint32_t *src,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -2964,9 +2530,7 @@ oil_conv_f32_u8 ()

void                oil_conv_f32_u8                     (float *dest,
                                                          int dstr,
-                                                         const uint8_t *src,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -3064,9 +2628,7 @@ oil_conv_f64_s16 ()

void                oil_conv_f64_s16                    (double *dest,
                                                          int dstr,
-                                                         const int16_t *src,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -3115,9 +2677,7 @@ oil_conv_f64_s32 ()

void                oil_conv_f64_s32                    (double *dest,
                                                          int dstr,
-                                                         const int32_t *src,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -3166,9 +2726,7 @@ oil_conv_f64_s8 ()

void                oil_conv_f64_s8                     (double *dest,
                                                          int dstr,
-                                                         const int8_t *src,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -3217,9 +2775,7 @@ oil_conv_f64_u16 ()

void                oil_conv_f64_u16                    (double *dest,
                                                          int dstr,
-                                                         const uint16_t *src,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -3268,9 +2824,7 @@ oil_conv_f64_u32 ()

void                oil_conv_f64_u32                    (double *dest,
                                                          int dstr,
-                                                         const uint32_t *src,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -3319,9 +2873,7 @@ oil_conv_f64_u8 ()

void                oil_conv_f64_u8                     (double *dest,
                                                          int dstr,
-                                                         const uint8_t *src,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -3368,9 +2920,7 @@

oil_conv_s16_f32 ()

-
void                oil_conv_s16_f32                    (int16_t *dest,
+
void                oil_conv_s16_f32                    (int16_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -3419,9 +2969,7 @@
 

oil_conv_s16_f64 ()

-
void                oil_conv_s16_f64                    (int16_t *dest,
+
void                oil_conv_s16_f64                    (int16_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -3470,13 +3018,9 @@
 

oil_conv_s16_s32 ()

-
void                oil_conv_s16_s32                    (int16_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_conv_s16_s32                    (int16_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -3523,13 +3067,9 @@

oil_conv_s16_s8 ()

-
void                oil_conv_s16_s8                     (int16_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_conv_s16_s8                     (int16_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -3576,13 +3116,9 @@

oil_conv_s16_u16 ()

-
void                oil_conv_s16_u16                    (int16_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_conv_s16_u16                    (int16_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -3629,13 +3165,9 @@

oil_conv_s16_u32 ()

-
void                oil_conv_s16_u32                    (int16_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_conv_s16_u32                    (int16_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -3682,13 +3214,9 @@

oil_conv_s16_u8 ()

-
void                oil_conv_s16_u8                     (int16_t *dest,
-                                                         int dstr,
-                                                         const uint8_t *src,
+
void                oil_conv_s16_u8                     (int16_t *dest,
+                                                         int dstr,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -3735,9 +3263,7 @@

oil_conv_s32_f32 ()

-
void                oil_conv_s32_f32                    (int32_t *dest,
+
void                oil_conv_s32_f32                    (int32_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -3786,9 +3312,7 @@
 

oil_conv_s32_f64 ()

-
void                oil_conv_s32_f64                    (int32_t *dest,
+
void                oil_conv_s32_f64                    (int32_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -3837,13 +3361,9 @@
 

oil_conv_s32_s16 ()

-
void                oil_conv_s32_s16                    (int32_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_conv_s32_s16                    (int32_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -3890,13 +3410,9 @@

oil_conv_s32_s8 ()

-
void                oil_conv_s32_s8                     (int32_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_conv_s32_s8                     (int32_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -3943,13 +3459,9 @@

oil_conv_s32_u16 ()

-
void                oil_conv_s32_u16                    (int32_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_conv_s32_u16                    (int32_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -3996,13 +3508,9 @@

oil_conv_s32_u32 ()

-
void                oil_conv_s32_u32                    (int32_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_conv_s32_u32                    (int32_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -4049,13 +3557,9 @@

oil_conv_s32_u8 ()

-
void                oil_conv_s32_u8                     (int32_t *dest,
-                                                         int dstr,
-                                                         const uint8_t *src,
+
void                oil_conv_s32_u8                     (int32_t *dest,
+                                                         int dstr,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -4102,9 +3606,7 @@

oil_conv_s8_f32 ()

-
void                oil_conv_s8_f32                     (int8_t *dest,
+
void                oil_conv_s8_f32                     (int8_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -4153,9 +3655,7 @@
 

oil_conv_s8_f64 ()

-
void                oil_conv_s8_f64                     (int8_t *dest,
+
void                oil_conv_s8_f64                     (int8_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -4204,13 +3704,9 @@
 

oil_conv_s8_s16 ()

-
void                oil_conv_s8_s16                     (int8_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_conv_s8_s16                     (int8_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -4257,13 +3753,9 @@

oil_conv_s8_s32 ()

-
void                oil_conv_s8_s32                     (int8_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_conv_s8_s32                     (int8_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -4310,13 +3802,9 @@

oil_conv_s8_u16 ()

-
void                oil_conv_s8_u16                     (int8_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_conv_s8_u16                     (int8_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -4363,13 +3851,9 @@

oil_conv_s8_u32 ()

-
void                oil_conv_s8_u32                     (int8_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_conv_s8_u32                     (int8_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -4416,13 +3900,9 @@

oil_conv_s8_u8 ()

-
void                oil_conv_s8_u8                      (int8_t *dest,
-                                                         int dstr,
-                                                         const uint8_t *src,
+
void                oil_conv_s8_u8                      (int8_t *dest,
+                                                         int dstr,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -4469,9 +3949,7 @@

oil_conv_u16_f32 ()

-
void                oil_conv_u16_f32                    (uint16_t *dest,
+
void                oil_conv_u16_f32                    (uint16_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -4520,9 +3998,7 @@
 

oil_conv_u16_f64 ()

-
void                oil_conv_u16_f64                    (uint16_t *dest,
+
void                oil_conv_u16_f64                    (uint16_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -4571,13 +4047,9 @@
 

oil_conv_u16_s16 ()

-
void                oil_conv_u16_s16                    (uint16_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_conv_u16_s16                    (uint16_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -4624,13 +4096,9 @@

oil_conv_u16_s32 ()

-
void                oil_conv_u16_s32                    (uint16_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_conv_u16_s32                    (uint16_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -4677,13 +4145,9 @@

oil_conv_u16_s8 ()

-
void                oil_conv_u16_s8                     (uint16_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_conv_u16_s8                     (uint16_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -4730,13 +4194,9 @@

oil_conv_u16_u32 ()

-
void                oil_conv_u16_u32                    (uint16_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_conv_u16_u32                    (uint16_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -4783,13 +4243,9 @@

oil_conv_u16_u8 ()

-
void                oil_conv_u16_u8                     (uint16_t *dest,
-                                                         int dstr,
-                                                         const uint8_t *src,
+
void                oil_conv_u16_u8                     (uint16_t *dest,
+                                                         int dstr,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -4836,9 +4292,7 @@

oil_conv_u32_f32 ()

-
void                oil_conv_u32_f32                    (uint32_t *dest,
+
void                oil_conv_u32_f32                    (uint32_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -4887,9 +4341,7 @@
 

oil_conv_u32_f64 ()

-
void                oil_conv_u32_f64                    (uint32_t *dest,
+
void                oil_conv_u32_f64                    (uint32_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -4938,13 +4390,9 @@
 

oil_conv_u32_s16 ()

-
void                oil_conv_u32_s16                    (uint32_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_conv_u32_s16                    (uint32_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -4991,13 +4439,9 @@

oil_conv_u32_s32 ()

-
void                oil_conv_u32_s32                    (uint32_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_conv_u32_s32                    (uint32_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -5044,13 +4488,9 @@

oil_conv_u32_s8 ()

-
void                oil_conv_u32_s8                     (uint32_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_conv_u32_s8                     (uint32_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -5097,13 +4537,9 @@

oil_conv_u32_u16 ()

-
void                oil_conv_u32_u16                    (uint32_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_conv_u32_u16                    (uint32_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -5150,13 +4586,9 @@

oil_conv_u32_u8 ()

-
void                oil_conv_u32_u8                     (uint32_t *dest,
-                                                         int dstr,
-                                                         const uint8_t *src,
+
void                oil_conv_u32_u8                     (uint32_t *dest,
+                                                         int dstr,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n);

@@ -5203,9 +4635,7 @@

oil_conv_u8_f32 ()

-
void                oil_conv_u8_f32                     (uint8_t *dest,
+
void                oil_conv_u8_f32                     (uint8_t *dest,
                                                          int dstr,
                                                          const float *src,
                                                          int sstr,
@@ -5254,9 +4684,7 @@
 

oil_conv_u8_f64 ()

-
void                oil_conv_u8_f64                     (uint8_t *dest,
+
void                oil_conv_u8_f64                     (uint8_t *dest,
                                                          int dstr,
                                                          const double *src,
                                                          int sstr,
@@ -5305,13 +4733,9 @@
 

oil_conv_u8_s16 ()

-
void                oil_conv_u8_s16                     (uint8_t *dest,
-                                                         int dstr,
-                                                         const int16_t *src,
+
void                oil_conv_u8_s16                     (uint8_t *dest,
+                                                         int dstr,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n);

@@ -5358,13 +4782,9 @@

oil_conv_u8_s32 ()

-
void                oil_conv_u8_s32                     (uint8_t *dest,
-                                                         int dstr,
-                                                         const int32_t *src,
+
void                oil_conv_u8_s32                     (uint8_t *dest,
+                                                         int dstr,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n);

@@ -5411,13 +4831,9 @@

oil_conv_u8_s8 ()

-
void                oil_conv_u8_s8                      (uint8_t *dest,
-                                                         int dstr,
-                                                         const int8_t *src,
+
void                oil_conv_u8_s8                      (uint8_t *dest,
+                                                         int dstr,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n);

@@ -5464,13 +4880,9 @@

oil_conv_u8_u16 ()

-
void                oil_conv_u8_u16                     (uint8_t *dest,
-                                                         int dstr,
-                                                         const uint16_t *src,
+
void                oil_conv_u8_u16                     (uint8_t *dest,
+                                                         int dstr,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n);

@@ -5517,13 +4929,9 @@

oil_conv_u8_u32 ()

-
void                oil_conv_u8_u32                     (uint8_t *dest,
-                                                         int dstr,
-                                                         const uint32_t *src,
+
void                oil_conv_u8_u32                     (uint8_t *dest,
+                                                         int dstr,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n);

@@ -5571,9 +4979,7 @@

oil_scaleconv_f32_s16 ()

void                oil_scaleconv_f32_s16               (float *dest,
-                                                         const int16_t *src,
+                                                         const int16_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5627,9 +5033,7 @@

oil_scaleconv_f32_s32 ()

void                oil_scaleconv_f32_s32               (float *dest,
-                                                         const int32_t *src,
+                                                         const int32_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5683,9 +5087,7 @@

oil_scaleconv_f32_s8 ()

void                oil_scaleconv_f32_s8                (float *dest,
-                                                         const int8_t *src,
+                                                         const int8_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5739,9 +5141,7 @@

oil_scaleconv_f32_u16 ()

void                oil_scaleconv_f32_u16               (float *dest,
-                                                         const uint16_t *src,
+                                                         const uint16_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5795,9 +5195,7 @@

oil_scaleconv_f32_u32 ()

void                oil_scaleconv_f32_u32               (float *dest,
-                                                         const uint32_t *src,
+                                                         const uint32_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5851,9 +5249,7 @@

oil_scaleconv_f32_u8 ()

void                oil_scaleconv_f32_u8                (float *dest,
-                                                         const uint8_t *src,
+                                                         const uint8_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5907,9 +5303,7 @@

oil_scaleconv_f64_s16 ()

void                oil_scaleconv_f64_s16               (double *dest,
-                                                         const int16_t *src,
+                                                         const int16_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -5963,9 +5357,7 @@

oil_scaleconv_f64_s32 ()

void                oil_scaleconv_f64_s32               (double *dest,
-                                                         const int32_t *src,
+                                                         const int32_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -6019,9 +5411,7 @@

oil_scaleconv_f64_s8 ()

void                oil_scaleconv_f64_s8                (double *dest,
-                                                         const int8_t *src,
+                                                         const int8_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -6075,9 +5465,7 @@

oil_scaleconv_f64_u16 ()

void                oil_scaleconv_f64_u16               (double *dest,
-                                                         const uint16_t *src,
+                                                         const uint16_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -6131,9 +5519,7 @@

oil_scaleconv_f64_u32 ()

void                oil_scaleconv_f64_u32               (double *dest,
-                                                         const uint32_t *src,
+                                                         const uint32_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -6187,9 +5573,7 @@

oil_scaleconv_f64_u8 ()

void                oil_scaleconv_f64_u8                (double *dest,
-                                                         const uint8_t *src,
+                                                         const uint8_t *src,
                                                          int n,
                                                          const double *s2_1,
                                                          const double *s3_1);
@@ -6242,9 +5626,7 @@

oil_scaleconv_s16_f32 ()

-
void                oil_scaleconv_s16_f32               (int16_t *dest,
+
void                oil_scaleconv_s16_f32               (int16_t *dest,
                                                          const float *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6298,9 +5680,7 @@
 

oil_scaleconv_s16_f64 ()

-
void                oil_scaleconv_s16_f64               (int16_t *dest,
+
void                oil_scaleconv_s16_f64               (int16_t *dest,
                                                          const double *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6354,9 +5734,7 @@
 

oil_scaleconv_s32_f32 ()

-
void                oil_scaleconv_s32_f32               (int32_t *dest,
+
void                oil_scaleconv_s32_f32               (int32_t *dest,
                                                          const float *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6410,9 +5788,7 @@
 

oil_scaleconv_s32_f64 ()

-
void                oil_scaleconv_s32_f64               (int32_t *dest,
+
void                oil_scaleconv_s32_f64               (int32_t *dest,
                                                          const double *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6466,9 +5842,7 @@
 

oil_scaleconv_s8_f32 ()

-
void                oil_scaleconv_s8_f32                (int8_t *dest,
+
void                oil_scaleconv_s8_f32                (int8_t *dest,
                                                          const float *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6522,9 +5896,7 @@
 

oil_scaleconv_s8_f64 ()

-
void                oil_scaleconv_s8_f64                (int8_t *dest,
+
void                oil_scaleconv_s8_f64                (int8_t *dest,
                                                          const double *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6578,9 +5950,7 @@
 

oil_scaleconv_u16_f32 ()

-
void                oil_scaleconv_u16_f32               (uint16_t *dest,
+
void                oil_scaleconv_u16_f32               (uint16_t *dest,
                                                          const float *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6634,9 +6004,7 @@
 

oil_scaleconv_u16_f64 ()

-
void                oil_scaleconv_u16_f64               (uint16_t *dest,
+
void                oil_scaleconv_u16_f64               (uint16_t *dest,
                                                          const double *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6690,9 +6058,7 @@
 

oil_scaleconv_u32_f32 ()

-
void                oil_scaleconv_u32_f32               (uint32_t *dest,
+
void                oil_scaleconv_u32_f32               (uint32_t *dest,
                                                          const float *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6746,9 +6112,7 @@
 

oil_scaleconv_u32_f64 ()

-
void                oil_scaleconv_u32_f64               (uint32_t *dest,
+
void                oil_scaleconv_u32_f64               (uint32_t *dest,
                                                          const double *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6802,9 +6166,7 @@
 

oil_scaleconv_u8_f32 ()

-
void                oil_scaleconv_u8_f32                (uint8_t *dest,
+
void                oil_scaleconv_u8_f32                (uint8_t *dest,
                                                          const float *src,
                                                          int n,
                                                          const double *s2_1,
@@ -6858,9 +6220,7 @@
 

oil_scaleconv_u8_f64 ()

-
void                oil_scaleconv_u8_f64                (uint8_t *dest,
+
void                oil_scaleconv_u8_f64                (uint8_t *dest,
                                                          const double *src,
                                                          int n,
                                                          const double *s2_1,
--- liboil-0.3.11.orig/doc/html/liboil-liboilfuncs-doc.html
+++ liboil-0.3.11/doc/html/liboil-liboilfuncs-doc.html
@@ -24,7 +24,7 @@
 
+ Description

-OilParameter +OilParameter

OilParameter — Functions to manipulate prototype parameter information.

Top  |  - Description
@@ -57,107 +57,53 @@ int n, const double *s2_1, const double *s3_1); -void oil_clip_s16 (int16_t *dest, +void oil_clip_s16 (int16_t *dest, int dstr, - const int16_t *src, + const int16_t *src, int sstr, int n, - const int16_t *s2_1, - const int16_t *s3_1); -void oil_clip_s32 (int32_t *dest, + const int16_t *s2_1, + const int16_t *s3_1); +void oil_clip_s32 (int32_t *dest, int dstr, - const int32_t *src, + const int32_t *src, int sstr, int n, - const int32_t *s2_1, - const int32_t *s3_1); -void oil_clip_s8 (int8_t *dest, + const int32_t *s2_1, + const int32_t *s3_1); +void oil_clip_s8 (int8_t *dest, int dstr, - const int8_t *src, + const int8_t *src, int sstr, int n, - const int8_t *s2_1, - const int8_t *s3_1); -void oil_clip_u16 (uint16_t *dest, + const int8_t *s2_1, + const int8_t *s3_1); +void oil_clip_u16 (uint16_t *dest, int dstr, - const uint16_t *src, + const uint16_t *src, int sstr, int n, - const uint16_t *s2_1, - const uint16_t *s3_1); -void oil_clip_u32 (uint32_t *dest, + const uint16_t *s2_1, + const uint16_t *s3_1); +void oil_clip_u32 (uint32_t *dest, int dstr, - const uint32_t *src, + const uint32_t *src, int sstr, int n, - const uint32_t *s2_1, - const uint32_t *s3_1); -void oil_clip_u8 (uint8_t *dest, + const uint32_t *s2_1, + const uint32_t *s3_1); +void oil_clip_u8 (uint8_t *dest, int dstr, - const uint8_t *src, + const uint8_t *src, int sstr, int n, - const uint8_t *s2_1, - const uint8_t *s3_1); -void oil_dequantize8x8_s16 (int16_t *d_8x8, + const uint8_t *s2_1, + const uint8_t *s3_1); +void oil_dequantize8x8_s16 (int16_t *d_8x8, int dstr, - const int16_t *s1_8x8, + const int16_t *s1_8x8, int sstr1, - const int16_t *s2_8x8, + const int16_t *s2_8x8, int sstr2); void oil_diffsquaresum_f64 (double *d_1, const double *src1, @@ -165,209 +111,99 @@ const double *src2, int sstr2, int n); -void oil_md5 (uint32_t *i_4, - const uint32_t *s_16); -void oil_mix_u8 (uint8_t *dest, - const uint8_t *src1, - const uint8_t *src2, - const uint8_t *src3, +void oil_md5 (uint32_t *i_4, + const uint32_t *s_16); +void oil_mix_u8 (uint8_t *dest, + const uint8_t *src1, + const uint8_t *src2, + const uint8_t *src3, int n); -void oil_null (void); -void oil_scanlinescale2_u8 (uint8_t *d, - const uint8_t *s, +void oil_null (); +void oil_scanlinescale2_u8 (uint8_t *d, + const uint8_t *s, int n); void oil_sincos_f64 (double *dest1, double *dest2, int n, const double *s1_1, const double *s2_1); -void oil_utf8_validate (int32_t *d_1, - const uint8_t *s, +void oil_utf8_validate (int32_t *d_1, + const uint8_t *s, int n); -void oil_diff8x8_s16_u8 (int16_t *d_8x8, - const uint8_t *s1_8x8, +void oil_diff8x8_s16_u8 (int16_t *d_8x8, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, + const uint8_t *s2_8x8, int ss2); -void oil_diff8x8_average_s16_u8 (int16_t *d_8x8, - const uint8_t *s1_8x8, +void oil_diff8x8_average_s16_u8 (int16_t *d_8x8, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, + const uint8_t *s2_8x8, int ss2, - const uint8_t *s3_8x8, + const uint8_t *s3_8x8, int ss3); -void oil_err_inter8x8_u8_avg (uint32_t *d_1, - const uint8_t *s1_8x8, +void oil_err_inter8x8_u8_avg (uint32_t *d_1, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, - const uint8_t *s3_8x8, + const uint8_t *s2_8x8, + const uint8_t *s3_8x8, int ss2); -void oil_recon8x8_inter (uint8_t *d_8x8, +void oil_recon8x8_inter (uint8_t *d_8x8, int ds, - const uint8_t *s1_8x8, + const uint8_t *s1_8x8, int ss1, - const int16_t *s2_8x8); -void oil_err_intra8x8_u8 (uint32_t *d_1, - const uint8_t *s1_8x8, + const int16_t *s2_8x8); +void oil_err_intra8x8_u8 (uint32_t *d_1, + const uint8_t *s1_8x8, int ss1); -void oil_recon8x8_intra (uint8_t *d_8x8, +void oil_recon8x8_intra (uint8_t *d_8x8, int ds, - const int16_t *s_8x8); -void oil_colsad8x8_u8 (uint32_t *d_1, - const uint8_t *s1_8x8, + const int16_t *s_8x8); +void oil_colsad8x8_u8 (uint32_t *d_1, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, + const uint8_t *s2_8x8, int ss2); -void oil_composite_over_u8 (uint8_t *i_n, - const uint8_t *s1_n, +void oil_composite_over_u8 (uint8_t *i_n, + const uint8_t *s1_n, int n); -void oil_diff8x8_const128_s16_u8 (int16_t *d_8x8, - const uint8_t *s1_8x8, +void oil_diff8x8_const128_s16_u8 (int16_t *d_8x8, + const uint8_t *s1_8x8, int ss1); -void oil_copy8x8_u8 (uint8_t *d_8x8, +void oil_copy8x8_u8 (uint8_t *d_8x8, int ds, - const uint8_t *s_8x8, + const uint8_t *s_8x8, int ss); -void oil_err_inter8x8_u8 (uint32_t *d_1, - const uint8_t *s1_8x8, +void oil_err_inter8x8_u8 (uint32_t *d_1, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, + const uint8_t *s2_8x8, int ss2); -void oil_fdct8x8theora (const int16_t *s_8x8, - int16_t *d_8x8); -void oil_rowsad8x8_u8 (uint32_t *d_1, - const uint8_t *s1_8x8, - const uint8_t *s2_8x8); -void oil_recon8x8_inter2 (uint8_t *d_8x8, +void oil_fdct8x8theora (const int16_t *s_8x8, + int16_t *d_8x8); +void oil_rowsad8x8_u8 (uint32_t *d_1, + const uint8_t *s1_8x8, + const uint8_t *s2_8x8); +void oil_recon8x8_inter2 (uint8_t *d_8x8, int ds, - const uint8_t *s1_8x8, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, + const uint8_t *s2_8x8, int ss2, - const int16_t *s3_8x8); -void oil_composite_add_u8 (uint8_t *i_n, - const uint8_t *s1_n, + const int16_t *s3_8x8); +void oil_composite_add_u8 (uint8_t *i_n, + const uint8_t *s1_n, int n); -void oil_sad8x8_u8_avg (uint32_t *d_1, - const uint8_t *s1_8x8, +void oil_sad8x8_u8_avg (uint32_t *d_1, + const uint8_t *s1_8x8, int ss1, - const uint8_t *s2_8x8, - const uint8_t *s3_8x8, + const uint8_t *s2_8x8, + const uint8_t *s3_8x8, int ss2);
-

Description

+

Description

@@ -433,7 +269,7 @@

-

+

oil_clip_f64 ()

void                oil_clip_f64                        (double *dest,
                                                          int dstr,
@@ -491,23 +327,15 @@
 

-

+

oil_clip_s16 ()

-
void                oil_clip_s16                        (int16_t *dest,
+
void                oil_clip_s16                        (int16_t *dest,
                                                          int dstr,
-                                                         const int16_t *src,
+                                                         const int16_t *src,
                                                          int sstr,
                                                          int n,
-                                                         const int16_t *s2_1,
-                                                         const int16_t *s3_1);
+ const int16_t *s2_1, + const int16_t *s3_1);

Clips each value in src to the range [s2_1,s3_1] and places the result in dest.

@@ -559,21 +387,13 @@

oil_clip_s32 ()

-
void                oil_clip_s32                        (int32_t *dest,
+
void                oil_clip_s32                        (int32_t *dest,
                                                          int dstr,
-                                                         const int32_t *src,
+                                                         const int32_t *src,
                                                          int sstr,
                                                          int n,
-                                                         const int32_t *s2_1,
-                                                         const int32_t *s3_1);
+ const int32_t *s2_1, + const int32_t *s3_1);

Clips each value in src to the range [s2_1,s3_1] and places the result in dest.

@@ -625,21 +445,13 @@

oil_clip_s8 ()

-
void                oil_clip_s8                         (int8_t *dest,
+
void                oil_clip_s8                         (int8_t *dest,
                                                          int dstr,
-                                                         const int8_t *src,
+                                                         const int8_t *src,
                                                          int sstr,
                                                          int n,
-                                                         const int8_t *s2_1,
-                                                         const int8_t *s3_1);
+ const int8_t *s2_1, + const int8_t *s3_1);

Clips each value in src to the range [s2_1,s3_1] and places the result in dest.

@@ -691,21 +503,13 @@

oil_clip_u16 ()

-
void                oil_clip_u16                        (uint16_t *dest,
+
void                oil_clip_u16                        (uint16_t *dest,
                                                          int dstr,
-                                                         const uint16_t *src,
+                                                         const uint16_t *src,
                                                          int sstr,
                                                          int n,
-                                                         const uint16_t *s2_1,
-                                                         const uint16_t *s3_1);
+ const uint16_t *s2_1, + const uint16_t *s3_1);

Clips each value in src to the range [s2_1,s3_1] and places the result in dest.

@@ -757,21 +561,13 @@

oil_clip_u32 ()

-
void                oil_clip_u32                        (uint32_t *dest,
+
void                oil_clip_u32                        (uint32_t *dest,
                                                          int dstr,
-                                                         const uint32_t *src,
+                                                         const uint32_t *src,
                                                          int sstr,
                                                          int n,
-                                                         const uint32_t *s2_1,
-                                                         const uint32_t *s3_1);
+ const uint32_t *s2_1, + const uint32_t *s3_1);

Clips each value in src to the range [s2_1,s3_1] and places the result in dest.

@@ -823,21 +619,13 @@

oil_clip_u8 ()

-
void                oil_clip_u8                         (uint8_t *dest,
+
void                oil_clip_u8                         (uint8_t *dest,
                                                          int dstr,
-                                                         const uint8_t *src,
+                                                         const uint8_t *src,
                                                          int sstr,
                                                          int n,
-                                                         const uint8_t *s2_1,
-                                                         const uint8_t *s3_1);
+ const uint8_t *s2_1, + const uint8_t *s3_1);

Clips each value in src to the range [s2_1,s3_1] and places the result in dest.

@@ -887,19 +675,13 @@

-

+

oil_dequantize8x8_s16 ()

-
void                oil_dequantize8x8_s16               (int16_t *d_8x8,
+
void                oil_dequantize8x8_s16               (int16_t *d_8x8,
                                                          int dstr,
-                                                         const int16_t *s1_8x8,
+                                                         const int16_t *s1_8x8,
                                                          int sstr1,
-                                                         const int16_t *s2_8x8,
+                                                         const int16_t *s2_8x8,
                                                          int sstr2);

Multiplies each element in s1_8x8 by the corresponding element @@ -949,7 +731,7 @@

oil_diffsquaresum_f64 ()

-
void                oil_diffsquaresum_f64               (double *d_1,
+
void                oil_diffsquaresum_f64               (double *d_1,
                                                          const double *src1,
                                                          int sstr1,
                                                          const double *src2,
@@ -1001,12 +783,8 @@
 

oil_md5 ()

-
void                oil_md5                             (uint32_t *i_4,
-                                                         const uint32_t *s_16);
+
void                oil_md5                             (uint32_t *i_4,
+                                                         const uint32_t *s_16);

Performs an MD5 checksum iteration. The iteration operates on the 64 bytes contained in s_16, and changes the hash contained @@ -1043,18 +821,10 @@

oil_mix_u8 ()

-
void                oil_mix_u8                          (uint8_t *dest,
-                                                         const uint8_t *src1,
-                                                         const uint8_t *src2,
-                                                         const uint8_t *src3,
+
void                oil_mix_u8                          (uint8_t *dest,
+                                                         const uint8_t *src1,
+                                                         const uint8_t *src2,
+                                                         const uint8_t *src3,
                                                          int n);

Performs the compisiting operation DEST = (SRC2 IN MASK) OVER SRC1, @@ -1100,7 +870,7 @@

oil_null ()

-
void                oil_null                            (void);
+
void                oil_null                            ();

Does nothing, and does it fast.

@@ -1115,12 +885,8 @@

oil_scanlinescale2_u8 ()

-
void                oil_scanlinescale2_u8               (uint8_t *d,
-                                                         const uint8_t *s,
+
void                oil_scanlinescale2_u8               (uint8_t *d,
+                                                         const uint8_t *s,
                                                          int n);

Upsamples the source array by a factor of two. That is, if the @@ -1153,9 +919,9 @@


-

+

oil_sincos_f64 ()

-
void                oil_sincos_f64                      (double *dest1,
+
void                oil_sincos_f64                      (double *dest1,
                                                          double *dest2,
                                                          int n,
                                                          const double *s1_1,
@@ -1202,12 +968,8 @@
 

oil_utf8_validate ()

-
void                oil_utf8_validate                   (int32_t *d_1,
-                                                         const uint8_t *s,
+
void                oil_utf8_validate                   (int32_t *d_1,
+                                                         const uint8_t *s,
                                                          int n);

Checks s for valid UTF-8 characters. If the entire s array @@ -1240,18 +1002,12 @@


-

+

oil_diff8x8_s16_u8 ()

-
void                oil_diff8x8_s16_u8                  (int16_t *d_8x8,
-                                                         const uint8_t *s1_8x8,
+
void                oil_diff8x8_s16_u8                  (int16_t *d_8x8,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s2_8x8,
                                                          int ss2);

Calculates the difference of each value in s1_8x8 and s2_8x8 @@ -1295,20 +1051,12 @@

oil_diff8x8_average_s16_u8 ()

-
void                oil_diff8x8_average_s16_u8          (int16_t *d_8x8,
-                                                         const uint8_t *s1_8x8,
+
void                oil_diff8x8_average_s16_u8          (int16_t *d_8x8,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s2_8x8,
                                                          int ss2,
-                                                         const uint8_t *s3_8x8,
+                                                         const uint8_t *s3_8x8,
                                                          int ss3);

Calculates the difference of each value in s1_8x8 and the @@ -1363,19 +1111,11 @@

oil_err_inter8x8_u8_avg ()

-
void                oil_err_inter8x8_u8_avg             (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
+
void                oil_err_inter8x8_u8_avg             (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
-                                                         const uint8_t *s3_8x8,
+                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s3_8x8,
                                                          int ss2);

Calculates an intermediate 8x8 block where each element is the @@ -1432,17 +1172,11 @@

oil_recon8x8_inter ()

-
void                oil_recon8x8_inter                  (uint8_t *d_8x8,
+
void                oil_recon8x8_inter                  (uint8_t *d_8x8,
                                                          int ds,
-                                                         const uint8_t *s1_8x8,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const int16_t *s2_8x8);
+ const int16_t *s2_8x8);

Adds each element in s1_8x8 and s2_8x8, clamps to the range [0,255], and places the result in the destination array.

@@ -1484,12 +1218,8 @@

oil_err_intra8x8_u8 ()

-
void                oil_err_intra8x8_u8                 (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
+
void                oil_err_intra8x8_u8                 (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1);

Calculates the sum of squared differences from the mean over @@ -1523,13 +1253,9 @@

oil_recon8x8_intra ()

-
void                oil_recon8x8_intra                  (uint8_t *d_8x8,
+
void                oil_recon8x8_intra                  (uint8_t *d_8x8,
                                                          int ds,
-                                                         const int16_t *s_8x8);
+ const int16_t *s_8x8);

Adds 128 to each value in the source array, clamps to the range [0,255], and places the result in the destination array.

@@ -1561,16 +1287,10 @@

oil_colsad8x8_u8 ()

-
void                oil_colsad8x8_u8                    (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
+
void                oil_colsad8x8_u8                    (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s2_8x8,
                                                          int ss2);

Divides the 8x8 block into 16 1x4 regions, and calculates the @@ -1615,14 +1335,10 @@


-

+

oil_composite_over_u8 ()

-
void                oil_composite_over_u8               (uint8_t *i_n,
-                                                         const uint8_t *s1_n,
+
void                oil_composite_over_u8               (uint8_t *i_n,
+                                                         const uint8_t *s1_n,
                                                          int n);

Performs the compositing operation DEST = SRC OVER DEST.

@@ -1652,14 +1368,10 @@

-

+

oil_diff8x8_const128_s16_u8 ()

-
void                oil_diff8x8_const128_s16_u8         (int16_t *d_8x8,
-                                                         const uint8_t *s1_8x8,
+
void                oil_diff8x8_const128_s16_u8         (int16_t *d_8x8,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1);

Subtracts 128 from each value in s1_8x8 @@ -1691,15 +1403,11 @@


-

+

oil_copy8x8_u8 ()

-
void                oil_copy8x8_u8                      (uint8_t *d_8x8,
+
void                oil_copy8x8_u8                      (uint8_t *d_8x8,
                                                          int ds,
-                                                         const uint8_t *s_8x8,
+                                                         const uint8_t *s_8x8,
                                                          int ss);

Copies an 8x8 block.

@@ -1734,18 +1442,12 @@

-

+

oil_err_inter8x8_u8 ()

-
void                oil_err_inter8x8_u8                 (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
+
void                oil_err_inter8x8_u8                 (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s2_8x8,
                                                          int ss2);

Calculates an intermediate 8x8 block where each element is the @@ -1790,14 +1492,10 @@


-

+

oil_fdct8x8theora ()

-
void                oil_fdct8x8theora                   (const int16_t *s_8x8,
-                                                         int16_t *d_8x8);
+
void                oil_fdct8x8theora                   (const int16_t *s_8x8,
+                                                         int16_t *d_8x8);

Calculates the FDCT transformation of s_8x8 according to the Theora specification and places the result in d_8x8. @@ -1828,15 +1526,9 @@

oil_rowsad8x8_u8 ()

-
void                oil_rowsad8x8_u8                    (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
-                                                         const uint8_t *s2_8x8);
+
void                oil_rowsad8x8_u8                    (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
+                                                         const uint8_t *s2_8x8);

Calculates the sum of absolute differences between s1_8x8 and s1_8s8 for the first 4 elements of the first row, and the sum of absolute @@ -1873,21 +1565,13 @@

oil_recon8x8_inter2 ()

-
void                oil_recon8x8_inter2                 (uint8_t *d_8x8,
+
void                oil_recon8x8_inter2                 (uint8_t *d_8x8,
                                                          int ds,
-                                                         const uint8_t *s1_8x8,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s2_8x8,
                                                          int ss2,
-                                                         const int16_t *s3_8x8);
+ const int16_t *s3_8x8);

Adds each element in s1_8x8 and s2_8x8, divides by 2, and adds to s3_8x8, clamps to the range [0,255], and places the result in @@ -1940,12 +1624,8 @@

oil_composite_add_u8 ()

-
void                oil_composite_add_u8                (uint8_t *i_n,
-                                                         const uint8_t *s1_n,
+
void                oil_composite_add_u8                (uint8_t *i_n,
+                                                         const uint8_t *s1_n,
                                                          int n);

Performs the compositing operation DEST = SRC ADD DEST.

@@ -1975,21 +1655,13 @@

-

+

oil_sad8x8_u8_avg ()

-
void                oil_sad8x8_u8_avg                   (uint32_t *d_1,
-                                                         const uint8_t *s1_8x8,
+
void                oil_sad8x8_u8_avg                   (uint32_t *d_1,
+                                                         const uint8_t *s1_8x8,
                                                          int ss1,
-                                                         const uint8_t *s2_8x8,
-                                                         const uint8_t *s3_8x8,
+                                                         const uint8_t *s2_8x8,
+                                                         const uint8_t *s3_8x8,
                                                          int ss2);

Calculates the sum of absolute differences between s1_8x8 and --- liboil-0.3.11.orig/doc/html/liboil-liboilprofile.html +++ liboil-0.3.11/doc/html/liboil-liboilprofile.html @@ -22,16 +22,16 @@ Liboil Reference Manual Next -Top +Top  |  - Description + Description

@@ -56,7 +56,7 @@
-

Description

+

Description

@@ -64,11 +64,11 @@

-

Details

+

Details

-

+

OilProfile

-
typedef struct {
+
typedef struct {
 } OilProfile;
 

@@ -79,9 +79,9 @@


-

+

OIL_PROFILE_HIST_LENGTH

-
#define OIL_PROFILE_HIST_LENGTH 10
+
#define OIL_PROFILE_HIST_LENGTH 10
 

Internal definition of the number of histogram entries in OilProfile.

@@ -91,9 +91,9 @@

-

+

oil_profile_stamp ()

-
unsigned long       oil_profile_stamp                   (void);
+
unsigned long       oil_profile_stamp                   (void);

Creates a timestamp based on a CPU-specific high-frequency counter, if available.

@@ -111,9 +111,9 @@

-

+

oil_profile_init ()

-
void                oil_profile_init                    (OilProfile *prof);
+
void                oil_profile_init                    (OilProfile *prof);

Initializes a profiling structure.

@@ -130,9 +130,9 @@


-

+

oil_profile_stop_handle ()

-
void                oil_profile_stop_handle             (OilProfile *prof);
+
void                oil_profile_stop_handle             (OilProfile *prof);

Handles post-processing of a single profiling run.

@@ -152,9 +152,9 @@

-

+

oil_profile_get_ave_std ()

-
void                oil_profile_get_ave_std             (OilProfile *prof,
+
void                oil_profile_get_ave_std             (OilProfile *prof,
                                                          double *ave_p,
                                                          double *std_p);

@@ -188,9 +188,9 @@


-

+

oil_profile_start()

-
#define             oil_profile_start(x)
+
#define             oil_profile_start(x)

Starts a profiling run by obtaining a timestamp via oil_profile_stamp() and writing it into x.

@@ -208,9 +208,9 @@

-

+

oil_profile_stop()

-
#define             oil_profile_stop(x)
+
#define             oil_profile_stop(x)

Stops a profiling run by obtaining a timestamp via oil_profile_stamp() and writing it into x. It then calls oil_profile_stop_handle() to --- liboil-0.3.11.orig/doc/html/liboil-liboildebug.html +++ liboil-0.3.11/doc/html/liboil-liboildebug.html @@ -22,16 +22,16 @@

- + Description

-OilProfile +OilProfile

OilProfile — Measuring the length of time needed to execute Liboil functions.

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -63,7 +63,7 @@
-

Description

+

Description

@@ -71,11 +71,11 @@

-

Details

+

Details

-

+

OilDebugPrintFunc ()

-
void                (*OilDebugPrintFunc)                (int level,
+
void                (*OilDebugPrintFunc)                (int level,
                                                          const char *file,
                                                          const char *func,
                                                          int line,
@@ -126,9 +126,9 @@
 

-

+

enum OilDebugLevel

-
typedef enum {
+
typedef enum {
   OIL_DEBUG_NONE = 0,
   OIL_DEBUG_ERROR,
   OIL_DEBUG_WARNING,
@@ -145,9 +145,9 @@
 

-

+

oil_debug_set_print_function ()

-
void                oil_debug_set_print_function        (OilDebugPrintFunc func);
+
void                oil_debug_set_print_function        (OilDebugPrintFunc func);

Sets the function to call when outputting debugging information. A value of NULL for func will restore the default handler, @@ -166,9 +166,9 @@


-

+

oil_debug_get_level ()

-
int                 oil_debug_get_level                 (void);
+
int                 oil_debug_get_level                 (void);

Gets the current debug level.

@@ -185,9 +185,9 @@


-

+

oil_debug_set_level ()

-
void                oil_debug_set_level                 (int level);
+
void                oil_debug_set_level                 (int level);

Sets the current debug level.

@@ -204,9 +204,9 @@


-

+

OIL_ERROR()

-
#define OIL_ERROR(...) OIL_DEBUG_PRINT(OIL_DEBUG_ERROR, __VA_ARGS__)
+
#define OIL_ERROR(...) OIL_DEBUG_PRINT(OIL_DEBUG_ERROR, __VA_ARGS__)
 

Macro to call OIL_DEBUG_PRINT() with a level of OIL_DEBUG_ERROR.

@@ -226,9 +226,9 @@

-

+

OIL_WARNING()

-
#define OIL_WARNING(...) OIL_DEBUG_PRINT(OIL_DEBUG_WARNING, __VA_ARGS__)
+
#define OIL_WARNING(...) OIL_DEBUG_PRINT(OIL_DEBUG_WARNING, __VA_ARGS__)
 

Macro to call OIL_DEBUG_PRINT() with a level of OIL_DEBUG_WARNING.

@@ -248,9 +248,9 @@

-

+

OIL_INFO()

-
#define OIL_INFO(...) OIL_DEBUG_PRINT(OIL_DEBUG_INFO, __VA_ARGS__)
+
#define OIL_INFO(...) OIL_DEBUG_PRINT(OIL_DEBUG_INFO, __VA_ARGS__)
 

Macro to call OIL_DEBUG_PRINT() with a level of OIL_DEBUG_INFO.

@@ -270,9 +270,9 @@

-

+

OIL_DEBUG()

-
#define OIL_DEBUG(...) OIL_DEBUG_PRINT(OIL_DEBUG_DEBUG, __VA_ARGS__)
+
#define OIL_DEBUG(...) OIL_DEBUG_PRINT(OIL_DEBUG_DEBUG, __VA_ARGS__)
 

Macro to call OIL_DEBUG_PRINT() with a level of OIL_DEBUG_DEBUG.

@@ -292,7 +292,7 @@

-

+

OIL_LOG()

#define OIL_LOG(...) OIL_DEBUG_PRINT(OIL_DEBUG_LOG, __VA_ARGS__)
 
@@ -314,7 +314,7 @@

-

+

OIL_FUNCTION

#define             OIL_FUNCTION

@@ -326,7 +326,7 @@


-

+

OIL_DEBUG_PRINT()

#define             OIL_DEBUG_PRINT(level, ...)

--- liboil-0.3.11.orig/doc/html/liboil-liboiltypes.html +++ liboil-0.3.11/doc/html/liboil-liboiltypes.html @@ -22,16 +22,16 @@

- + Description

-Debug +Debug

Debug — Printing and formatting debug information

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -74,7 +74,7 @@
-

Description

+

Description

@@ -82,11 +82,11 @@

-

Details

+

Details

-

+

enum OilType

-
typedef enum {
+
typedef enum {
   OIL_TYPE_UNKNOWN = 0,
   OIL_TYPE_INT,
   OIL_TYPE_s8,
@@ -119,9 +119,9 @@
 

-

+

oil_type_sizeof ()

-
int                 oil_type_sizeof                     (OilType type);
+
int                 oil_type_sizeof                     (OilType type);

Looks up the size of the OilType represented by type.

@@ -145,9 +145,9 @@


-

+

oil_type_is_floating_point()

-
#define             oil_type_is_floating_point(type)
+
#define             oil_type_is_floating_point(type)

@@ -164,9 +164,9 @@

-

+

oil_type_name ()

-
const char*         oil_type_name                       (OilType type);
+
const char*         oil_type_name                       (OilType type);

Looks up the name of the OilType given by type.

@@ -190,9 +190,9 @@


-

+

enum OilArgType

-
typedef enum {
+
typedef enum {
   OIL_ARG_UNKNOWN = 0,
   OIL_ARG_N,
   OIL_ARG_M,
@@ -227,9 +227,9 @@
 

-

+

oil_arg_type_name ()

-
const char*         oil_arg_type_name                   (OilArgType type);
+
const char*         oil_arg_type_name                   (OilArgType type);

Looks up the name of the OilArgType specified by type.

@@ -253,9 +253,9 @@


-

+

oil_type_s8

-
#define oil_type_s8 int8_t
+
#define oil_type_s8 int8_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -265,9 +265,9 @@

-

+

oil_type_u8

-
#define oil_type_u8 uint8_t
+
#define oil_type_u8 uint8_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -277,9 +277,9 @@

-

+

oil_type_s16

-
#define oil_type_s16 int16_t
+
#define oil_type_s16 int16_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -289,9 +289,9 @@

-

+

oil_type_u16

-
#define oil_type_u16 uint16_t
+
#define oil_type_u16 uint16_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -301,9 +301,9 @@

-

+

oil_type_s32

-
#define oil_type_s32 int32_t
+
#define oil_type_s32 int32_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -313,9 +313,9 @@

-

+

oil_type_u32

-
#define oil_type_u32 uint32_t
+
#define oil_type_u32 uint32_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -325,9 +325,9 @@

-

+

oil_type_s64

-
#define oil_type_s64 int64_t
+
#define oil_type_s64 int64_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -337,9 +337,9 @@

-

+

oil_type_u64

-
#define oil_type_u64 uint64_t
+
#define oil_type_u64 uint64_t
 

Useful for autogenerated code. Do not use otherwise.

@@ -349,9 +349,9 @@

-

+

oil_type_f32

-
#define oil_type_f32 float
+
#define oil_type_f32 float
 

Useful for autogenerated code. Do not use otherwise.

@@ -361,9 +361,9 @@

-

+

oil_type_f64

-
#define oil_type_f64 double
+
#define oil_type_f64 double
 

Useful for autogenerated code. Do not use otherwise.

@@ -373,9 +373,9 @@

-

+

oil_type_min_s8

-
#define oil_type_min_s8 (-128)
+
#define oil_type_min_s8 (-128)
 

Useful for autogenerated code. Do not use otherwise.

@@ -385,9 +385,9 @@

-

+

oil_type_min_u8

-
#define oil_type_min_u8 (0)
+
#define oil_type_min_u8 (0)
 

Useful for autogenerated code. Do not use otherwise.

@@ -397,9 +397,9 @@

-

+

oil_type_min_s16

-
#define oil_type_min_s16 (-32768)
+
#define oil_type_min_s16 (-32768)
 

Useful for autogenerated code. Do not use otherwise.

@@ -409,9 +409,9 @@

-

+

oil_type_min_u16

-
#define oil_type_min_u16 (0)
+
#define oil_type_min_u16 (0)
 

Useful for autogenerated code. Do not use otherwise.

@@ -421,9 +421,9 @@

-

+

oil_type_min_s32

-
#define oil_type_min_s32 (-2147483647 - 1)
+
#define oil_type_min_s32 (-2147483647 - 1)
 

Useful for autogenerated code. Do not use otherwise.

@@ -433,9 +433,9 @@

-

+

oil_type_min_u32

-
#define oil_type_min_u32 (0)
+
#define oil_type_min_u32 (0)
 

Useful for autogenerated code. Do not use otherwise.

@@ -445,9 +445,9 @@

-

+

oil_type_max_s8

-
#define oil_type_max_s8 (127)
+
#define oil_type_max_s8 (127)
 

Useful for autogenerated code. Do not use otherwise.

@@ -457,9 +457,9 @@

-

+

oil_type_max_u8

-
#define oil_type_max_u8 (255)
+
#define oil_type_max_u8 (255)
 

Useful for autogenerated code. Do not use otherwise.

@@ -469,9 +469,9 @@

-

+

oil_type_max_s16

-
#define oil_type_max_s16 (32767)
+
#define oil_type_max_s16 (32767)
 

Useful for autogenerated code. Do not use otherwise.

@@ -481,9 +481,9 @@

-

+

oil_type_max_u16

-
#define oil_type_max_u16 (65535)
+
#define oil_type_max_u16 (65535)
 

Useful for autogenerated code. Do not use otherwise.

@@ -493,9 +493,9 @@

-

+

oil_type_max_s32

-
#define oil_type_max_s32 (2147483647)
+
#define oil_type_max_s32 (2147483647)
 

Useful for autogenerated code. Do not use otherwise.

@@ -505,9 +505,9 @@

-

+

oil_type_max_u32

-
#define oil_type_max_u32 (4294967295U)
+
#define oil_type_max_u32 (4294967295U)
 

Useful for autogenerated code. Do not use otherwise.

--- liboil-0.3.11.orig/doc/html/liboil-liboiltest.html +++ liboil-0.3.11/doc/html/liboil-liboiltest.html @@ -22,16 +22,16 @@
- + Description

-liboiltypes +liboiltypes

liboiltypes — Internal Liboil types

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -69,7 +69,7 @@
-

Description

+

Description

@@ -77,11 +77,11 @@

-

Details

+

Details

-

+

OilTest

-
typedef struct {
+
typedef struct {
 } OilTest;
 

@@ -93,9 +93,9 @@


-

+

OilTestFunction ()

-
void                (*OilTestFunction)                  (OilTest *test);
+
void                (*OilTestFunction)                  (OilTest *test);

Typedef for functions that initialize special values in source arrays for a particular function class.

@@ -113,9 +113,9 @@

-

+

OIL_TEST_HEADER

-
#define OIL_TEST_HEADER 256
+
#define OIL_TEST_HEADER 256
 

Default number of bytes that are prepended to the array test area.

@@ -125,9 +125,9 @@

-

+

OIL_TEST_FOOTER

-
#define OIL_TEST_FOOTER 256
+
#define OIL_TEST_FOOTER 256
 

Default number of bytes that are appended to the array test area.

@@ -137,9 +137,9 @@

-

+

oil_test_new ()

-
OilTest*            oil_test_new                        (OilFunctionClass *klass);
+
OilTest*            oil_test_new                        (OilFunctionClass *klass);

Creates a new OilTest for the OilFunctionClass represented by klass.

@@ -163,9 +163,9 @@


-

+

oil_test_init ()

-
void                oil_test_init                       (OilTest *test);
+
void                oil_test_init                       (OilTest *test);

Intializes test.

@@ -185,9 +185,9 @@

-

+

oil_test_free ()

-
void                oil_test_free                       (OilTest *test);
+
void                oil_test_free                       (OilTest *test);

Frees memory associated with test.

@@ -204,9 +204,9 @@


-

+

oil_test_set_iterations ()

-
void                oil_test_set_iterations             (OilTest *test,
+
void                oil_test_set_iterations             (OilTest *test,
                                                          int iterations);

Sets the number of iterations of test to iterations.

@@ -231,9 +231,9 @@

-

+

oil_test_check_ref ()

-
void                oil_test_check_ref                  (OilTest *test);
+
void                oil_test_check_ref                  (OilTest *test);

Runs the test specified by test on the reference function of the class being tested.

@@ -251,9 +251,9 @@

-

+

oil_test_check_impl ()

-
int                 oil_test_check_impl                 (OilTest *test,
+
int                 oil_test_check_impl                 (OilTest *test,
                                                          OilFunctionImpl *impl);

Runs the testing procedure described by test on the implementation @@ -284,9 +284,9 @@


-

+

oil_test_cleanup ()

-
void                oil_test_cleanup                    (OilTest *test);
+
void                oil_test_cleanup                    (OilTest *test);

Cleans up test.

@@ -306,9 +306,9 @@

-

+

oil_test_get_source_data ()

-
void*               oil_test_get_source_data            (OilTest *test,
+
void*               oil_test_get_source_data            (OilTest *test,
                                                          OilArgType arg_type);

@@ -338,9 +338,9 @@


-

+

oil_test_get_value ()

-
int                 oil_test_get_value                  (OilTest *test,
+
int                 oil_test_get_value                  (OilTest *test,
                                                          OilArgType arg_type);

@@ -370,9 +370,9 @@


-

+

oil_test_set_test_footer ()

-
void                oil_test_set_test_footer            (OilTest *test,
+
void                oil_test_set_test_footer            (OilTest *test,
                                                          OilParameter *p,
                                                          int test_footer);

@@ -403,9 +403,9 @@


-

+

oil_test_set_test_header ()

-
void                oil_test_set_test_header            (OilTest *test,
+
void                oil_test_set_test_header            (OilTest *test,
                                                          OilParameter *p,
                                                          int test_header);

--- liboil-0.3.11.orig/doc/html/liboil-liboilprototype.html +++ liboil-0.3.11/doc/html/liboil-liboilprototype.html @@ -22,16 +22,16 @@

- + Description

-OilTest +OilTest

OilTest — Test and profile function implementations.

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -53,7 +53,7 @@
-

Description

+

Description

@@ -61,11 +61,11 @@

-

Details

+

Details

-

+

OilPrototype

-
typedef struct {
+
typedef struct {
   int n_params;
   OilParameter *params;
   OilFunctionClass *klass;
@@ -80,9 +80,9 @@
 

-

+

oil_prototype_from_string ()

-
OilPrototype*       oil_prototype_from_string           (const char *s);
+
OilPrototype*       oil_prototype_from_string           (const char *s);

Converts the string s containing C prototype that follows Liboil parameter naming rules into a OilPrototype. If the @@ -109,9 +109,9 @@


-

+

oil_prototype_to_string ()

-
char*               oil_prototype_to_string             (OilPrototype *proto);
+
char*               oil_prototype_to_string             (OilPrototype *proto);

Converts a prototype into the corresponding C style declaration.

@@ -136,9 +136,9 @@


-

+

oil_prototype_to_arg_string ()

-
char*               oil_prototype_to_arg_string         (OilPrototype *proto);
+
char*               oil_prototype_to_arg_string         (OilPrototype *proto);

Converts a prototype into the corresponding C argument list.

@@ -163,9 +163,9 @@


-

+

oil_prototype_free ()

-
void                oil_prototype_free                  (OilPrototype *proto);
+
void                oil_prototype_free                  (OilPrototype *proto);

Frees memory associated with proto.

@@ -182,9 +182,9 @@


-

+

oil_prototype_append_param ()

-
void                oil_prototype_append_param          (OilPrototype *proto,
+
void                oil_prototype_append_param          (OilPrototype *proto,
                                                          OilParameter *param);

Appends param to the list of parameters contained in proto. The --- liboil-0.3.11.orig/doc/html/liboil-liboilcpu.html +++ liboil-0.3.11/doc/html/liboil-liboilcpu.html @@ -22,16 +22,16 @@

- + Description

-OilPrototype +OilPrototype

OilPrototype — Functions to manipulate prototype information.

Liboil Reference Manual Next
Top +
Top  |  - Description
@@ -52,7 +52,7 @@
-

Description

+

Description

@@ -62,9 +62,9 @@

Details

-

+

oil_cpu_get_flags ()

-
unsigned int        oil_cpu_get_flags                   (void);
+
unsigned int        oil_cpu_get_flags                   (void);

Returns a bitmask containing the available CPU features.

@@ -81,7 +81,7 @@


-

+

oil_cpu_fault_check_enable ()

void                oil_cpu_fault_check_enable          (void);

--- liboil-0.3.11.orig/doc/html/liboil-liboiljunk.html +++ liboil-0.3.11/doc/html/liboil-liboiljunk.html @@ -21,16 +21,16 @@

- + Description

-CPU +CPU

CPU — Check the capabilities of the current CPU

Liboil Reference Manual  
Top +
Top  |  - Description
@@ -51,17 +51,17 @@
-

Description

+

Description

-

Details

+

Details

-

+

OIL_OPT_MANGLE()

-
#define OIL_OPT_MANGLE(a) a
+
#define OIL_OPT_MANGLE(a) a
 

Used internally to implement the --enable-alternate-optimizations @@ -82,9 +82,9 @@


-

+

OIL_OPT_SUFFIX

-
#define OIL_OPT_SUFFIX
+
#define OIL_OPT_SUFFIX
 

Used internally to implement the --enable-alternate-optimizations @@ -95,9 +95,9 @@


-

+

OIL_CHECK_PROTOTYPE()

-
#define             OIL_CHECK_PROTOTYPE(a)
+
#define             OIL_CHECK_PROTOTYPE(a)

Macro used internally to implement the --enable-prototype-checking configure option.

@@ -115,9 +115,9 @@

-

+

OIL_OPT_FLAG_MANGLE()

-
#define             OIL_OPT_FLAG_MANGLE(a)
+
#define             OIL_OPT_FLAG_MANGLE(a)

Used internally to implement the --enable-alternate-optimizations configure option.

@@ -137,9 +137,9 @@

-

+

OIL_NO_CLASSES

-
#define OIL_NO_CLASSES
+
#define OIL_NO_CLASSES
 

Used internally to implement the --enable-alternate-optimizations @@ -150,9 +150,9 @@


-

+

NULL

-
#define NULL ((void *)0)
+
#define NULL ((void *)0)
 

FIXME: gtk-doc is broken and doesn't know how to ignore this.

--- liboil-0.3.11.orig/out +++ liboil-0.3.11/out @@ -0,0 +1,2181 @@ +dpkg-buildpackage: source package is liboil +dpkg-buildpackage: source version is 0.3.11-1 +dpkg-buildpackage: source changed by David Schleef +dpkg-buildpackage: host architecture i386 +dpkg-buildpackage: source version without epoch 0.3.11-1 + fakeroot debian/rules clean +test -x debian/rules +test "`id -u`" = 0 +for i in ./config.guess ./config.sub ; do \ + if test -e $i.cdbs-orig ; then \ + mv $i.cdbs-orig $i ; \ + fi ; \ + done +dh_clean +/usr/bin/make -C . -k distclean +make[1]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +Making distclean in doc +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +test -z "liboil.args liboil.hierarchy liboil.interfaces liboil.prerequisites liboil.signals liboil-unused.txt scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp ./tmpl.stamp ./sgml.stamp ./html.stamp" || rm -f liboil.args liboil.hierarchy liboil.interfaces liboil.prerequisites liboil.signals liboil-unused.txt scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp ./tmpl.stamp ./sgml.stamp ./html.stamp +rm -rf .libs _libs +rm -f *~ *.bak +rm -rf .libs +rm -f *.lo +test -z "" || rm -f +rm -f libtool +rm -f Makefile +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +Making distclean in examples +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +Making distclean in audioresample +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +rm -rf .libs _libs +test -z "libaudioresample.la" || rm -f libaudioresample.la +rm -f "./so_locations" + rm -f test_functable1 test_functable1 +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +Making distclean in videoscale +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +rm -rf .libs _libs +test -z "libvideoscale.la" || rm -f libvideoscale.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +Making distclean in taylor +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +rm -rf .libs _libs + rm -f example1 example1 +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +Making distclean in huffman +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +rm -rf .libs _libs + rm -f huffman_test huffman_test +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +Making distclean in work +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +rm -rf .libs _libs + rm -f work work +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +Making distclean in uberopt +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +rm -rf .libs _libs + rm -f uberopt uberopt +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +Making distclean in md5 +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +rm -rf .libs _libs + rm -f md5sum md5sum +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +Making distclean in jpeg +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +rm -rf .libs _libs +test -z "libjpeg.la" || rm -f libjpeg.la +rm -f "./so_locations" + rm -f jpeg_test jpeg_test + rm -f jpeg_rgb_test jpeg_rgb_test +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +Making distclean in . +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' + rm -f oil-bugreport oil-bugreport +rm -rf .libs _libs + rm -f example1 example1 + rm -f oil-graph oil-graph + rm -f oil-inspect oil-inspect + rm -f oil-test oil-test + rm -f memcpy-speed memcpy-speed + rm -f oil-suggest oil-suggest + rm -f printcpu printcpu + rm -f oil-mt19937 oil-mt19937 + rm -f report report + rm -f oil-random oil-random +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +rm -rf ./.deps +rm -f Makefile +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +Making distclean in testsuite +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +Making distclean in instruction +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' + rm -f list-impls list-impls +test -z "report" || rm -f report +rm -rf .libs _libs +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +Making distclean in . +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' + rm -f align align + rm -f moo moo + rm -f introspect introspect + rm -f proto1 proto1 + rm -f proto2 proto2 + rm -f test1 test1 + rm -f proto3 proto3 + rm -f proto4 proto4 + rm -f stride stride + rm -f dso_check dso_check + rm -f abs abs + rm -f md5 md5 + rm -f md5_profile md5_profile + rm -f trans trans + rm -f copy copy + rm -f zigzag zigzag + rm -f mmx_engine mmx_engine + rm -f stack_align stack_align +rm -rf .libs _libs + rm -f list_impls list_impls +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +rm -rf ./.deps +rm -f Makefile +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +Making distclean in liboil +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +Making distclean in deprecated +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +rm -rf .libs _libs +test -z "libdeprecated.la" || rm -f libdeprecated.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +Making distclean in utf8 +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +rm -rf .libs _libs +test -z "libutf8.la " || rm -f libutf8.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +Making distclean in sse +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +rm -rf .libs _libs +test -z "libsse.la" || rm -f libsse.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +Making distclean in simdpack +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +rm -rf .libs _libs +test -z "libsimdpack.la " || rm -f libsimdpack.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +Making distclean in ref +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +rm -rf .libs _libs +test -z "libref.la " || rm -f libref.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +Making distclean in powerpc_asm_blocks +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/powerpc_asm_blocks' +rm -rf .libs _libs +test -z "libpowerpc_asm_blocks.la" || rm -f libpowerpc_asm_blocks.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/powerpc_asm_blocks' +Making distclean in powerpc +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/powerpc' +rm -rf .libs _libs +test -z "libpowerpc.la" || rm -f libpowerpc.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/powerpc' +Making distclean in motovec +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/motovec' +rm -rf .libs _libs +test -z "libmotovec.la" || rm -f libmotovec.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/motovec' +Making distclean in mmx +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +rm -rf .libs _libs +test -z "libmmx.la" || rm -f libmmx.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +Making distclean in md5 +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +rm -rf .libs _libs +test -z "libmd5.la " || rm -f libmd5.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +Making distclean in math +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +rm -rf .libs _libs +test -z "libmath.la " || rm -f libmath.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +Making distclean in jpeg +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +rm -rf .libs _libs +test -z "libjpeg.la " || rm -f libjpeg.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +Making distclean in i386_amd64 +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +rm -rf .libs _libs +test -z "libi386_amd64.la" || rm -f libi386_amd64.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +Making distclean in i386 +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +rm -rf .libs _libs +test -z "libi386.la" || rm -f libi386.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +Making distclean in fb +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +rm -rf .libs _libs +test -z "libfb.la" || rm -f libfb.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +Making distclean in dct +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +rm -rf .libs _libs +test -z "libdct.la " || rm -f libdct.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +Making distclean in copy +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +rm -rf .libs _libs +test -z "libcopy.la " || rm -f libcopy.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +Making distclean in conv +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +rm -rf .libs _libs +test -z "libconv.la " || rm -f libconv.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +Making distclean in colorspace +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +rm -rf .libs _libs +test -z "libcolorspace.la " || rm -f libcolorspace.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +Making distclean in c +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +rm -rf .libs _libs +test -z "lib_c.la " || rm -f lib_c.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +Making distclean in 3dnow +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/3dnow' +rm -rf .libs _libs +rm -f *.lo +test -z "" || rm -f +rm -f libtool +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/3dnow' +Making distclean in amd64 +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/amd64' +rm -rf .libs _libs +test -z "libamd64.la" || rm -f libamd64.la +rm -f "./so_locations" +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +rm -rf ./.deps +rm -f Makefile +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/amd64' +Making distclean in . +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +test -z "liboiltmp1.la" || rm -f liboiltmp1.la +rm -f "./so_locations" +test -z "liboilarray.c liboilfuncs-doc.h" || rm -f liboilarray.c liboilfuncs-doc.h +test -z "liboil-0.3.la " || rm -f liboil-0.3.la +rm -f "./so_locations" +rm -rf .libs _libs +test -z "liboilfunctions.la" || rm -f liboilfunctions.la +rm -f "./so_locations" + rm -f build_prototypes build_prototypes + rm -f build_prototypes_doc build_prototypes_doc + rm -f build_marshal build_marshal + rm -f build_class_decls build_class_decls + rm -f build_trampolines build_trampolines + rm -f build_prototypes_04 build_prototypes_04 +rm -f *.o +rm -f *.lo +rm -f *.tab.c +test -z "" || rm -f +test -z "liboil-stdint.h" || rm -f liboil-stdint.h +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +rm -rf ./.deps +rm -f Makefile +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +Making distclean in . +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +test -z "liboil-0.3.pc liboil-0.3-uninstalled.pc" || rm -f liboil-0.3.pc liboil-0.3-uninstalled.pc +rm -rf .libs _libs +rm -f *.lo +test -z "liboil-uninstalled.pc liboil.pc" || rm -f liboil-uninstalled.pc liboil.pc +rm -f config.h stamp-h1 +rm -f libtool +rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +rm -f config.status config.cache config.log configure.lineno configure.status.lineno +rm -f Makefile +make[1]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +rm -f debian/stamp-makefile-build +rm -f debian/stamp-autotools-files + debian/rules build +test -x debian/rules +mkdir -p "." +if test -e /usr/share/misc/config.guess ; then \ + for i in ./config.guess ; do \ + if ! test -e $i.cdbs-orig ; then \ + mv $i $i.cdbs-orig ; \ + cp --remove-destination /usr/share/misc/config.guess $i ; \ + fi ; \ + done ; \ + fi +if test -e /usr/share/misc/config.sub ; then \ + for i in ./config.sub ; do \ + if ! test -e $i.cdbs-orig ; then \ + mv $i $i.cdbs-orig ; \ + cp --remove-destination /usr/share/misc/config.sub $i ; \ + fi ; \ + done ; \ + fi +touch debian/stamp-autotools-files +chmod a+x /home/ds/debian/liboil/liboil-0.3.11/./configure +cd . && CC="cc" CXX="g++" CFLAGS="-g -Wall -O2" CXXFLAGS="-g -Wall -O2" CPPFLAGS="" LDFLAGS="" /home/ds/debian/liboil/liboil-0.3.11/./configure --build=i486-linux-gnu --prefix=/usr --includedir="\${prefix}/include" --mandir="\${prefix}/share/man" --infodir="\${prefix}/share/info" --sysconfdir=/etc --localstatedir=/var --libexecdir="\${prefix}/lib/liboil" --disable-maintainer-mode --disable-dependency-tracking --srcdir=. --enable-static +checking nano version... 0 (release) +checking build system type... i486-pc-linux-gnu +checking host system type... i486-pc-linux-gnu +checking for a BSD-compatible install... /usr/bin/install -c +checking whether build environment is sane... yes +checking for gawk... gawk +checking whether make sets $(MAKE)... yes +checking whether to enable maintainer-specific portions of Makefiles... no +checking for style of include used by make... GNU +checking for gcc... cc +checking for C compiler default output file name... a.out +checking whether the C compiler works... yes +checking whether we are cross compiling... no +checking for suffix of executables... +checking for suffix of object files... o +checking whether we are using the GNU C compiler... yes +checking whether cc accepts -g... yes +checking for cc option to accept ISO C89... none needed +checking dependency style of cc... none +checking for a sed that does not truncate output... /bin/sed +checking for grep that handles long lines and -e... /bin/grep +checking for egrep... /bin/grep -E +checking for ld used by cc... /usr/bin/ld +checking if the linker (/usr/bin/ld) is GNU ld... yes +checking for /usr/bin/ld option to reload object files... -r +checking for BSD-compatible nm... /usr/bin/nm -B +checking whether ln -s works... yes +checking how to recognise dependent libraries... pass_all +checking how to run the C preprocessor... cc -E +checking for ANSI C header files... yes +checking for sys/types.h... yes +checking for sys/stat.h... yes +checking for stdlib.h... yes +checking for string.h... yes +checking for memory.h... yes +checking for strings.h... yes +checking for inttypes.h... yes +checking for stdint.h... yes +checking for unistd.h... yes +checking dlfcn.h usability... yes +checking dlfcn.h presence... yes +checking for dlfcn.h... yes +checking whether we are using the GNU C++ compiler... yes +checking whether g++ accepts -g... yes +checking dependency style of g++... none +checking how to run the C++ preprocessor... g++ -E +checking for g77... no +checking for xlf... no +checking for f77... no +checking for frt... no +checking for pgf77... no +checking for cf77... no +checking for fort77... no +checking for fl32... no +checking for af77... no +checking for xlf90... no +checking for f90... no +checking for pgf90... no +checking for pghpf... no +checking for epcf90... no +checking for gfortran... no +checking for g95... no +checking for xlf95... no +checking for f95... no +checking for fort... no +checking for ifort... no +checking for ifc... no +checking for efc... no +checking for pgf95... no +checking for lf95... no +checking for ftn... no +checking whether we are using the GNU Fortran 77 compiler... no +checking whether accepts -g... no +checking the maximum length of command line arguments... 32768 +checking command to parse /usr/bin/nm -B output from cc object... ok +checking for objdir... .libs +checking for ar... ar +checking for ranlib... ranlib +checking for strip... strip +checking if cc supports -fno-rtti -fno-exceptions... no +checking for cc option to produce PIC... -fPIC +checking if cc PIC flag -fPIC works... yes +checking if cc static flag -static works... yes +checking if cc supports -c -o file.o... yes +checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes +checking whether -lc should be explicitly linked in... no +checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory +GNU/Linux ld.so +checking how to hardcode library paths into programs... immediate +checking whether stripping libraries is possible... yes +checking if libtool supports shared libraries... yes +checking whether to build shared libraries... yes +checking whether to build static libraries... yes +configure: creating libtool +appending configuration tag "CXX" to libtool +checking for ld used by g++... /usr/bin/ld +checking if the linker (/usr/bin/ld) is GNU ld... yes +checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes +checking for g++ option to produce PIC... -fPIC +checking if g++ PIC flag -fPIC works... yes +checking if g++ static flag -static works... yes +checking if g++ supports -c -o file.o... yes +checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes +checking dynamic linker characteristics... cat: /etc/ld.so.conf.d/*.conf: No such file or directory +GNU/Linux ld.so +checking how to hardcode library paths into programs... immediate +appending configuration tag "F77" to libtool +checking for pkg-config... /usr/bin/pkg-config +checking for glib-2.0... yes +checking GLIB_CFLAGS... -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include +checking GLIB_LIBS... -lglib-2.0 +checking gtk-doc version >= 1.0... yes +checking if compiler supports gcc-style inline assembly... yes +checking if compiler supports FPU instructions on PowerPC... no +checking whether byte ordering is bigendian... no +checking if unaligned memory access works correctly... (whitelisted) yes +checking for _ prefix in compiled symbols... no +checking for stdint types... stdint.h (shortcircuit) +make use of stdint.h in liboil/liboil-stdint.h (assuming C99 compatible system) +checking for stdlib.h... (cached) yes +checking for unistd.h... (cached) yes +checking for getpagesize... yes +checking for working mmap... yes +checking for rintf in -lm... yes +checking for lrint in -lm... yes +checking for lrintf in -lm... yes +checking for sincos in -lm... yes +checking ieee754.h usability... yes +checking ieee754.h presence... yes +checking for ieee754.h... yes +checking for inttypes.h... (cached) yes +checking for gettimeofday... yes +checking for sigaction... yes +checking to see if compiler understands -Wall... yes +checking if compiler supports MMX intrinsics... yes +checking if compiler supports SSE intrinsics... yes +checking if compiler supports SSE2 intrinsics... yes +checking if compiler supports SSE3 intrinsics... yes +checking if compiler supports 3DNOW intrinsics... yes +checking if compiler supports 3DNOWEXT intrinsics... yes +checking if compiler supports ALTIVEC intrinsics... no +configure: creating ./config.status +config.status: creating Makefile +config.status: creating doc/Makefile +config.status: creating liboil/Makefile +config.status: creating liboil/amd64/Makefile +config.status: creating liboil/3dnow/Makefile +config.status: creating liboil/c/Makefile +config.status: creating liboil/colorspace/Makefile +config.status: creating liboil/conv/Makefile +config.status: creating liboil/copy/Makefile +config.status: creating liboil/dct/Makefile +config.status: creating liboil/deprecated/Makefile +config.status: creating liboil/fb/Makefile +config.status: creating liboil/i386/Makefile +config.status: creating liboil/i386_amd64/Makefile +config.status: creating liboil/jpeg/Makefile +config.status: creating liboil/math/Makefile +config.status: creating liboil/md5/Makefile +config.status: creating liboil/mmx/Makefile +config.status: creating liboil/motovec/Makefile +config.status: creating liboil/powerpc/Makefile +config.status: creating liboil/powerpc_asm_blocks/Makefile +config.status: creating liboil/ref/Makefile +config.status: creating liboil/simdpack/Makefile +config.status: creating liboil/sse/Makefile +config.status: creating liboil/utf8/Makefile +config.status: creating testsuite/Makefile +config.status: creating testsuite/instruction/Makefile +config.status: creating examples/Makefile +config.status: creating examples/audioresample/Makefile +config.status: creating examples/huffman/Makefile +config.status: creating examples/jpeg/Makefile +config.status: creating examples/md5/Makefile +config.status: creating examples/taylor/Makefile +config.status: creating examples/uberopt/Makefile +config.status: creating examples/videoscale/Makefile +config.status: creating examples/work/Makefile +config.status: creating liboil-uninstalled.pc +config.status: creating liboil.pc +config.status: creating config.h +config.status: executing depfiles commands +config.status: executing liboil/liboil-stdint.h commands +config.status: creating liboil/liboil-stdint.h : _LIBOIL_LIBOIL_LIBOIL_STDINT_H +/usr/bin/make -C . +make[1]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +cp liboil-uninstalled.pc liboil-0.3-uninstalled.pc +/usr/bin/make all-recursive +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +Making all in liboil +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +Making all in c +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o lib_c_la-ag_clamp.lo `test -f 'ag_clamp.c' || echo './'`ag_clamp.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ag_clamp.c -fPIC -DPIC -o .libs/lib_c_la-ag_clamp.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ag_clamp.c -o lib_c_la-ag_clamp.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o lib_c_la-composite.lo `test -f 'composite.c' || echo './'`composite.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite.c -fPIC -DPIC -o .libs/lib_c_la-composite.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite.c -o lib_c_la-composite.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o lib_c_la-copy.lo `test -f 'copy.c' || echo './'`copy.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy.c -fPIC -DPIC -o .libs/lib_c_la-copy.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy.c -o lib_c_la-copy.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o lib_c_la-swab.lo `test -f 'swab.c' || echo './'`swab.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c swab.c -fPIC -DPIC -o .libs/lib_c_la-swab.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c swab.c -o lib_c_la-swab.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o lib_c.la lib_c_la-ag_clamp.lo lib_c_la-composite.lo lib_c_la-copy.lo lib_c_la-swab.lo +ar cru .libs/lib_c.a .libs/lib_c_la-ag_clamp.o .libs/lib_c_la-composite.o .libs/lib_c_la-copy.o .libs/lib_c_la-swab.o +ranlib .libs/lib_c.a +creating lib_c.la +(cd .libs && rm -f lib_c.la && ln -s ../lib_c.la lib_c.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +Making all in colorspace +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libcolorspace_la-composite.lo `test -f 'composite.c' || echo './'`composite.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite.c -fPIC -DPIC -o .libs/libcolorspace_la-composite.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite.c -o libcolorspace_la-composite.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libcolorspace.la libcolorspace_la-composite.lo +ar cru .libs/libcolorspace.a .libs/libcolorspace_la-composite.o +ranlib .libs/libcolorspace.a +creating libcolorspace.la +(cd .libs && rm -f libcolorspace.la && ln -s ../libcolorspace.la libcolorspace.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +Making all in conv +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libconv_la-conv_c.lo `test -f 'conv_c.c' || echo './'`conv_c.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_c.c -fPIC -DPIC -o .libs/libconv_la-conv_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_c.c -o libconv_la-conv_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libconv_la-conv_bitstuff.lo `test -f 'conv_bitstuff.c' || echo './'`conv_bitstuff.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_bitstuff.c -fPIC -DPIC -o .libs/libconv_la-conv_bitstuff.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_bitstuff.c -o libconv_la-conv_bitstuff.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libconv_la-conv_misc.lo `test -f 'conv_misc.c' || echo './'`conv_misc.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_misc.c -fPIC -DPIC -o .libs/libconv_la-conv_misc.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_misc.c -o libconv_la-conv_misc.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libconv.la libconv_la-conv_c.lo libconv_la-conv_bitstuff.lo libconv_la-conv_misc.lo +ar cru .libs/libconv.a .libs/libconv_la-conv_c.o .libs/libconv_la-conv_bitstuff.o .libs/libconv_la-conv_misc.o +ranlib .libs/libconv.a +creating libconv.la +(cd .libs && rm -f libconv.la && ln -s ../libconv.la libconv.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +Making all in copy +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libcopy_la-copy.lo `test -f 'copy.c' || echo './'`copy.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy.c -fPIC -DPIC -o .libs/libcopy_la-copy.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy.c -o libcopy_la-copy.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libcopy_la-copy8x8.lo `test -f 'copy8x8.c' || echo './'`copy8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy8x8.c -fPIC -DPIC -o .libs/libcopy_la-copy8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy8x8.c -o libcopy_la-copy8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libcopy_la-splat_ref.lo `test -f 'splat_ref.c' || echo './'`splat_ref.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_ref.c -fPIC -DPIC -o .libs/libcopy_la-splat_ref.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_ref.c -o libcopy_la-splat_ref.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libcopy_la-trans8x8_c.lo `test -f 'trans8x8_c.c' || echo './'`trans8x8_c.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c trans8x8_c.c -fPIC -DPIC -o .libs/libcopy_la-trans8x8_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c trans8x8_c.c -o libcopy_la-trans8x8_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libcopy.la libcopy_la-copy.lo libcopy_la-copy8x8.lo libcopy_la-splat_ref.lo libcopy_la-trans8x8_c.lo +ar cru .libs/libcopy.a .libs/libcopy_la-copy.o .libs/libcopy_la-copy8x8.o .libs/libcopy_la-splat_ref.o .libs/libcopy_la-trans8x8_c.o +ranlib .libs/libcopy.a +creating libcopy.la +(cd .libs && rm -f libcopy.la && ln -s ../libcopy.la libcopy.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +Making all in dct +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-dct12_f32.lo `test -f 'dct12_f32.c' || echo './'`dct12_f32.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c dct12_f32.c -fPIC -DPIC -o .libs/libdct_la-dct12_f32.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c dct12_f32.c -o libdct_la-dct12_f32.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-dct36_f32.lo `test -f 'dct36_f32.c' || echo './'`dct36_f32.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c dct36_f32.c -fPIC -DPIC -o .libs/libdct_la-dct36_f32.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c dct36_f32.c -o libdct_la-dct36_f32.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-fdct8_f64.lo `test -f 'fdct8_f64.c' || echo './'`fdct8_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8_f64.c -fPIC -DPIC -o .libs/libdct_la-fdct8_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8_f64.c -o libdct_la-fdct8_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-fdct8x8_f64.lo `test -f 'fdct8x8_f64.c' || echo './'`fdct8x8_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8x8_f64.c -fPIC -DPIC -o .libs/libdct_la-fdct8x8_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8x8_f64.c -o libdct_la-fdct8x8_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-fdct8x8s_s16.lo `test -f 'fdct8x8s_s16.c' || echo './'`fdct8x8s_s16.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8x8s_s16.c -fPIC -DPIC -o .libs/libdct_la-fdct8x8s_s16.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8x8s_s16.c -o libdct_la-fdct8x8s_s16.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-fdct8x8theora.lo `test -f 'fdct8x8theora.c' || echo './'`fdct8x8theora.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8x8theora.c -fPIC -DPIC -o .libs/libdct_la-fdct8x8theora.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fdct8x8theora.c -o libdct_la-fdct8x8theora.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-idct8_f64.lo `test -f 'idct8_f64.c' || echo './'`idct8_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8_f64.c -fPIC -DPIC -o .libs/libdct_la-idct8_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8_f64.c -o libdct_la-idct8_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-idct8x8_c.lo `test -f 'idct8x8_c.c' || echo './'`idct8x8_c.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8x8_c.c -fPIC -DPIC -o .libs/libdct_la-idct8x8_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8x8_c.c -o libdct_la-idct8x8_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-imdct32_f32.lo `test -f 'imdct32_f32.c' || echo './'`imdct32_f32.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c imdct32_f32.c -fPIC -DPIC -o .libs/libdct_la-imdct32_f32.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c imdct32_f32.c -o libdct_la-imdct32_f32.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdct_la-idct8x8theora_ref.lo `test -f 'idct8x8theora_ref.c' || echo './'`idct8x8theora_ref.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8x8theora_ref.c -fPIC -DPIC -o .libs/libdct_la-idct8x8theora_ref.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8x8theora_ref.c -o libdct_la-idct8x8theora_ref.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libdct.la libdct_la-dct12_f32.lo libdct_la-dct36_f32.lo libdct_la-fdct8_f64.lo libdct_la-fdct8x8_f64.lo libdct_la-fdct8x8s_s16.lo libdct_la-fdct8x8theora.lo libdct_la-idct8_f64.lo libdct_la-idct8x8_c.lo libdct_la-imdct32_f32.lo libdct_la-idct8x8theora_ref.lo +ar cru .libs/libdct.a .libs/libdct_la-dct12_f32.o .libs/libdct_la-dct36_f32.o .libs/libdct_la-fdct8_f64.o .libs/libdct_la-fdct8x8_f64.o .libs/libdct_la-fdct8x8s_s16.o .libs/libdct_la-fdct8x8theora.o .libs/libdct_la-idct8_f64.o .libs/libdct_la-idct8x8_c.o .libs/libdct_la-imdct32_f32.o .libs/libdct_la-idct8x8theora_ref.o +ranlib .libs/libdct.a +creating libdct.la +(cd .libs && rm -f libdct.la && ln -s ../libdct.la libdct.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +Making all in jpeg +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-convert8x8_c.lo `test -f 'convert8x8_c.c' || echo './'`convert8x8_c.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c convert8x8_c.c -fPIC -DPIC -o .libs/libjpeg_la-convert8x8_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c convert8x8_c.c -o libjpeg_la-convert8x8_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-jpeg_rgb_decoder.lo `test -f 'jpeg_rgb_decoder.c' || echo './'`jpeg_rgb_decoder.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c jpeg_rgb_decoder.c -fPIC -DPIC -o .libs/libjpeg_la-jpeg_rgb_decoder.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c jpeg_rgb_decoder.c -o libjpeg_la-jpeg_rgb_decoder.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-quantize8x8_c.lo `test -f 'quantize8x8_c.c' || echo './'`quantize8x8_c.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c quantize8x8_c.c -fPIC -DPIC -o .libs/libjpeg_la-quantize8x8_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c quantize8x8_c.c -o libjpeg_la-quantize8x8_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-yuv2rgb_c.lo `test -f 'yuv2rgb_c.c' || echo './'`yuv2rgb_c.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c yuv2rgb_c.c -fPIC -DPIC -o .libs/libjpeg_la-yuv2rgb_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c yuv2rgb_c.c -o libjpeg_la-yuv2rgb_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-zigzag8x8_c.lo `test -f 'zigzag8x8_c.c' || echo './'`zigzag8x8_c.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c zigzag8x8_c.c -fPIC -DPIC -o .libs/libjpeg_la-zigzag8x8_c.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c zigzag8x8_c.c -o libjpeg_la-zigzag8x8_c.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libjpeg.la libjpeg_la-convert8x8_c.lo libjpeg_la-jpeg_rgb_decoder.lo libjpeg_la-quantize8x8_c.lo libjpeg_la-yuv2rgb_c.lo libjpeg_la-zigzag8x8_c.lo +ar cru .libs/libjpeg.a .libs/libjpeg_la-convert8x8_c.o .libs/libjpeg_la-jpeg_rgb_decoder.o .libs/libjpeg_la-quantize8x8_c.o .libs/libjpeg_la-yuv2rgb_c.o .libs/libjpeg_la-zigzag8x8_c.o +ranlib .libs/libjpeg.a +creating libjpeg.la +(cd .libs && rm -f libjpeg.la && ln -s ../libjpeg.la libjpeg.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +Making all in math +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmath_la-math.lo `test -f 'math.c' || echo './'`math.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math.c -fPIC -DPIC -o .libs/libmath_la-math.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math.c -o libmath_la-math.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmath_la-ag_math.lo `test -f 'ag_math.c' || echo './'`ag_math.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ag_math.c -fPIC -DPIC -o .libs/libmath_la-ag_math.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ag_math.c -o libmath_la-ag_math.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libmath.la libmath_la-math.lo libmath_la-ag_math.lo +ar cru .libs/libmath.a .libs/libmath_la-math.o .libs/libmath_la-ag_math.o +ranlib .libs/libmath.a +creating libmath.la +(cd .libs && rm -f libmath.la && ln -s ../libmath.la libmath.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +Making all in md5 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmd5_la-md5.lo `test -f 'md5.c' || echo './'`md5.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c md5.c -fPIC -DPIC -o .libs/libmd5_la-md5.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c md5.c -o libmd5_la-md5.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libmd5.la libmd5_la-md5.lo +ar cru .libs/libmd5.a .libs/libmd5_la-md5.o +ranlib .libs/libmd5.a +creating libmd5.la +(cd .libs && rm -f libmd5.la && ln -s ../libmd5.la libmd5.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +Making all in ref +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-argb_paint.lo `test -f 'argb_paint.c' || echo './'`argb_paint.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c argb_paint.c -fPIC -DPIC -o .libs/libref_la-argb_paint.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c argb_paint.c -o libref_la-argb_paint.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-ayuv2argb.lo `test -f 'ayuv2argb.c' || echo './'`ayuv2argb.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ayuv2argb.c -fPIC -DPIC -o .libs/libref_la-ayuv2argb.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ayuv2argb.c -o libref_la-ayuv2argb.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-clamp.lo `test -f 'clamp.c' || echo './'`clamp.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clamp.c -fPIC -DPIC -o .libs/libref_la-clamp.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clamp.c -o libref_la-clamp.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-composite.lo `test -f 'composite.c' || echo './'`composite.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite.c -fPIC -DPIC -o .libs/libref_la-composite.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite.c -o libref_la-composite.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-convert.lo `test -f 'convert.c' || echo './'`convert.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c convert.c -fPIC -DPIC -o .libs/libref_la-convert.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c convert.c -o libref_la-convert.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-copy.lo `test -f 'copy.c' || echo './'`copy.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy.c -fPIC -DPIC -o .libs/libref_la-copy.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy.c -o libref_la-copy.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-copy8x8.lo `test -f 'copy8x8.c' || echo './'`copy8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy8x8.c -fPIC -DPIC -o .libs/libref_la-copy8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy8x8.c -o libref_la-copy8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-diff8x8.lo `test -f 'diff8x8.c' || echo './'`diff8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diff8x8.c -fPIC -DPIC -o .libs/libref_la-diff8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diff8x8.c -o libref_la-diff8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-diffsquaresum_f64.lo `test -f 'diffsquaresum_f64.c' || echo './'`diffsquaresum_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diffsquaresum_f64.c -fPIC -DPIC -o .libs/libref_la-diffsquaresum_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diffsquaresum_f64.c -o libref_la-diffsquaresum_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-error8x8.lo `test -f 'error8x8.c' || echo './'`error8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c error8x8.c -fPIC -DPIC -o .libs/libref_la-error8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c error8x8.c -o libref_la-error8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-math.lo `test -f 'math.c' || echo './'`math.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math.c -fPIC -DPIC -o .libs/libref_la-math.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math.c -o libref_la-math.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-mix_u8.lo `test -f 'mix_u8.c' || echo './'`mix_u8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mix_u8.c -fPIC -DPIC -o .libs/libref_la-mix_u8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mix_u8.c -o libref_la-mix_u8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-mt19937ar.lo `test -f 'mt19937ar.c' || echo './'`mt19937ar.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mt19937ar.c -fPIC -DPIC -o .libs/libref_la-mt19937ar.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mt19937ar.c -o libref_la-mt19937ar.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-mult8x8_s16.lo `test -f 'mult8x8_s16.c' || echo './'`mult8x8_s16.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mult8x8_s16.c -fPIC -DPIC -o .libs/libref_la-mult8x8_s16.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mult8x8_s16.c -o libref_la-mult8x8_s16.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-multsum.lo `test -f 'multsum.c' || echo './'`multsum.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c multsum.c -fPIC -DPIC -o .libs/libref_la-multsum.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c multsum.c -o libref_la-multsum.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-recon8x8.lo `test -f 'recon8x8.c' || echo './'`recon8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c recon8x8.c -fPIC -DPIC -o .libs/libref_la-recon8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c recon8x8.c -o libref_la-recon8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-resample.lo `test -f 'resample.c' || echo './'`resample.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c resample.c -fPIC -DPIC -o .libs/libref_la-resample.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c resample.c -o libref_la-resample.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-rgb.lo `test -f 'rgb.c' || echo './'`rgb.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c rgb.c -fPIC -DPIC -o .libs/libref_la-rgb.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c rgb.c -o libref_la-rgb.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-rowcolsad8x8.lo `test -f 'rowcolsad8x8.c' || echo './'`rowcolsad8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c rowcolsad8x8.c -fPIC -DPIC -o .libs/libref_la-rowcolsad8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c rowcolsad8x8.c -o libref_la-rowcolsad8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-sad8x8.lo `test -f 'sad8x8.c' || echo './'`sad8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8.c -fPIC -DPIC -o .libs/libref_la-sad8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8.c -o libref_la-sad8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-sad8x8_broken.lo `test -f 'sad8x8_broken.c' || echo './'`sad8x8_broken.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8_broken.c -fPIC -DPIC -o .libs/libref_la-sad8x8_broken.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8_broken.c -o libref_la-sad8x8_broken.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-sad8x8avg.lo `test -f 'sad8x8avg.c' || echo './'`sad8x8avg.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8avg.c -fPIC -DPIC -o .libs/libref_la-sad8x8avg.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8avg.c -o libref_la-sad8x8avg.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-sincos_f64.lo `test -f 'sincos_f64.c' || echo './'`sincos_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sincos_f64.c -fPIC -DPIC -o .libs/libref_la-sincos_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sincos_f64.c -o libref_la-sincos_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-splat.lo `test -f 'splat.c' || echo './'`splat.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat.c -fPIC -DPIC -o .libs/libref_la-splat.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat.c -o libref_la-splat.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-squaresum_f64.lo `test -f 'squaresum_f64.c' || echo './'`squaresum_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c squaresum_f64.c -fPIC -DPIC -o .libs/libref_la-squaresum_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c squaresum_f64.c -o libref_la-squaresum_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-sum.lo `test -f 'sum.c' || echo './'`sum.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum.c -fPIC -DPIC -o .libs/libref_la-sum.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum.c -o libref_la-sum.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-sum_f64.lo `test -f 'sum_f64.c' || echo './'`sum_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum_f64.c -fPIC -DPIC -o .libs/libref_la-sum_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum_f64.c -o libref_la-sum_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-swab.lo `test -f 'swab.c' || echo './'`swab.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c swab.c -fPIC -DPIC -o .libs/libref_la-swab.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c swab.c -o libref_la-swab.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-trans8x8.lo `test -f 'trans8x8.c' || echo './'`trans8x8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c trans8x8.c -fPIC -DPIC -o .libs/libref_la-trans8x8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c trans8x8.c -o libref_la-trans8x8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-yuv.lo `test -f 'yuv.c' || echo './'`yuv.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c yuv.c -fPIC -DPIC -o .libs/libref_la-yuv.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c yuv.c -o libref_la-yuv.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libref_la-wavelet.lo `test -f 'wavelet.c' || echo './'`wavelet.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c wavelet.c -fPIC -DPIC -o .libs/libref_la-wavelet.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c wavelet.c -o libref_la-wavelet.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libref.la libref_la-argb_paint.lo libref_la-ayuv2argb.lo libref_la-clamp.lo libref_la-composite.lo libref_la-convert.lo libref_la-copy.lo libref_la-copy8x8.lo libref_la-diff8x8.lo libref_la-diffsquaresum_f64.lo libref_la-error8x8.lo libref_la-math.lo libref_la-mix_u8.lo libref_la-mt19937ar.lo libref_la-mult8x8_s16.lo libref_la-multsum.lo libref_la-recon8x8.lo libref_la-resample.lo libref_la-rgb.lo libref_la-rowcolsad8x8.lo libref_la-sad8x8.lo libref_la-sad8x8_broken.lo libref_la-sad8x8avg.lo libref_la-sincos_f64.lo libref_la-splat.lo libref_la-squaresum_f64.lo libref_la-sum.lo libref_la-sum_f64.lo libref_la-swab.lo libref_la-trans8x8.lo libref_la-yuv.lo libref_la-wavelet.lo +ar cru .libs/libref.a .libs/libref_la-argb_paint.o .libs/libref_la-ayuv2argb.o .libs/libref_la-clamp.o .libs/libref_la-composite.o .libs/libref_la-convert.o .libs/libref_la-copy.o .libs/libref_la-copy8x8.o .libs/libref_la-diff8x8.o .libs/libref_la-diffsquaresum_f64.o .libs/libref_la-error8x8.o .libs/libref_la-math.o .libs/libref_la-mix_u8.o .libs/libref_la-mt19937ar.o .libs/libref_la-mult8x8_s16.o .libs/libref_la-multsum.o .libs/libref_la-recon8x8.o .libs/libref_la-resample.o .libs/libref_la-rgb.o .libs/libref_la-rowcolsad8x8.o .libs/libref_la-sad8x8.o .libs/libref_la-sad8x8_broken.o .libs/libref_la-sad8x8avg.o .libs/libref_la-sincos_f64.o .libs/libref_la-splat.o .libs/libref_la-squaresum_f64.o .libs/libref_la-sum.o .libs/libref_la-sum_f64.o .libs/libref_la-swab.o .libs/libref_la-trans8x8.o .libs/libref_la-yuv.o .libs/libref_la-wavelet.o +ranlib .libs/libref.a +creating libref.la +(cd .libs && rm -f libref.la && ln -s ../libref.la libref.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +Making all in simdpack +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-diffsquaresum_f64.lo `test -f 'diffsquaresum_f64.c' || echo './'`diffsquaresum_f64.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diffsquaresum_f64.c -fPIC -DPIC -o .libs/libsimdpack_la-diffsquaresum_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diffsquaresum_f64.c -o libsimdpack_la-diffsquaresum_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-mix_u8.lo `test -f 'mix_u8.c' || echo './'`mix_u8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mix_u8.c -fPIC -DPIC -o .libs/libsimdpack_la-mix_u8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mix_u8.c -o libsimdpack_la-mix_u8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-multsum.lo `test -f 'multsum.c' || echo './'`multsum.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c multsum.c -fPIC -DPIC -o .libs/libsimdpack_la-multsum.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c multsum.c -o libsimdpack_la-multsum.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-sincos_f64.lo `test -f 'sincos_f64.c' || echo './'`sincos_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sincos_f64.c -fPIC -DPIC -o .libs/libsimdpack_la-sincos_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sincos_f64.c -o libsimdpack_la-sincos_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-squaresum_f64.lo `test -f 'squaresum_f64.c' || echo './'`squaresum_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c squaresum_f64.c -fPIC -DPIC -o .libs/libsimdpack_la-squaresum_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c squaresum_f64.c -o libsimdpack_la-squaresum_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-sum_f64.lo `test -f 'sum_f64.c' || echo './'`sum_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum_f64.c -fPIC -DPIC -o .libs/libsimdpack_la-sum_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum_f64.c -o libsimdpack_la-sum_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-abs_misc.lo `test -f 'abs_misc.c' || echo './'`abs_misc.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c abs_misc.c -fPIC -DPIC -o .libs/libsimdpack_la-abs_misc.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c abs_misc.c -o libsimdpack_la-abs_misc.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-average2_u8.lo `test -f 'average2_u8.c' || echo './'`average2_u8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c average2_u8.c -fPIC -DPIC -o .libs/libsimdpack_la-average2_u8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c average2_u8.c -o libsimdpack_la-average2_u8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-clip_fast.lo `test -f 'clip_fast.c' || echo './'`clip_fast.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clip_fast.c -fPIC -DPIC -o .libs/libsimdpack_la-clip_fast.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clip_fast.c -o libsimdpack_la-clip_fast.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-scalaradd.lo `test -f 'scalaradd.c' || echo './'`scalaradd.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalaradd.c -fPIC -DPIC -o .libs/libsimdpack_la-scalaradd.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalaradd.c -o libsimdpack_la-scalaradd.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsimdpack_la-scalarmult.lo `test -f 'scalarmult.c' || echo './'`scalarmult.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalarmult.c -fPIC -DPIC -o .libs/libsimdpack_la-scalarmult.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalarmult.c -o libsimdpack_la-scalarmult.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libsimdpack.la libsimdpack_la-diffsquaresum_f64.lo libsimdpack_la-mix_u8.lo libsimdpack_la-multsum.lo libsimdpack_la-sincos_f64.lo libsimdpack_la-squaresum_f64.lo libsimdpack_la-sum_f64.lo libsimdpack_la-abs_misc.lo libsimdpack_la-average2_u8.lo libsimdpack_la-clip_fast.lo libsimdpack_la-scalaradd.lo libsimdpack_la-scalarmult.lo +ar cru .libs/libsimdpack.a .libs/libsimdpack_la-diffsquaresum_f64.o .libs/libsimdpack_la-mix_u8.o .libs/libsimdpack_la-multsum.o .libs/libsimdpack_la-sincos_f64.o .libs/libsimdpack_la-squaresum_f64.o .libs/libsimdpack_la-sum_f64.o .libs/libsimdpack_la-abs_misc.o .libs/libsimdpack_la-average2_u8.o .libs/libsimdpack_la-clip_fast.o .libs/libsimdpack_la-scalaradd.o .libs/libsimdpack_la-scalarmult.o +ranlib .libs/libsimdpack.a +creating libsimdpack.la +(cd .libs && rm -f libsimdpack.la && ln -s ../libsimdpack.la libsimdpack.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +Making all in utf8 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libutf8_la-utf8.lo `test -f 'utf8.c' || echo './'`utf8.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c utf8.c -fPIC -DPIC -o .libs/libutf8_la-utf8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c utf8.c -o libutf8_la-utf8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libutf8_la-utf8_fast.lo `test -f 'utf8_fast.c' || echo './'`utf8_fast.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c utf8_fast.c -fPIC -DPIC -o .libs/libutf8_la-utf8_fast.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c utf8_fast.c -o libutf8_la-utf8_fast.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libutf8.la libutf8_la-utf8.lo libutf8_la-utf8_fast.lo +ar cru .libs/libutf8.a .libs/libutf8_la-utf8.o .libs/libutf8_la-utf8_fast.o +ranlib .libs/libutf8.a +creating libutf8.la +(cd .libs && rm -f libutf8.la && ln -s ../libutf8.la libutf8.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +Making all in deprecated +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-abs.lo `test -f 'abs.c' || echo './'`abs.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c abs.c -fPIC -DPIC -o .libs/libdeprecated_la-abs.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c abs.c -o libdeprecated_la-abs.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-average2_u8.lo `test -f 'average2_u8.c' || echo './'`average2_u8.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c average2_u8.c -fPIC -DPIC -o .libs/libdeprecated_la-average2_u8.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c average2_u8.c -o libdeprecated_la-average2_u8.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-clip_ref.lo `test -f 'clip_ref.c' || echo './'`clip_ref.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clip_ref.c -fPIC -DPIC -o .libs/libdeprecated_la-clip_ref.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clip_ref.c -o libdeprecated_la-clip_ref.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-conv.lo `test -f 'conv.c' || echo './'`conv.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv.c -fPIC -DPIC -o .libs/libdeprecated_la-conv.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv.c -o libdeprecated_la-conv.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-permute.lo `test -f 'permute.c' || echo './'`permute.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c permute.c -fPIC -DPIC -o .libs/libdeprecated_la-permute.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c permute.c -o libdeprecated_la-permute.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-scalaradd.lo `test -f 'scalaradd.c' || echo './'`scalaradd.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalaradd.c -fPIC -DPIC -o .libs/libdeprecated_la-scalaradd.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalaradd.c -o libdeprecated_la-scalaradd.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-scalarmult.lo `test -f 'scalarmult.c' || echo './'`scalarmult.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalarmult.c -fPIC -DPIC -o .libs/libdeprecated_la-scalarmult.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c scalarmult.c -o libdeprecated_la-scalarmult.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-tablelookup.lo `test -f 'tablelookup.c' || echo './'`tablelookup.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c tablelookup.c -fPIC -DPIC -o .libs/libdeprecated_la-tablelookup.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c tablelookup.c -o libdeprecated_la-tablelookup.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-vectoradd_f64.lo `test -f 'vectoradd_f64.c' || echo './'`vectoradd_f64.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vectoradd_f64.c -fPIC -DPIC -o .libs/libdeprecated_la-vectoradd_f64.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vectoradd_f64.c -o libdeprecated_la-vectoradd_f64.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libdeprecated_la-vectoradd_s.lo `test -f 'vectoradd_s.c' || echo './'`vectoradd_s.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vectoradd_s.c -fPIC -DPIC -o .libs/libdeprecated_la-vectoradd_s.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vectoradd_s.c -o libdeprecated_la-vectoradd_s.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libdeprecated.la libdeprecated_la-abs.lo libdeprecated_la-average2_u8.lo libdeprecated_la-clip_ref.lo libdeprecated_la-conv.lo libdeprecated_la-permute.lo libdeprecated_la-scalaradd.lo libdeprecated_la-scalarmult.lo libdeprecated_la-tablelookup.lo libdeprecated_la-vectoradd_f64.lo libdeprecated_la-vectoradd_s.lo +ar cru .libs/libdeprecated.a .libs/libdeprecated_la-abs.o .libs/libdeprecated_la-average2_u8.o .libs/libdeprecated_la-clip_ref.o .libs/libdeprecated_la-conv.o .libs/libdeprecated_la-permute.o .libs/libdeprecated_la-scalaradd.o .libs/libdeprecated_la-scalarmult.o .libs/libdeprecated_la-tablelookup.o .libs/libdeprecated_la-vectoradd_f64.o .libs/libdeprecated_la-vectoradd_s.o +ranlib .libs/libdeprecated.a +creating libdeprecated.la +(cd .libs && rm -f libdeprecated.la && ln -s ../libdeprecated.la libdeprecated.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +Making all in i386 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-argb_paint_i386.lo `test -f 'argb_paint_i386.c' || echo './'`argb_paint_i386.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c argb_paint_i386.c -fPIC -DPIC -o .libs/libi386_la-argb_paint_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c argb_paint_i386.c -o libi386_la-argb_paint_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-ayuv2argb_i386.lo `test -f 'ayuv2argb_i386.c' || echo './'`ayuv2argb_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ayuv2argb_i386.c -fPIC -DPIC -o .libs/libi386_la-ayuv2argb_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c ayuv2argb_i386.c -o libi386_la-ayuv2argb_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-composite_i386.lo `test -f 'composite_i386.c' || echo './'`composite_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_i386.c -fPIC -DPIC -o .libs/libi386_la-composite_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_i386.c -o libi386_la-composite_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-convert_i386.lo `test -f 'convert_i386.c' || echo './'`convert_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c convert_i386.c -fPIC -DPIC -o .libs/libi386_la-convert_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c convert_i386.c -o libi386_la-convert_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-copy8x8_i386.lo `test -f 'copy8x8_i386.c' || echo './'`copy8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-copy8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy8x8_i386.c -o libi386_la-copy8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-copy_i386.lo `test -f 'copy_i386.c' || echo './'`copy_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy_i386.c -fPIC -DPIC -o .libs/libi386_la-copy_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy_i386.c -o libi386_la-copy_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-diff8x8_i386.lo `test -f 'diff8x8_i386.c' || echo './'`diff8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diff8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-diff8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c diff8x8_i386.c -o libi386_la-diff8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-error8x8_i386.lo `test -f 'error8x8_i386.c' || echo './'`error8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c error8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-error8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c error8x8_i386.c -o libi386_la-error8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-md5_i386.lo `test -f 'md5_i386.c' || echo './'`md5_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c md5_i386.c -fPIC -DPIC -o .libs/libi386_la-md5_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c md5_i386.c -o libi386_la-md5_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-mult8x8_i386.lo `test -f 'mult8x8_i386.c' || echo './'`mult8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mult8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-mult8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mult8x8_i386.c -o libi386_la-mult8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-recon8x8_i386.lo `test -f 'recon8x8_i386.c' || echo './'`recon8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c recon8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-recon8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c recon8x8_i386.c -o libi386_la-recon8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-rowcolsad8x8_i386.lo `test -f 'rowcolsad8x8_i386.c' || echo './'`rowcolsad8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c rowcolsad8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-rowcolsad8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c rowcolsad8x8_i386.c -o libi386_la-rowcolsad8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-sad8x8_i386.lo `test -f 'sad8x8_i386.c' || echo './'`sad8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-sad8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8_i386.c -o libi386_la-sad8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-sad8x8avg_i386.lo `test -f 'sad8x8avg_i386.c' || echo './'`sad8x8avg_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8avg_i386.c -fPIC -DPIC -o .libs/libi386_la-sad8x8avg_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8avg_i386.c -o libi386_la-sad8x8avg_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-splat_i386.lo `test -f 'splat_i386.c' || echo './'`splat_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_i386.c -fPIC -DPIC -o .libs/libi386_la-splat_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_i386.c -o libi386_la-splat_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-trans8x8_i386.lo `test -f 'trans8x8_i386.c' || echo './'`trans8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c trans8x8_i386.c -fPIC -DPIC -o .libs/libi386_la-trans8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c trans8x8_i386.c -o libi386_la-trans8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-wavelet.lo `test -f 'wavelet.c' || echo './'`wavelet.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c wavelet.c -fPIC -DPIC -o .libs/libi386_la-wavelet.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c wavelet.c -o libi386_la-wavelet.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-math.lo `test -f 'math.c' || echo './'`math.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math.c -fPIC -DPIC -o .libs/libi386_la-math.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math.c -o libi386_la-math.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-abs_i386.lo `test -f 'abs_i386.c' || echo './'`abs_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c abs_i386.c -fPIC -DPIC -o .libs/libi386_la-abs_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c abs_i386.c -o libi386_la-abs_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-conv_sse.lo `test -f 'conv_sse.c' || echo './'`conv_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_sse.c -fPIC -DPIC -o .libs/libi386_la-conv_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_sse.c -o libi386_la-conv_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_la-conv_3dnow.lo `test -f 'conv_3dnow.c' || echo './'`conv_3dnow.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_3dnow.c -fPIC -DPIC -o .libs/libi386_la-conv_3dnow.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c conv_3dnow.c -o libi386_la-conv_3dnow.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libi386.la libi386_la-argb_paint_i386.lo libi386_la-ayuv2argb_i386.lo libi386_la-composite_i386.lo libi386_la-convert_i386.lo libi386_la-copy8x8_i386.lo libi386_la-copy_i386.lo libi386_la-diff8x8_i386.lo libi386_la-error8x8_i386.lo libi386_la-md5_i386.lo libi386_la-mult8x8_i386.lo libi386_la-recon8x8_i386.lo libi386_la-rowcolsad8x8_i386.lo libi386_la-sad8x8_i386.lo libi386_la-sad8x8avg_i386.lo libi386_la-splat_i386.lo libi386_la-trans8x8_i386.lo libi386_la-wavelet.lo libi386_la-math.lo libi386_la-abs_i386.lo libi386_la-conv_sse.lo libi386_la-conv_3dnow.lo +ar cru .libs/libi386.a .libs/libi386_la-argb_paint_i386.o .libs/libi386_la-ayuv2argb_i386.o .libs/libi386_la-composite_i386.o .libs/libi386_la-convert_i386.o .libs/libi386_la-copy8x8_i386.o .libs/libi386_la-copy_i386.o .libs/libi386_la-diff8x8_i386.o .libs/libi386_la-error8x8_i386.o .libs/libi386_la-md5_i386.o .libs/libi386_la-mult8x8_i386.o .libs/libi386_la-recon8x8_i386.o .libs/libi386_la-rowcolsad8x8_i386.o .libs/libi386_la-sad8x8_i386.o .libs/libi386_la-sad8x8avg_i386.o .libs/libi386_la-splat_i386.o .libs/libi386_la-trans8x8_i386.o .libs/libi386_la-wavelet.o .libs/libi386_la-math.o .libs/libi386_la-abs_i386.o .libs/libi386_la-conv_sse.o .libs/libi386_la-conv_3dnow.o +ranlib .libs/libi386.a +creating libi386.la +(cd .libs && rm -f libi386.la && ln -s ../libi386.la libi386.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +Making all in i386_amd64 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_amd64_la-clamp.lo `test -f 'clamp.c' || echo './'`clamp.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clamp.c -fPIC -DPIC -o .libs/libi386_amd64_la-clamp.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clamp.c -o libi386_amd64_la-clamp.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_amd64_la-idct8x8_i386.lo `test -f 'idct8x8_i386.c' || echo './'`idct8x8_i386.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8x8_i386.c -fPIC -DPIC -o .libs/libi386_amd64_la-idct8x8_i386.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c idct8x8_i386.c -o libi386_amd64_la-idct8x8_i386.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_amd64_la-mt19937.lo `test -f 'mt19937.c' || echo './'`mt19937.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mt19937.c -fPIC -DPIC -o .libs/libi386_amd64_la-mt19937.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c mt19937.c -o libi386_amd64_la-mt19937.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_amd64_la-resample.lo `test -f 'resample.c' || echo './'`resample.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c resample.c -fPIC -DPIC -o .libs/libi386_amd64_la-resample.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c resample.c -o libi386_amd64_la-resample.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_amd64_la-sum.lo `test -f 'sum.c' || echo './'`sum.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum.c -fPIC -DPIC -o .libs/libi386_amd64_la-sum.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sum.c -o libi386_amd64_la-sum.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libi386_amd64_la-swab.lo `test -f 'swab.c' || echo './'`swab.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c swab.c -fPIC -DPIC -o .libs/libi386_amd64_la-swab.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c swab.c -o libi386_amd64_la-swab.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libi386_amd64.la libi386_amd64_la-clamp.lo libi386_amd64_la-idct8x8_i386.lo libi386_amd64_la-mt19937.lo libi386_amd64_la-resample.lo libi386_amd64_la-sum.lo libi386_amd64_la-swab.lo +ar cru .libs/libi386_amd64.a .libs/libi386_amd64_la-clamp.o .libs/libi386_amd64_la-idct8x8_i386.o .libs/libi386_amd64_la-mt19937.o .libs/libi386_amd64_la-resample.o .libs/libi386_amd64_la-sum.o .libs/libi386_amd64_la-swab.o +ranlib .libs/libi386_amd64.a +creating libi386_amd64.la +(cd .libs && rm -f libi386_amd64.la && ln -s ../libi386_amd64.la libi386_amd64.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +Making all in mmx +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmmx_la-composite_mmx.lo `test -f 'composite_mmx.c' || echo './'`composite_mmx.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_mmx.c -fPIC -DPIC -o .libs/libmmx_la-composite_mmx.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_mmx.c -o libmmx_la-composite_mmx.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmmx_la-copy_mmx.lo `test -f 'copy_mmx.c' || echo './'`copy_mmx.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy_mmx.c -fPIC -DPIC -o .libs/libmmx_la-copy_mmx.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy_mmx.c -o libmmx_la-copy_mmx.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmmx_la-recon8x8_mmx.lo `test -f 'recon8x8_mmx.c' || echo './'`recon8x8_mmx.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c recon8x8_mmx.c -fPIC -DPIC -o .libs/libmmx_la-recon8x8_mmx.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c recon8x8_mmx.c -o libmmx_la-recon8x8_mmx.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libmmx_la-splat_mmx.lo `test -f 'splat_mmx.c' || echo './'`splat_mmx.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_mmx.c -fPIC -DPIC -o .libs/libmmx_la-splat_mmx.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_mmx.c -o libmmx_la-splat_mmx.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libmmx.la libmmx_la-composite_mmx.lo libmmx_la-copy_mmx.lo libmmx_la-recon8x8_mmx.lo libmmx_la-splat_mmx.lo +ar cru .libs/libmmx.a .libs/libmmx_la-composite_mmx.o .libs/libmmx_la-copy_mmx.o .libs/libmmx_la-recon8x8_mmx.o .libs/libmmx_la-splat_mmx.o +ranlib .libs/libmmx.a +creating libmmx.la +(cd .libs && rm -f libmmx.la && ln -s ../libmmx.la libmmx.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +Making all in fb +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -msse -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libfb_la-fbmmx.lo `test -f 'fbmmx.c' || echo './'`fbmmx.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -msse -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fbmmx.c -fPIC -DPIC -o .libs/libfb_la-fbmmx.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -mmmx -msse -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c fbmmx.c -o libfb_la-fbmmx.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libfb.la libfb_la-fbmmx.lo +ar cru .libs/libfb.a .libs/libfb_la-fbmmx.o +ranlib .libs/libfb.a +creating libfb.la +(cd .libs && rm -f libfb.la && ln -s ../libfb.la libfb.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +Making all in sse +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-clamp_sse.lo `test -f 'clamp_sse.c' || echo './'`clamp_sse.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clamp_sse.c -fPIC -DPIC -o .libs/libsse_la-clamp_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c clamp_sse.c -o libsse_la-clamp_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-composite_sse.lo `test -f 'composite_sse.c' || echo './'`composite_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_sse.c -fPIC -DPIC -o .libs/libsse_la-composite_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_sse.c -o libsse_la-composite_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-composite_sse_2pix.lo `test -f 'composite_sse_2pix.c' || echo './'`composite_sse_2pix.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_sse_2pix.c -fPIC -DPIC -o .libs/libsse_la-composite_sse_2pix.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_sse_2pix.c -o libsse_la-composite_sse_2pix.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-composite_sse_4pix.lo `test -f 'composite_sse_4pix.c' || echo './'`composite_sse_4pix.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_sse_4pix.c -fPIC -DPIC -o .libs/libsse_la-composite_sse_4pix.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c composite_sse_4pix.c -o libsse_la-composite_sse_4pix.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-copy_sse.lo `test -f 'copy_sse.c' || echo './'`copy_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy_sse.c -fPIC -DPIC -o .libs/libsse_la-copy_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c copy_sse.c -o libsse_la-copy_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-math_sse.lo `test -f 'math_sse.c' || echo './'`math_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math_sse.c -fPIC -DPIC -o .libs/libsse_la-math_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math_sse.c -o libsse_la-math_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-math_sse_unroll2.lo `test -f 'math_sse_unroll2.c' || echo './'`math_sse_unroll2.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math_sse_unroll2.c -fPIC -DPIC -o .libs/libsse_la-math_sse_unroll2.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c math_sse_unroll2.c -o libsse_la-math_sse_unroll2.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-multsum_sse.lo `test -f 'multsum_sse.c' || echo './'`multsum_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c multsum_sse.c -fPIC -DPIC -o .libs/libsse_la-multsum_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c multsum_sse.c -o libsse_la-multsum_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-sad8x8_sse.lo `test -f 'sad8x8_sse.c' || echo './'`sad8x8_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8_sse.c -fPIC -DPIC -o .libs/libsse_la-sad8x8_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c sad8x8_sse.c -o libsse_la-sad8x8_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libsse_la-splat_sse.lo `test -f 'splat_sse.c' || echo './'`splat_sse.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_sse.c -fPIC -DPIC -o .libs/libsse_la-splat_sse.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -msse -msse2 -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c splat_sse.c -o libsse_la-splat_sse.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libsse.la libsse_la-clamp_sse.lo libsse_la-composite_sse.lo libsse_la-composite_sse_2pix.lo libsse_la-composite_sse_4pix.lo libsse_la-copy_sse.lo libsse_la-math_sse.lo libsse_la-math_sse_unroll2.lo libsse_la-multsum_sse.lo libsse_la-sad8x8_sse.lo libsse_la-splat_sse.lo +ar cru .libs/libsse.a .libs/libsse_la-clamp_sse.o .libs/libsse_la-composite_sse.o .libs/libsse_la-composite_sse_2pix.o .libs/libsse_la-composite_sse_4pix.o .libs/libsse_la-copy_sse.o .libs/libsse_la-math_sse.o .libs/libsse_la-math_sse_unroll2.o .libs/libsse_la-multsum_sse.o .libs/libsse_la-sad8x8_sse.o .libs/libsse_la-splat_sse.o +ranlib .libs/libsse.a +creating libsse.la +(cd .libs && rm -f libsse.la && ln -s ../libsse.la libsse.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -g -Wall -O2 -c -o liboiltmp.lo liboiltmp.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I.. -g -Wall -O2 -c liboiltmp.c -fPIC -DPIC -o .libs/liboiltmp.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -g -Wall -O2 -c liboiltmp.c -o liboiltmp.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboilfunctions_la-null.lo `test -f 'null.c' || echo './'`null.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c null.c -fPIC -DPIC -o .libs/liboilfunctions_la-null.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c null.c -o liboilfunctions_la-null.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o liboilfunctions.la -no-undefined liboilfunctions_la-null.lo c/lib_c.la colorspace/libcolorspace.la copy/libcopy.la dct/libdct.la i386/libi386.la i386_amd64/libi386_amd64.la mmx/libmmx.la fb/libfb.la sse/libsse.la jpeg/libjpeg.la math/libmath.la md5/libmd5.la ref/libref.la simdpack/libsimdpack.la utf8/libutf8.la conv/libconv.la deprecated/libdeprecated.la +rm -fr .libs/liboilfunctions.lax +mkdir .libs/liboilfunctions.lax +rm -fr .libs/liboilfunctions.lax/lib_c.a +mkdir .libs/liboilfunctions.lax/lib_c.a +(cd .libs/liboilfunctions.lax/lib_c.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/c/.libs/lib_c.a) +rm -fr .libs/liboilfunctions.lax/libcolorspace.a +mkdir .libs/liboilfunctions.lax/libcolorspace.a +(cd .libs/liboilfunctions.lax/libcolorspace.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace/.libs/libcolorspace.a) +rm -fr .libs/liboilfunctions.lax/libcopy.a +mkdir .libs/liboilfunctions.lax/libcopy.a +(cd .libs/liboilfunctions.lax/libcopy.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/copy/.libs/libcopy.a) +rm -fr .libs/liboilfunctions.lax/libdct.a +mkdir .libs/liboilfunctions.lax/libdct.a +(cd .libs/liboilfunctions.lax/libdct.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/dct/.libs/libdct.a) +rm -fr .libs/liboilfunctions.lax/libi386.a +mkdir .libs/liboilfunctions.lax/libi386.a +(cd .libs/liboilfunctions.lax/libi386.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/i386/.libs/libi386.a) +rm -fr .libs/liboilfunctions.lax/libi386_amd64.a +mkdir .libs/liboilfunctions.lax/libi386_amd64.a +(cd .libs/liboilfunctions.lax/libi386_amd64.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64/.libs/libi386_amd64.a) +rm -fr .libs/liboilfunctions.lax/libmmx.a +mkdir .libs/liboilfunctions.lax/libmmx.a +(cd .libs/liboilfunctions.lax/libmmx.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/mmx/.libs/libmmx.a) +rm -fr .libs/liboilfunctions.lax/libfb.a +mkdir .libs/liboilfunctions.lax/libfb.a +(cd .libs/liboilfunctions.lax/libfb.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/fb/.libs/libfb.a) +rm -fr .libs/liboilfunctions.lax/libsse.a +mkdir .libs/liboilfunctions.lax/libsse.a +(cd .libs/liboilfunctions.lax/libsse.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/sse/.libs/libsse.a) +rm -fr .libs/liboilfunctions.lax/libjpeg.a +mkdir .libs/liboilfunctions.lax/libjpeg.a +(cd .libs/liboilfunctions.lax/libjpeg.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg/.libs/libjpeg.a) +rm -fr .libs/liboilfunctions.lax/libmath.a +mkdir .libs/liboilfunctions.lax/libmath.a +(cd .libs/liboilfunctions.lax/libmath.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/math/.libs/libmath.a) +rm -fr .libs/liboilfunctions.lax/libmd5.a +mkdir .libs/liboilfunctions.lax/libmd5.a +(cd .libs/liboilfunctions.lax/libmd5.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/md5/.libs/libmd5.a) +rm -fr .libs/liboilfunctions.lax/libref.a +mkdir .libs/liboilfunctions.lax/libref.a +(cd .libs/liboilfunctions.lax/libref.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/ref/.libs/libref.a) +rm -fr .libs/liboilfunctions.lax/libsimdpack.a +mkdir .libs/liboilfunctions.lax/libsimdpack.a +(cd .libs/liboilfunctions.lax/libsimdpack.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack/.libs/libsimdpack.a) +rm -fr .libs/liboilfunctions.lax/libutf8.a +mkdir .libs/liboilfunctions.lax/libutf8.a +(cd .libs/liboilfunctions.lax/libutf8.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/utf8/.libs/libutf8.a) +rm -fr .libs/liboilfunctions.lax/libconv.a +mkdir .libs/liboilfunctions.lax/libconv.a +(cd .libs/liboilfunctions.lax/libconv.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/conv/.libs/libconv.a) +rm -fr .libs/liboilfunctions.lax/libdeprecated.a +mkdir .libs/liboilfunctions.lax/libdeprecated.a +(cd .libs/liboilfunctions.lax/libdeprecated.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated/.libs/libdeprecated.a) +ar cru .libs/liboilfunctions.a .libs/liboilfunctions_la-null.o .libs/liboilfunctions.lax/lib_c.a/lib_c_la-ag_clamp.o .libs/liboilfunctions.lax/lib_c.a/lib_c_la-composite.o .libs/liboilfunctions.lax/lib_c.a/lib_c_la-copy.o .libs/liboilfunctions.lax/lib_c.a/lib_c_la-swab.o .libs/liboilfunctions.lax/libcolorspace.a/libcolorspace_la-composite.o .libs/liboilfunctions.lax/libcopy.a/libcopy_la-copy.o .libs/liboilfunctions.lax/libcopy.a/libcopy_la-copy8x8.o .libs/liboilfunctions.lax/libcopy.a/libcopy_la-splat_ref.o .libs/liboilfunctions.lax/libcopy.a/libcopy_la-trans8x8_c.o .libs/liboilfunctions.lax/libdct.a/libdct_la-dct12_f32.o .libs/liboilfunctions.lax/libdct.a/libdct_la-dct36_f32.o .libs/liboilfunctions.lax/libdct.a/libdct_la-fdct8_f64.o .libs/liboilfunctions.lax/libdct.a/libdct_la-fdct8x8_f64.o .libs/liboilfunctions.lax/libdct.a/libdct_la-fdct8x8s_s16.o .libs/liboilfunctions.lax/libdct.a/libdct_la-fdct8x8theora.o .libs/liboilfunctions.lax/libdct.a/libdct_la-idct8_f64.o .libs/liboilfunctions.lax/libdct.a/libdct_la-idct8x8_c.o .libs/liboilfunctions.lax/libdct.a/libdct_la-imdct32_f32.o .libs/liboilfunctions.lax/libdct.a/libdct_la-idct8x8theora_ref.o .libs/liboilfunctions.lax/libi386.a/libi386_la-argb_paint_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-ayuv2argb_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-composite_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-convert_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-copy8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-copy_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-diff8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-error8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-md5_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-mult8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-recon8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-rowcolsad8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-sad8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-sad8x8avg_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-splat_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-trans8x8_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-wavelet.o .libs/liboilfunctions.lax/libi386.a/libi386_la-math.o .libs/liboilfunctions.lax/libi386.a/libi386_la-abs_i386.o .libs/liboilfunctions.lax/libi386.a/libi386_la-conv_sse.o .libs/liboilfunctions.lax/libi386.a/libi386_la-conv_3dnow.o .libs/liboilfunctions.lax/libi386_amd64.a/libi386_amd64_la-clamp.o .libs/liboilfunctions.lax/libi386_amd64.a/libi386_amd64_la-idct8x8_i386.o .libs/liboilfunctions.lax/libi386_amd64.a/libi386_amd64_la-mt19937.o .libs/liboilfunctions.lax/libi386_amd64.a/libi386_amd64_la-resample.o .libs/liboilfunctions.lax/libi386_amd64.a/libi386_amd64_la-sum.o .libs/liboilfunctions.lax/libi386_amd64.a/libi386_amd64_la-swab.o .libs/liboilfunctions.lax/libmmx.a/libmmx_la-composite_mmx.o .libs/liboilfunctions.lax/libmmx.a/libmmx_la-copy_mmx.o .libs/liboilfunctions.lax/libmmx.a/libmmx_la-recon8x8_mmx.o .libs/liboilfunctions.lax/libmmx.a/libmmx_la-splat_mmx.o .libs/liboilfunctions.lax/libfb.a/libfb_la-fbmmx.o .libs/liboilfunctions.lax/libsse.a/libsse_la-clamp_sse.o .libs/liboilfunctions.lax/libsse.a/libsse_la-composite_sse.o .libs/liboilfunctions.lax/libsse.a/libsse_la-composite_sse_2pix.o .libs/liboilfunctions.lax/libsse.a/libsse_la-composite_sse_4pix.o .libs/liboilfunctions.lax/libsse.a/libsse_la-copy_sse.o .libs/liboilfunctions.lax/libsse.a/libsse_la-math_sse.o .libs/liboilfunctions.lax/libsse.a/libsse_la-math_sse_unroll2.o .libs/liboilfunctions.lax/libsse.a/libsse_la-multsum_sse.o .libs/liboilfunctions.lax/libsse.a/libsse_la-sad8x8_sse.o .libs/liboilfunctions.lax/libsse.a/libsse_la-splat_sse.o .libs/liboilfunctions.lax/libjpeg.a/libjpeg_la-convert8x8_c.o .libs/liboilfunctions.lax/libjpeg.a/libjpeg_la-jpeg_rgb_decoder.o .libs/liboilfunctions.lax/libjpeg.a/libjpeg_la-quantize8x8_c.o .libs/liboilfunctions.lax/libjpeg.a/libjpeg_la-yuv2rgb_c.o .libs/liboilfunctions.lax/libjpeg.a/libjpeg_la-zigzag8x8_c.o .libs/liboilfunctions.lax/libmath.a/libmath_la-math.o .libs/liboilfunctions.lax/libmath.a/libmath_la-ag_math.o .libs/liboilfunctions.lax/libmd5.a/libmd5_la-md5.o .libs/liboilfunctions.lax/libref.a/libref_la-argb_paint.o .libs/liboilfunctions.lax/libref.a/libref_la-ayuv2argb.o .libs/liboilfunctions.lax/libref.a/libref_la-clamp.o .libs/liboilfunctions.lax/libref.a/libref_la-composite.o .libs/liboilfunctions.lax/libref.a/libref_la-convert.o .libs/liboilfunctions.lax/libref.a/libref_la-copy.o .libs/liboilfunctions.lax/libref.a/libref_la-copy8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-diff8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-diffsquaresum_f64.o .libs/liboilfunctions.lax/libref.a/libref_la-error8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-math.o .libs/liboilfunctions.lax/libref.a/libref_la-mix_u8.o .libs/liboilfunctions.lax/libref.a/libref_la-mt19937ar.o .libs/liboilfunctions.lax/libref.a/libref_la-mult8x8_s16.o .libs/liboilfunctions.lax/libref.a/libref_la-multsum.o .libs/liboilfunctions.lax/libref.a/libref_la-recon8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-resample.o .libs/liboilfunctions.lax/libref.a/libref_la-rgb.o .libs/liboilfunctions.lax/libref.a/libref_la-rowcolsad8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-sad8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-sad8x8_broken.o .libs/liboilfunctions.lax/libref.a/libref_la-sad8x8avg.o .libs/liboilfunctions.lax/libref.a/libref_la-sincos_f64.o .libs/liboilfunctions.lax/libref.a/libref_la-splat.o .libs/liboilfunctions.lax/libref.a/libref_la-squaresum_f64.o .libs/liboilfunctions.lax/libref.a/libref_la-sum.o .libs/liboilfunctions.lax/libref.a/libref_la-sum_f64.o .libs/liboilfunctions.lax/libref.a/libref_la-swab.o .libs/liboilfunctions.lax/libref.a/libref_la-trans8x8.o .libs/liboilfunctions.lax/libref.a/libref_la-yuv.o .libs/liboilfunctions.lax/libref.a/libref_la-wavelet.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-diffsquaresum_f64.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-mix_u8.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-multsum.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-sincos_f64.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-squaresum_f64.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-sum_f64.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-abs_misc.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-average2_u8.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-clip_fast.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-scalaradd.o .libs/liboilfunctions.lax/libsimdpack.a/libsimdpack_la-scalarmult.o .libs/liboilfunctions.lax/libutf8.a/libutf8_la-utf8.o .libs/liboilfunctions.lax/libutf8.a/libutf8_la-utf8_fast.o .libs/liboilfunctions.lax/libconv.a/libconv_la-conv_c.o .libs/liboilfunctions.lax/libconv.a/libconv_la-conv_bitstuff.o .libs/liboilfunctions.lax/libconv.a/libconv_la-conv_misc.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-abs.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-average2_u8.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-clip_ref.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-conv.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-permute.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-scalaradd.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-scalarmult.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-tablelookup.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-vectoradd_f64.o .libs/liboilfunctions.lax/libdeprecated.a/libdeprecated_la-vectoradd_s.o +ranlib .libs/liboilfunctions.a +rm -fr .libs/liboilfunctions.lax +creating liboilfunctions.la +(cd .libs && rm -f liboilfunctions.la && ln -s ../liboilfunctions.la liboilfunctions.la) +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o liboiltmp1.la -rpath /usr/lib -no-undefined -export-symbols-regex 'oil_' liboiltmp.lo liboilfunctions.la -lm +generating symbol list for `liboiltmp1.la' +/usr/bin/nm -B .libs/liboiltmp.o ./.libs/liboilfunctions.a | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | /bin/sed 's/.* //' | sort | uniq > .libs/liboiltmp1.exp +/bin/grep -E -e "oil_" ".libs/liboiltmp1.exp" > ".libs/liboiltmp1.expT" +mv -f ".libs/liboiltmp1.expT" ".libs/liboiltmp1.exp" +echo "{ global:" > .libs/liboiltmp1.ver + cat .libs/liboiltmp1.exp | sed -e "s/\(.*\)/\1;/" >> .libs/liboiltmp1.ver + echo "local: *; };" >> .libs/liboiltmp1.ver + cc -shared .libs/liboiltmp.o -Wl,--whole-archive ./.libs/liboilfunctions.a -Wl,--no-whole-archive -lm -Wl,-soname -Wl,liboiltmp1.so.0 -Wl,-version-script -Wl,.libs/liboiltmp1.ver -o .libs/liboiltmp1.so.0.0.0 +(cd .libs && rm -f liboiltmp1.so.0 && ln -s liboiltmp1.so.0.0.0 liboiltmp1.so.0) +(cd .libs && rm -f liboiltmp1.so && ln -s liboiltmp1.so.0.0.0 liboiltmp1.so) +rm -fr .libs/liboiltmp1.lax +mkdir .libs/liboiltmp1.lax +rm -fr .libs/liboiltmp1.lax/liboilfunctions.a +mkdir .libs/liboiltmp1.lax/liboilfunctions.a +(cd .libs/liboiltmp1.lax/liboilfunctions.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/./.libs/liboilfunctions.a) +ar cru .libs/liboiltmp1.a liboiltmp.o .libs/liboiltmp1.lax/liboilfunctions.a/liboilfunctions_la-null.o .libs/liboiltmp1.lax/liboilfunctions.a/lib_c_la-ag_clamp.o .libs/liboiltmp1.lax/liboilfunctions.a/lib_c_la-composite.o .libs/liboiltmp1.lax/liboilfunctions.a/lib_c_la-copy.o .libs/liboiltmp1.lax/liboilfunctions.a/lib_c_la-swab.o .libs/liboiltmp1.lax/liboilfunctions.a/libcolorspace_la-composite.o .libs/liboiltmp1.lax/liboilfunctions.a/libcopy_la-copy.o .libs/liboiltmp1.lax/liboilfunctions.a/libcopy_la-copy8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libcopy_la-splat_ref.o .libs/liboiltmp1.lax/liboilfunctions.a/libcopy_la-trans8x8_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-dct12_f32.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-dct36_f32.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-fdct8_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-fdct8x8_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-fdct8x8s_s16.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-fdct8x8theora.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-idct8_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-idct8x8_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-imdct32_f32.o .libs/liboiltmp1.lax/liboilfunctions.a/libdct_la-idct8x8theora_ref.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-argb_paint_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-ayuv2argb_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-composite_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-convert_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-copy8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-copy_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-diff8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-error8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-md5_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-mult8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-recon8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-rowcolsad8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-sad8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-sad8x8avg_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-splat_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-trans8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-wavelet.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-math.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-abs_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-conv_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_la-conv_3dnow.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_amd64_la-clamp.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_amd64_la-idct8x8_i386.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_amd64_la-mt19937.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_amd64_la-resample.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_amd64_la-sum.o .libs/liboiltmp1.lax/liboilfunctions.a/libi386_amd64_la-swab.o .libs/liboiltmp1.lax/liboilfunctions.a/libmmx_la-composite_mmx.o .libs/liboiltmp1.lax/liboilfunctions.a/libmmx_la-copy_mmx.o .libs/liboiltmp1.lax/liboilfunctions.a/libmmx_la-recon8x8_mmx.o .libs/liboiltmp1.lax/liboilfunctions.a/libmmx_la-splat_mmx.o .libs/liboiltmp1.lax/liboilfunctions.a/libfb_la-fbmmx.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-clamp_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-composite_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-composite_sse_2pix.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-composite_sse_4pix.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-copy_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-math_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-math_sse_unroll2.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-multsum_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-sad8x8_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libsse_la-splat_sse.o .libs/liboiltmp1.lax/liboilfunctions.a/libjpeg_la-convert8x8_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libjpeg_la-jpeg_rgb_decoder.o .libs/liboiltmp1.lax/liboilfunctions.a/libjpeg_la-quantize8x8_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libjpeg_la-yuv2rgb_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libjpeg_la-zigzag8x8_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libmath_la-math.o .libs/liboiltmp1.lax/liboilfunctions.a/libmath_la-ag_math.o .libs/liboiltmp1.lax/liboilfunctions.a/libmd5_la-md5.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-argb_paint.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-ayuv2argb.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-clamp.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-composite.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-convert.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-copy.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-copy8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-diff8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-diffsquaresum_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-error8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-math.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-mix_u8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-mt19937ar.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-mult8x8_s16.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-multsum.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-recon8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-resample.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-rgb.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-rowcolsad8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-sad8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-sad8x8_broken.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-sad8x8avg.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-sincos_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-splat.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-squaresum_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-sum.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-sum_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-swab.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-trans8x8.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-yuv.o .libs/liboiltmp1.lax/liboilfunctions.a/libref_la-wavelet.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-diffsquaresum_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-mix_u8.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-multsum.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-sincos_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-squaresum_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-sum_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-abs_misc.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-average2_u8.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-clip_fast.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-scalaradd.o .libs/liboiltmp1.lax/liboilfunctions.a/libsimdpack_la-scalarmult.o .libs/liboiltmp1.lax/liboilfunctions.a/libutf8_la-utf8.o .libs/liboiltmp1.lax/liboilfunctions.a/libutf8_la-utf8_fast.o .libs/liboiltmp1.lax/liboilfunctions.a/libconv_la-conv_c.o .libs/liboiltmp1.lax/liboilfunctions.a/libconv_la-conv_bitstuff.o .libs/liboiltmp1.lax/liboilfunctions.a/libconv_la-conv_misc.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-abs.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-average2_u8.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-clip_ref.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-conv.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-permute.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-scalaradd.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-scalarmult.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-tablelookup.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-vectoradd_f64.o .libs/liboiltmp1.lax/liboilfunctions.a/libdeprecated_la-vectoradd_s.o +ranlib .libs/liboiltmp1.a +rm -fr .libs/liboiltmp1.lax +creating liboiltmp1.la +(cd .libs && rm -f liboiltmp1.la && ln -s ../liboiltmp1.la liboiltmp1.la) +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilcpu.lo `test -f 'liboilcpu.c' || echo './'`liboilcpu.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilcpu.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilcpu.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilcpu.c -o liboil_0.3_la-liboilcpu.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboildebug.lo `test -f 'liboildebug.c' || echo './'`liboildebug.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboildebug.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboildebug.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboildebug.c -o liboil_0.3_la-liboildebug.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilfunction.lo `test -f 'liboilfunction.c' || echo './'`liboilfunction.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilfunction.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilfunction.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilfunction.c -o liboil_0.3_la-liboilfunction.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilmarshal.lo `test -f 'liboilmarshal.c' || echo './'`liboilmarshal.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilmarshal.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilmarshal.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilmarshal.c -o liboil_0.3_la-liboilmarshal.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilprofile.lo `test -f 'liboilprofile.c' || echo './'`liboilprofile.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilprofile.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilprofile.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilprofile.c -o liboil_0.3_la-liboilprofile.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilprototype.lo `test -f 'liboilprototype.c' || echo './'`liboilprototype.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilprototype.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilprototype.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilprototype.c -o liboil_0.3_la-liboilprototype.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilrandom.lo `test -f 'liboilrandom.c' || echo './'`liboilrandom.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilrandom.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilrandom.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilrandom.c -o liboil_0.3_la-liboilrandom.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboiltest.lo `test -f 'liboiltest.c' || echo './'`liboiltest.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboiltest.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboiltest.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboiltest.c -o liboil_0.3_la-liboiltest.o >/dev/null 2>&1 +echo '/* This file is autogenerated. Do not edit */' >liboilarray.c.tmp +echo >>liboilarray.c.tmp +echo '#include ' >>liboilarray.c.tmp +echo >>liboilarray.c.tmp +grep '^_oil_function_class_' .libs/liboiltmp1.exp | \ + sed -e 's/ .*//' -e 's/.*/extern OilFunctionClass &;/' >>liboilarray.c.tmp +echo >>liboilarray.c.tmp +echo 'OilFunctionClass *_oil_function_class_array[] = {' >>liboilarray.c.tmp +grep '^_oil_function_class_' .libs/liboiltmp1.exp | \ + sed -e 's/ .*//' -e 's/.*/ \&&,/' >>liboilarray.c.tmp +echo ' NULL' >>liboilarray.c.tmp +echo '};' >>liboilarray.c.tmp +echo >>liboilarray.c.tmp +grep '^_oil_function_impl_' .libs/liboiltmp1.exp | \ + sed -e 's/ .*//' -e 's/.*/extern OilFunctionImpl &;/' >>liboilarray.c.tmp +echo >>liboilarray.c.tmp +echo 'OilFunctionImpl *_oil_function_impl_array[] = {' >>liboilarray.c.tmp +grep '^_oil_function_impl_' .libs/liboiltmp1.exp | \ + sed -e 's/ .*//' -e 's/.*/ \&&,/' >>liboilarray.c.tmp +echo ' NULL' >>liboilarray.c.tmp +echo '};' >>liboilarray.c.tmp +echo >>liboilarray.c.tmp +cmp liboilarray.c.tmp liboilarray.c || mv liboilarray.c.tmp liboilarray.c +cmp: liboilarray.c: No such file or directory +/bin/sh ../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o liboil_0.3_la-liboilarray.lo `test -f 'liboilarray.c' || echo './'`liboilarray.c + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilarray.c -fPIC -DPIC -o .libs/liboil_0.3_la-liboilarray.o + cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c liboilarray.c -o liboil_0.3_la-liboilarray.o >/dev/null 2>&1 +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o liboil-0.3.la -rpath /usr/lib -no-undefined -version-info 1:0:1 -export-symbols-regex '^oil_' liboil_0.3_la-liboilcpu.lo liboil_0.3_la-liboildebug.lo liboil_0.3_la-liboilfunction.lo liboil_0.3_la-liboilmarshal.lo liboil_0.3_la-liboilprofile.lo liboil_0.3_la-liboilprototype.lo liboil_0.3_la-liboilrandom.lo liboil_0.3_la-liboiltest.lo liboil_0.3_la-liboilarray.lo liboilfunctions.la -lm +generating symbol list for `liboil-0.3.la' +/usr/bin/nm -B .libs/liboil_0.3_la-liboilcpu.o .libs/liboil_0.3_la-liboildebug.o .libs/liboil_0.3_la-liboilfunction.o .libs/liboil_0.3_la-liboilmarshal.o .libs/liboil_0.3_la-liboilprofile.o .libs/liboil_0.3_la-liboilprototype.o .libs/liboil_0.3_la-liboilrandom.o .libs/liboil_0.3_la-liboiltest.o .libs/liboil_0.3_la-liboilarray.o ./.libs/liboilfunctions.a | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | /bin/sed 's/.* //' | sort | uniq > .libs/liboil-0.3.exp +/bin/grep -E -e "^oil_" ".libs/liboil-0.3.exp" > ".libs/liboil-0.3.expT" +mv -f ".libs/liboil-0.3.expT" ".libs/liboil-0.3.exp" +echo "{ global:" > .libs/liboil-0.3.ver + cat .libs/liboil-0.3.exp | sed -e "s/\(.*\)/\1;/" >> .libs/liboil-0.3.ver + echo "local: *; };" >> .libs/liboil-0.3.ver + cc -shared .libs/liboil_0.3_la-liboilcpu.o .libs/liboil_0.3_la-liboildebug.o .libs/liboil_0.3_la-liboilfunction.o .libs/liboil_0.3_la-liboilmarshal.o .libs/liboil_0.3_la-liboilprofile.o .libs/liboil_0.3_la-liboilprototype.o .libs/liboil_0.3_la-liboilrandom.o .libs/liboil_0.3_la-liboiltest.o .libs/liboil_0.3_la-liboilarray.o -Wl,--whole-archive ./.libs/liboilfunctions.a -Wl,--no-whole-archive -lm -Wl,-soname -Wl,liboil-0.3.so.0 -Wl,-version-script -Wl,.libs/liboil-0.3.ver -o .libs/liboil-0.3.so.0.1.0 +(cd .libs && rm -f liboil-0.3.so.0 && ln -s liboil-0.3.so.0.1.0 liboil-0.3.so.0) +(cd .libs && rm -f liboil-0.3.so && ln -s liboil-0.3.so.0.1.0 liboil-0.3.so) +rm -fr .libs/liboil-0.3.lax +mkdir .libs/liboil-0.3.lax +rm -fr .libs/liboil-0.3.lax/liboilfunctions.a +mkdir .libs/liboil-0.3.lax/liboilfunctions.a +(cd .libs/liboil-0.3.lax/liboilfunctions.a && ar x /home/ds/debian/liboil/liboil-0.3.11/liboil/./.libs/liboilfunctions.a) +ar cru .libs/liboil-0.3.a liboil_0.3_la-liboilcpu.o liboil_0.3_la-liboildebug.o liboil_0.3_la-liboilfunction.o liboil_0.3_la-liboilmarshal.o liboil_0.3_la-liboilprofile.o liboil_0.3_la-liboilprototype.o liboil_0.3_la-liboilrandom.o liboil_0.3_la-liboiltest.o liboil_0.3_la-liboilarray.o .libs/liboil-0.3.lax/liboilfunctions.a/liboilfunctions_la-null.o .libs/liboil-0.3.lax/liboilfunctions.a/lib_c_la-ag_clamp.o .libs/liboil-0.3.lax/liboilfunctions.a/lib_c_la-composite.o .libs/liboil-0.3.lax/liboilfunctions.a/lib_c_la-copy.o .libs/liboil-0.3.lax/liboilfunctions.a/lib_c_la-swab.o .libs/liboil-0.3.lax/liboilfunctions.a/libcolorspace_la-composite.o .libs/liboil-0.3.lax/liboilfunctions.a/libcopy_la-copy.o .libs/liboil-0.3.lax/liboilfunctions.a/libcopy_la-copy8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libcopy_la-splat_ref.o .libs/liboil-0.3.lax/liboilfunctions.a/libcopy_la-trans8x8_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-dct12_f32.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-dct36_f32.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-fdct8_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-fdct8x8_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-fdct8x8s_s16.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-fdct8x8theora.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-idct8_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-idct8x8_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-imdct32_f32.o .libs/liboil-0.3.lax/liboilfunctions.a/libdct_la-idct8x8theora_ref.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-argb_paint_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-ayuv2argb_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-composite_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-convert_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-copy8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-copy_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-diff8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-error8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-md5_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-mult8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-recon8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-rowcolsad8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-sad8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-sad8x8avg_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-splat_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-trans8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-wavelet.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-math.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-abs_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-conv_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_la-conv_3dnow.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_amd64_la-clamp.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_amd64_la-idct8x8_i386.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_amd64_la-mt19937.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_amd64_la-resample.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_amd64_la-sum.o .libs/liboil-0.3.lax/liboilfunctions.a/libi386_amd64_la-swab.o .libs/liboil-0.3.lax/liboilfunctions.a/libmmx_la-composite_mmx.o .libs/liboil-0.3.lax/liboilfunctions.a/libmmx_la-copy_mmx.o .libs/liboil-0.3.lax/liboilfunctions.a/libmmx_la-recon8x8_mmx.o .libs/liboil-0.3.lax/liboilfunctions.a/libmmx_la-splat_mmx.o .libs/liboil-0.3.lax/liboilfunctions.a/libfb_la-fbmmx.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-clamp_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-composite_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-composite_sse_2pix.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-composite_sse_4pix.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-copy_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-math_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-math_sse_unroll2.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-multsum_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-sad8x8_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libsse_la-splat_sse.o .libs/liboil-0.3.lax/liboilfunctions.a/libjpeg_la-convert8x8_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libjpeg_la-jpeg_rgb_decoder.o .libs/liboil-0.3.lax/liboilfunctions.a/libjpeg_la-quantize8x8_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libjpeg_la-yuv2rgb_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libjpeg_la-zigzag8x8_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libmath_la-math.o .libs/liboil-0.3.lax/liboilfunctions.a/libmath_la-ag_math.o .libs/liboil-0.3.lax/liboilfunctions.a/libmd5_la-md5.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-argb_paint.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-ayuv2argb.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-clamp.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-composite.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-convert.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-copy.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-copy8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-diff8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-diffsquaresum_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-error8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-math.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-mix_u8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-mt19937ar.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-mult8x8_s16.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-multsum.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-recon8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-resample.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-rgb.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-rowcolsad8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-sad8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-sad8x8_broken.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-sad8x8avg.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-sincos_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-splat.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-squaresum_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-sum.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-sum_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-swab.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-trans8x8.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-yuv.o .libs/liboil-0.3.lax/liboilfunctions.a/libref_la-wavelet.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-diffsquaresum_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-mix_u8.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-multsum.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-sincos_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-squaresum_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-sum_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-abs_misc.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-average2_u8.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-clip_fast.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-scalaradd.o .libs/liboil-0.3.lax/liboilfunctions.a/libsimdpack_la-scalarmult.o .libs/liboil-0.3.lax/liboilfunctions.a/libutf8_la-utf8.o .libs/liboil-0.3.lax/liboilfunctions.a/libutf8_la-utf8_fast.o .libs/liboil-0.3.lax/liboilfunctions.a/libconv_la-conv_c.o .libs/liboil-0.3.lax/liboilfunctions.a/libconv_la-conv_bitstuff.o .libs/liboil-0.3.lax/liboilfunctions.a/libconv_la-conv_misc.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-abs.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-average2_u8.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-clip_ref.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-conv.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-permute.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-scalaradd.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-scalarmult.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-tablelookup.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-vectoradd_f64.o .libs/liboil-0.3.lax/liboilfunctions.a/libdeprecated_la-vectoradd_s.o +ranlib .libs/liboil-0.3.a +rm -fr .libs/liboil-0.3.lax +creating liboil-0.3.la +(cd .libs && rm -f liboil-0.3.la && ln -s ../liboil-0.3.la liboil-0.3.la) +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o build_prototypes-build_prototypes.o `test -f 'build_prototypes.c' || echo './'`build_prototypes.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o build_prototypes build_prototypes-build_prototypes.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/build_prototypes build_prototypes-build_prototypes.o ../liboil/.libs/liboil-0.3.so +creating build_prototypes +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o build_prototypes_doc-build_prototypes_doc.o `test -f 'build_prototypes_doc.c' || echo './'`build_prototypes_doc.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o build_prototypes_doc build_prototypes_doc-build_prototypes_doc.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/build_prototypes_doc build_prototypes_doc-build_prototypes_doc.o ../liboil/.libs/liboil-0.3.so +creating build_prototypes_doc +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o build_marshal-build_marshal.o `test -f 'build_marshal.c' || echo './'`build_marshal.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o build_marshal build_marshal-build_marshal.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/build_marshal build_marshal-build_marshal.o ../liboil/.libs/liboil-0.3.so +creating build_marshal +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o build_class_decls-build_class_decls.o `test -f 'build_class_decls.c' || echo './'`build_class_decls.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o build_class_decls build_class_decls-build_class_decls.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/build_class_decls build_class_decls-build_class_decls.o ../liboil/.libs/liboil-0.3.so +creating build_class_decls +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o build_trampolines-build_trampolines.o `test -f 'build_trampolines.c' || echo './'`build_trampolines.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o build_trampolines build_trampolines-build_trampolines.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/build_trampolines build_trampolines-build_trampolines.o ../liboil/.libs/liboil-0.3.so +creating build_trampolines +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o build_prototypes_04-build_prototypes_04.o `test -f 'build_prototypes_04.c' || echo './'`build_prototypes_04.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o build_prototypes_04 build_prototypes_04-build_prototypes_04.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/build_prototypes_04 build_prototypes_04-build_prototypes_04.o ../liboil/.libs/liboil-0.3.so +creating build_prototypes_04 +./build_prototypes_doc >liboilfuncs-doc.h +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +Making all in testsuite +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +Making all in instruction +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +make[4]: Nothing to be done for `all'. +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c list_impls.c +/bin/sh ../libtool --tag=CC --mode=link cc -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 ../liboil/liboil-0.3.la -o list_impls list_impls.o +mkdir .libs +cc -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -o .libs/list_impls list_impls.o ../liboil/.libs/liboil-0.3.so +creating list_impls +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +Making all in examples +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +Making all in jpeg +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-jpeg.lo `test -f 'jpeg.c' || echo './'`jpeg.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c jpeg.c -fPIC -DPIC -o .libs/libjpeg_la-jpeg.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c jpeg.c -o libjpeg_la-jpeg.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-huffman.lo `test -f 'huffman.c' || echo './'`huffman.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c huffman.c -fPIC -DPIC -o .libs/libjpeg_la-huffman.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c huffman.c -o libjpeg_la-huffman.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libjpeg_la-jpeg_rgb_decoder.lo `test -f 'jpeg_rgb_decoder.c' || echo './'`jpeg_rgb_decoder.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c jpeg_rgb_decoder.c -fPIC -DPIC -o .libs/libjpeg_la-jpeg_rgb_decoder.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c jpeg_rgb_decoder.c -o libjpeg_la-jpeg_rgb_decoder.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libjpeg.la libjpeg_la-jpeg.lo libjpeg_la-huffman.lo libjpeg_la-jpeg_rgb_decoder.lo +ar cru .libs/libjpeg.a .libs/libjpeg_la-jpeg.o .libs/libjpeg_la-huffman.o .libs/libjpeg_la-jpeg_rgb_decoder.o +ranlib .libs/libjpeg.a +creating libjpeg.la +(cd .libs && rm -f libjpeg.la && ln -s ../libjpeg.la libjpeg.la) +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o jpeg_test-test.o `test -f 'test.c' || echo './'`test.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o jpeg_test jpeg_test-test.o libjpeg.la ../../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/jpeg_test jpeg_test-test.o ./.libs/libjpeg.a ../../liboil/.libs/liboil-0.3.so +creating jpeg_test +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o jpeg_rgb_test-test_rgb.o `test -f 'test_rgb.c' || echo './'`test_rgb.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o jpeg_rgb_test jpeg_rgb_test-test_rgb.o libjpeg.la ../../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/jpeg_rgb_test jpeg_rgb_test-test_rgb.o ./.libs/libjpeg.a ../../liboil/.libs/liboil-0.3.so +creating jpeg_rgb_test +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +Making all in md5 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o md5sum-md5sum.o `test -f 'md5sum.c' || echo './'`md5sum.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o md5sum md5sum-md5sum.o ../../liboil/liboil-0.3.la +mkdir .libs +cc -g -Wall -O2 -o .libs/md5sum md5sum-md5sum.o ../../liboil/.libs/liboil-0.3.so +creating md5sum +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +Making all in uberopt +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c -o uberopt-uberopt.o `test -f 'uberopt.c' || echo './'`uberopt.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o uberopt uberopt-uberopt.o ../../liboil/liboil-0.3.la -lglib-2.0 +mkdir .libs +cc -g -Wall -O2 -o .libs/uberopt uberopt-uberopt.o ../../liboil/.libs/liboil-0.3.so /usr/lib/libglib-2.0.so +creating uberopt +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +Making all in work +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c work.c +/bin/sh ../../libtool --tag=CC --mode=link cc -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 ../../liboil/liboil-0.3.la -lglib-2.0 -o work work.o +mkdir .libs +cc -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -o .libs/work work.o ../../liboil/.libs/liboil-0.3.so /usr/lib/libglib-2.0.so +creating work +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +Making all in huffman +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o huffman_test-huffman.o `test -f 'huffman.c' || echo './'`huffman.c +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o huffman_test-huffman_test.o `test -f 'huffman_test.c' || echo './'`huffman_test.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o huffman_test huffman_test-huffman.o huffman_test-huffman_test.o +mkdir .libs +cc -g -Wall -O2 -o huffman_test huffman_test-huffman.o huffman_test-huffman_test.o +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +Making all in taylor +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o example1-example1.o `test -f 'example1.c' || echo './'`example1.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o example1 example1-example1.o ../../liboil/liboil-0.3.la +mkdir .libs +cc -g -Wall -O2 -o .libs/example1 example1-example1.o ../../liboil/.libs/liboil-0.3.so +creating example1 +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +Making all in videoscale +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libvideoscale_la-vs_4tap.lo `test -f 'vs_4tap.c' || echo './'`vs_4tap.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vs_4tap.c -fPIC -DPIC -o .libs/libvideoscale_la-vs_4tap.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vs_4tap.c -o libvideoscale_la-vs_4tap.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libvideoscale_la-vs_image.lo `test -f 'vs_image.c' || echo './'`vs_image.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vs_image.c -fPIC -DPIC -o .libs/libvideoscale_la-vs_image.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vs_image.c -o libvideoscale_la-vs_image.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o libvideoscale_la-vs_scanline.lo `test -f 'vs_scanline.c' || echo './'`vs_scanline.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vs_scanline.c -fPIC -DPIC -o .libs/libvideoscale_la-vs_scanline.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c vs_scanline.c -o libvideoscale_la-vs_scanline.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libvideoscale.la libvideoscale_la-vs_4tap.lo libvideoscale_la-vs_image.lo libvideoscale_la-vs_scanline.lo +ar cru .libs/libvideoscale.a .libs/libvideoscale_la-vs_4tap.o .libs/libvideoscale_la-vs_image.o .libs/libvideoscale_la-vs_scanline.o +ranlib .libs/libvideoscale.a +creating libvideoscale.la +(cd .libs && rm -f libvideoscale.la && ln -s ../libvideoscale.la libvideoscale.la) +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +Making all in audioresample +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c -o libaudioresample_la-functable.lo `test -f 'functable.c' || echo './'`functable.c +mkdir .libs + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c functable.c -fPIC -DPIC -o .libs/libaudioresample_la-functable.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c functable.c -o libaudioresample_la-functable.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c -o libaudioresample_la-resample.lo `test -f 'resample.c' || echo './'`resample.c + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c resample.c -fPIC -DPIC -o .libs/libaudioresample_la-resample.o + cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -g -Wall -O2 -c resample.c -o libaudioresample_la-resample.o >/dev/null 2>&1 +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o libaudioresample.la libaudioresample_la-functable.lo libaudioresample_la-resample.lo +ar cru .libs/libaudioresample.a .libs/libaudioresample_la-functable.o .libs/libaudioresample_la-resample.o +ranlib .libs/libaudioresample.a +creating libaudioresample.la +(cd .libs && rm -f libaudioresample.la && ln -s ../libaudioresample.la libaudioresample.la) +cc -DHAVE_CONFIG_H -I. -I. -I../.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I../.. -g -Wall -O2 -c -o test_functable1-test_functable1.o `test -f 'test_functable1.c' || echo './'`test_functable1.c +/bin/sh ../../libtool --tag=CC --mode=link cc -g -Wall -O2 -o test_functable1 test_functable1-test_functable1.o libaudioresample.la ../../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/test_functable1 test_functable1-test_functable1.o ./.libs/libaudioresample.a ../../liboil/.libs/liboil-0.3.so +creating test_functable1 +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_bugreport-oil-bugreport.o `test -f 'oil-bugreport.c' || echo './'`oil-bugreport.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-bugreport oil_bugreport-oil-bugreport.o ../liboil/liboil-0.3.la +mkdir .libs +cc -g -Wall -O2 -o .libs/oil-bugreport oil_bugreport-oil-bugreport.o ../liboil/.libs/liboil-0.3.so +creating oil-bugreport +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o example1-example1.o `test -f 'example1.c' || echo './'`example1.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o example1 example1-example1.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/example1 example1-example1.o ../liboil/.libs/liboil-0.3.so +creating example1 +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_graph-oil-graph.o `test -f 'oil-graph.c' || echo './'`oil-graph.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-graph oil_graph-oil-graph.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/oil-graph oil_graph-oil-graph.o ../liboil/.libs/liboil-0.3.so +creating oil-graph +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_inspect-oil-inspect.o `test -f 'oil-inspect.c' || echo './'`oil-inspect.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-inspect oil_inspect-oil-inspect.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/oil-inspect oil_inspect-oil-inspect.o ../liboil/.libs/liboil-0.3.so +creating oil-inspect +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_test-oil-test.o `test -f 'oil-test.c' || echo './'`oil-test.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-test oil_test-oil-test.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/oil-test oil_test-oil-test.o ../liboil/.libs/liboil-0.3.so +creating oil-test +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o memcpy_speed-memcpy-speed.o `test -f 'memcpy-speed.c' || echo './'`memcpy-speed.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o memcpy-speed memcpy_speed-memcpy-speed.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/memcpy-speed memcpy_speed-memcpy-speed.o ../liboil/.libs/liboil-0.3.so +creating memcpy-speed +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_suggest-oil-suggest.o `test -f 'oil-suggest.c' || echo './'`oil-suggest.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-suggest oil_suggest-oil-suggest.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/oil-suggest oil_suggest-oil-suggest.o ../liboil/.libs/liboil-0.3.so +creating oil-suggest +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o printcpu-printcpu.o `test -f 'printcpu.c' || echo './'`printcpu.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o printcpu printcpu-printcpu.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/printcpu printcpu-printcpu.o ../liboil/.libs/liboil-0.3.so +creating printcpu +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_mt19937-oil-mt19937.o `test -f 'oil-mt19937.c' || echo './'`oil-mt19937.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-mt19937 oil_mt19937-oil-mt19937.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/oil-mt19937 oil_mt19937-oil-mt19937.o ../liboil/.libs/liboil-0.3.so +creating oil-mt19937 +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o report-report.o `test -f 'report.c' || echo './'`report.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o report report-report.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/report report-report.o ../liboil/.libs/liboil-0.3.so +creating report +cc -DHAVE_CONFIG_H -I. -I. -I.. -Wall -D_BSD_SOURCE -D_GNU_SOURCE -I.. -g -Wall -O2 -c -o oil_random-oil-random.o `test -f 'oil-random.c' || echo './'`oil-random.c +/bin/sh ../libtool --tag=CC --mode=link cc -g -Wall -O2 -o oil-random oil_random-oil-random.o ../liboil/liboil-0.3.la +cc -g -Wall -O2 -o .libs/oil-random oil_random-oil-random.o ../liboil/.libs/liboil-0.3.so +creating oil-random +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +Making all in doc +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +*** Scanning header files *** +if grep -l '^..*$' ./liboil.types > /dev/null ; then \ + CC="/bin/sh ../libtool --mode=compile cc -g -Wall -O2" LD="/bin/sh ../libtool --mode=link cc -g -Wall -O2 " CFLAGS="" LDFLAGS="" gtkdoc-scangobj --module=liboil --output-dir=. ; \ + else \ + cd . ; \ + for i in liboil.args liboil.hierarchy liboil.interfaces liboil.prerequisites liboil.signals ; do \ + test -f $i || touch $i ; \ + done \ + fi +cd . && \ + gtkdoc-scan --module=liboil --source-dir=../liboil --ignore-headers="liboilfuncs.h fbmmx.h fbpict.h liboil-stdint.h" +touch scan-build.stamp +*** Rebuilding template files *** +cd . && gtkdoc-mktmpl --module=liboil +WARNING: No declaration found for: oil_rand_rgba +============================================================================= +WARNING: 110 unused declarations. + These can be found in liboil-unused.txt. + They should be added to liboil-sections.txt in the appropriate place. +============================================================================= +touch tmpl-build.stamp +*** Building XML *** +cd . && \ + gtkdoc-mkdb --module=liboil --source-dir=../liboil --output-format=xml --sgml-mode --output-format=xml + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. + Parameters must start on the line immediately after the function + or macro name. +WARNING: No declaration found for: oil_rand_rgba +95% symbol docs coverage (433 symbols documented, 265 symbols incomplete, 25 not documented) +See liboil-undocumented.txt for a list of missing docs. +The doc coverage percentage doesn't include intro sections. +touch sgml-build.stamp +*** Building HTML *** +rm -rf ./html +mkdir ./html +cd ./html && gtkdoc-mkhtml liboil ../liboil-docs.sgml +Computing chunks... +ID recommended on chapter: Liboil Stable API +Writing liboil-liboilinit.html for refentry(liboil-liboilinit) +No template matches i in para. +No template matches i in para. +No template matches i in para. +Writing liboil-liboilfuncs-conv.html for refentry(liboil-liboilfuncs-conv) +Writing liboil-liboilfuncs-copy.html for refentry(liboil-liboilfuncs-copy) +Writing liboil-liboilfuncs-math.html for refentry(liboil-liboilfuncs-math) +Writing liboil-liboilfuncs-math8x8.html for refentry(liboil-liboilfuncs-math8x8) +Writing liboil-liboilfuncs-dct.html for refentry(liboil-liboilfuncs-dct) +Writing liboil-liboilfuncs-pixel.html for refentry(liboil-liboilfuncs-pixel) +Writing liboil-liboilfuncs-doc.html for refentry(liboil-liboilfuncs-doc) +Writing ch01.html for chapter +ID recommended on chapter: Liboil Unstable API +Writing liboil-liboilinit-unstable.html for refentry(liboil-liboilinit-unstable) +Writing liboil-liboilcpu.html for refentry(liboil-liboilcpu) +Writing liboil-liboildebug.html for refentry(liboil-liboildebug) +Writing liboil-liboilclass-unstable.html for refentry(liboil-liboilclass-unstable) +Writing liboil-liboilimpl-unstable.html for refentry(liboil-liboilimpl-unstable) +Writing liboil-liboilparameter.html for refentry(liboil-liboilparameter) +Writing liboil-liboilprofile.html for refentry(liboil-liboilprofile) +Writing liboil-liboilprototype.html for refentry(liboil-liboilprototype) +Writing liboil-liboilrandom.html for refentry(liboil-liboilrandom) +Writing liboil-liboiltest.html for refentry(liboil-liboiltest) +Writing liboil-liboiltypes.html for refentry(liboil-liboiltypes) +Writing liboil-liboilmacros.html for refentry(liboil-liboilmacros) +Writing liboil-liboiljunk.html for refentry(liboil-liboiljunk) +Writing ch02.html for chapter +Writing index.html for book(index) +Writing index.sgml for book(index) +Writing liboil.devhelp for book(index) +Writing liboil.devhelp2 for book(index) +test "x" = "x" || ( cd . && cp html ) +-- Fixing Crossreferences +cd . && gtkdoc-fixxref --module-dir=html --html-dir=/usr/share/gtk-doc/html +touch html-build.stamp +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +cp liboil.pc liboil-0.3.pc +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +make[1]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +touch debian/stamp-makefile-build +DEB_MAKE_CHECK_TARGET unset, not running checks + fakeroot debian/rules binary +test -x debian/rules +test "`id -u`" = 0 +dh_clean -k +dh_installdirs -A +mkdir -p "." +if test -e /usr/share/misc/config.guess ; then \ + for i in ./config.guess ; do \ + if ! test -e $i.cdbs-orig ; then \ + mv $i $i.cdbs-orig ; \ + cp --remove-destination /usr/share/misc/config.guess $i ; \ + fi ; \ + done ; \ + fi +if test -e /usr/share/misc/config.sub ; then \ + for i in ./config.sub ; do \ + if ! test -e $i.cdbs-orig ; then \ + mv $i $i.cdbs-orig ; \ + cp --remove-destination /usr/share/misc/config.sub $i ; \ + fi ; \ + done ; \ + fi +DEB_MAKE_CHECK_TARGET unset, not running checks +/usr/bin/make -C . install DESTDIR=/home/ds/debian/liboil/liboil-0.3.11/debian/tmp/ +make[1]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +/usr/bin/make install-recursive +make[2]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +Making install in liboil +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +Making install in c +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/c' +Making install in colorspace +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/colorspace' +Making install in conv +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/conv' +Making install in copy +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/copy' +Making install in dct +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/dct' +Making install in jpeg +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/jpeg' +Making install in math +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/math' +Making install in md5 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/md5' +Making install in ref +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/ref' +Making install in simdpack +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/simdpack' +Making install in utf8 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/utf8' +Making install in deprecated +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/deprecated' +Making install in i386 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386' +Making install in i386_amd64 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/i386_amd64' +Making install in mmx +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/mmx' +Making install in fb +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/fb' +Making install in sse +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil/sse' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +test -z "/usr/lib" || mkdir -p -- "/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib" + /bin/sh ../libtool --mode=install /usr/bin/install -c 'liboil-0.3.la' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/liboil-0.3.la' +/usr/bin/install -c .libs/liboil-0.3.so.0.1.0 /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/liboil-0.3.so.0.1.0 +(cd /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib && { ln -s -f liboil-0.3.so.0.1.0 liboil-0.3.so.0 || { rm -f liboil-0.3.so.0 && ln -s liboil-0.3.so.0.1.0 liboil-0.3.so.0; }; }) +(cd /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib && { ln -s -f liboil-0.3.so.0.1.0 liboil-0.3.so || { rm -f liboil-0.3.so && ln -s liboil-0.3.so.0.1.0 liboil-0.3.so; }; }) +/usr/bin/install -c .libs/liboil-0.3.lai /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/liboil-0.3.la +/usr/bin/install -c .libs/liboil-0.3.a /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/liboil-0.3.a +chmod 644 /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/liboil-0.3.a +ranlib /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/liboil-0.3.a +libtool: install: warning: remember to run `libtool --finish /usr/lib' +test -z "/usr/include/liboil-0.3/liboil" || mkdir -p -- "/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil" + /usr/bin/install -c -m 644 'liboil-stdint.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboil-stdint.h' +test -z "/usr/include/liboil-0.3/liboil" || mkdir -p -- "/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil" + /usr/bin/install -c -m 644 'liboil.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboil.h' + /usr/bin/install -c -m 644 'liboilfunction.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilfunction.h' + /usr/bin/install -c -m 644 'liboildebug.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboildebug.h' + /usr/bin/install -c -m 644 'liboilfuncs.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilfuncs.h' + /usr/bin/install -c -m 644 'liboiltypes.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboiltypes.h' + /usr/bin/install -c -m 644 'liboilcpu.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilcpu.h' + /usr/bin/install -c -m 644 'liboilprototype.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilprototype.h' + /usr/bin/install -c -m 644 'liboilparameter.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilparameter.h' + /usr/bin/install -c -m 644 'liboilrandom.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilrandom.h' + /usr/bin/install -c -m 644 'liboilgcc.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilgcc.h' + /usr/bin/install -c -m 644 'liboiltest.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboiltest.h' + /usr/bin/install -c -m 644 'liboilprofile.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilprofile.h' + /usr/bin/install -c -m 644 'liboilinternal.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilinternal.h' + /usr/bin/install -c -m 644 'liboilclasses.h' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/include/liboil-0.3/liboil/liboilclasses.h' +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/liboil' +Making install in testsuite +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +Making install in instruction +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite/instruction' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/testsuite' +Making install in examples +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +Making install in jpeg +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/jpeg' +Making install in md5 +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/md5' +Making install in uberopt +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/uberopt' +Making install in work +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/work' +Making install in huffman +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/huffman' +Making install in taylor +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/taylor' +Making install in videoscale +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/videoscale' +Making install in audioresample +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +make[5]: Nothing to be done for `install-exec-am'. +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples/audioresample' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +make[5]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +test -z "/usr/bin" || mkdir -p -- "/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/bin" + /bin/sh ../libtool --mode=install /usr/bin/install -c 'oil-bugreport' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/bin/oil-bugreport' +libtool: install: warning: `../liboil/liboil-0.3.la' has not been installed in `/usr/lib' +/usr/bin/install -c .libs/oil-bugreport /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/bin/oil-bugreport +make[5]: Nothing to be done for `install-data-am'. +make[5]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/examples' +Making install in doc +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +make[4]: Nothing to be done for `install-exec-am'. +installfiles=`echo ./html/*`; \ + if test "$installfiles" = './html/*'; \ + then echo '-- Nothing to install' ; \ + else \ + /home/ds/debian/liboil/liboil-0.3.11/install-sh -d /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/share/gtk-doc/html/liboil; \ + for i in $installfiles; do \ + echo '-- Installing '$i ; \ + /usr/bin/install -c -m 644 $i /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/share/gtk-doc/html/liboil; \ + done; \ + echo '-- Installing ./html/index.sgml' ; \ + /usr/bin/install -c -m 644 ./html/index.sgml /home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/share/gtk-doc/html/liboil || :; \ + fi +-- Installing ./html/ch01.html +-- Installing ./html/ch02.html +-- Installing ./html/home.png +-- Installing ./html/index.html +-- Installing ./html/index.sgml +-- Installing ./html/left.png +-- Installing ./html/liboil-liboilclass-unstable.html +-- Installing ./html/liboil-liboilcpu.html +-- Installing ./html/liboil-liboildebug.html +-- Installing ./html/liboil-liboilfuncs-conv.html +-- Installing ./html/liboil-liboilfuncs-copy.html +-- Installing ./html/liboil-liboilfuncs-dct.html +-- Installing ./html/liboil-liboilfuncs-doc.html +-- Installing ./html/liboil-liboilfuncs-math.html +-- Installing ./html/liboil-liboilfuncs-math8x8.html +-- Installing ./html/liboil-liboilfuncs-pixel.html +-- Installing ./html/liboil-liboilimpl-unstable.html +-- Installing ./html/liboil-liboilinit-unstable.html +-- Installing ./html/liboil-liboilinit.html +-- Installing ./html/liboil-liboiljunk.html +-- Installing ./html/liboil-liboilmacros.html +-- Installing ./html/liboil-liboilparameter.html +-- Installing ./html/liboil-liboilprofile.html +-- Installing ./html/liboil-liboilprototype.html +-- Installing ./html/liboil-liboilrandom.html +-- Installing ./html/liboil-liboiltest.html +-- Installing ./html/liboil-liboiltypes.html +-- Installing ./html/liboil.devhelp +-- Installing ./html/liboil.devhelp2 +-- Installing ./html/right.png +-- Installing ./html/style.css +-- Installing ./html/up.png +-- Installing ./html/index.sgml +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11/doc' +make[3]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +make[4]: Entering directory `/home/ds/debian/liboil/liboil-0.3.11' +make[4]: Nothing to be done for `install-exec-am'. +test -z "/usr/lib/pkgconfig" || mkdir -p -- "/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/pkgconfig" + /usr/bin/install -c -m 644 'liboil-0.3.pc' '/home/ds/debian/liboil/liboil-0.3.11/debian/tmp//usr/lib/pkgconfig/liboil-0.3.pc' +make[4]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +make[3]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +make[2]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +make[1]: Leaving directory `/home/ds/debian/liboil/liboil-0.3.11' +dh_installdirs -pliboil0.3 +dh_installdirs -pliboil0.3-dev +dh_installdirs -pliboil0.3-dbg +dh_installdocs -pliboil0.3 ./README ./NEWS ./AUTHORS +dh_installexamples -pliboil0.3 +dh_installman -pliboil0.3 +dh_installinfo -pliboil0.3 +dh_installmenu -pliboil0.3 +dh_installcron -pliboil0.3 +dh_installinit -pliboil0.3 +dh_installdebconf -pliboil0.3 +dh_installemacsen -pliboil0.3 +dh_installcatalogs -pliboil0.3 +dh_installpam -pliboil0.3 +dh_installlogrotate -pliboil0.3 +dh_installlogcheck -pliboil0.3 +dh_installmime -pliboil0.3 +dh_installchangelogs -pliboil0.3 ./ChangeLog +dh_installudev -pliboil0.3 +dh_install -pliboil0.3 +dh_link -pliboil0.3 +dh_installdocs -pliboil0.3-dev ./README ./NEWS ./AUTHORS +dh_installexamples -pliboil0.3-dev +dh_installman -pliboil0.3-dev +dh_installinfo -pliboil0.3-dev +dh_installmenu -pliboil0.3-dev +dh_installcron -pliboil0.3-dev +dh_installinit -pliboil0.3-dev +dh_installdebconf -pliboil0.3-dev +dh_installemacsen -pliboil0.3-dev +dh_installcatalogs -pliboil0.3-dev +dh_installpam -pliboil0.3-dev +dh_installlogrotate -pliboil0.3-dev +dh_installlogcheck -pliboil0.3-dev +dh_installmime -pliboil0.3-dev +dh_installchangelogs -pliboil0.3-dev ./ChangeLog +dh_installudev -pliboil0.3-dev +dh_install -pliboil0.3-dev +dh_link -pliboil0.3-dev +dh_installdocs -pliboil0.3-dbg ./README ./NEWS ./AUTHORS +dh_installexamples -pliboil0.3-dbg +dh_installman -pliboil0.3-dbg +dh_installinfo -pliboil0.3-dbg +dh_installmenu -pliboil0.3-dbg +dh_installcron -pliboil0.3-dbg +dh_installinit -pliboil0.3-dbg +dh_installdebconf -pliboil0.3-dbg +dh_installemacsen -pliboil0.3-dbg +dh_installcatalogs -pliboil0.3-dbg +dh_installpam -pliboil0.3-dbg +dh_installlogrotate -pliboil0.3-dbg +dh_installlogcheck -pliboil0.3-dbg +dh_installmime -pliboil0.3-dbg +dh_installchangelogs -pliboil0.3-dbg ./ChangeLog +dh_installudev -pliboil0.3-dbg +dh_install -pliboil0.3-dbg +dh_link -pliboil0.3-dbg +dh_strip -pliboil0.3 +dh_compress -pliboil0.3 +dh_fixperms -pliboil0.3 +dh_makeshlibs -pliboil0.3 +dh_strip -pliboil0.3-dev +dh_compress -pliboil0.3-dev +dh_fixperms -pliboil0.3-dev +dh_makeshlibs -pliboil0.3-dev +dh_compress -pliboil0.3-dbg +dh_fixperms -pliboil0.3-dbg +dh_installdeb -pliboil0.3 +dh_perl -pliboil0.3 +dh_shlibdeps -pliboil0.3 +dh_installdeb -pliboil0.3-dev +dh_perl -pliboil0.3-dev +dh_shlibdeps -pliboil0.3-dev +dh_installdeb -pliboil0.3-dbg +dh_perl -pliboil0.3-dbg +dh_shlibdeps -pliboil0.3-dbg +dh_gencontrol -pliboil0.3 +dh_md5sums -pliboil0.3 +dh_builddeb -pliboil0.3 +dpkg-deb: building package `liboil0.3' in `../liboil0.3_0.3.11-1_i386.deb'. +dh_gencontrol -pliboil0.3-dev +dh_md5sums -pliboil0.3-dev +dh_builddeb -pliboil0.3-dev +dpkg-deb: building package `liboil0.3-dev' in `../liboil0.3-dev_0.3.11-1_i386.deb'. +dh_gencontrol -pliboil0.3-dbg +dh_md5sums -pliboil0.3-dbg +dh_builddeb -pliboil0.3-dbg +dpkg-deb: building package `liboil0.3-dbg' in `../liboil0.3-dbg_0.3.11-1_i386.deb'. + dpkg-genchanges -b +dpkg-genchanges: binary-only upload - not including any source code +dpkg-buildpackage: binary only upload (no source included) + signfile ../liboil_0.3.11-1_i386.changes +gpg: Invalid passphrase; please try again ... +gpg: Invalid passphrase; please try again ... +gpg: no default secret key: bad passphrase +gpg: [stdin]: clearsign failed: bad passphrase --- liboil-0.3.11.orig/debian/rules +++ liboil-0.3.11/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +DEB_DH_STRIP_ARGS := --dbg-package=liboil0.3-dbg +DEB_CONFIGURE_EXTRA_FLAGS := --enable-static + --- liboil-0.3.11.orig/debian/copyright +++ liboil-0.3.11/debian/copyright @@ -0,0 +1,102 @@ +This package was debianized by David Schleef on +Thu, 04 Nov 2004 18:17:18 -0800 + + +It was downloaded from http://liboil.freedesktop.org/download. + +Upstream Author: David Schleef + +Copyright: + + +The majority of the source code and the collective work is subject +to the following license: + + Copyright 2002,2003,2004,2005 David A. Schleef + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED + WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + + +The source code in the liboil/motovec directory is subject to the +following license: + + Copyright Motorola, Inc. 2003 + ALL RIGHTS RESERVED + + You are hereby granted a copyright license to use, modify, and + distribute the SOFTWARE so long as this entire notice is retained + without alteration in any modified and/or redistributed versions, + and that such modified versions are clearly identified as such. + No licenses are granted by implication, estoppel or otherwise under + any patents or trademarks of Motorola, Inc. + + The SOFTWARE is provided on an "AS IS" basis and without warranty. + To the maximum extent permitted by applicable law, MOTOROLA DISCLAIMS + ALL WARRANTIES WHETHER EXPRESS OR IMPLIED, INCLUDING IMPLIED + WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR + PURPOSE AND ANY WARRANTY AGAINST INFRINGEMENT WITH + REGARD TO THE SOFTWARE (INCLUDING ANY MODIFIED VERSIONS + THEREOF) AND ANY ACCOMPANYING WRITTEN MATERIALS. + + To the maximum extent permitted by applicable law, IN NO EVENT SHALL + MOTOROLA BE LIABLE FOR ANY DAMAGES WHATSOEVER + (INCLUDING WITHOUT LIMITATION, DAMAGES FOR LOSS OF + BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS + INFORMATION, OR OTHER PECUNIARY LOSS) ARISING OF THE USE OR + INABILITY TO USE THE SOFTWARE. Motorola assumes no responsibility + for the maintenance and support of the SOFTWARE. + + +The source code implementing the Mersenne Twister algorithm is +subject to the following license: + + Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. The names of its contributors may not be used to endorse or promote + products derived from this software without specific prior written + permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR + CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + --- liboil-0.3.11.orig/debian/changelog +++ liboil-0.3.11/debian/changelog @@ -0,0 +1,152 @@ +liboil (0.3.11-1ubuntu1) gutsy; urgency=low + + * Sync with Debian, remaining Ubuntu changes: + + debian/control: + - updated maintainer + + debian/patches/01_from_cvs_fix_signal_handling.patch, + debian/rules: + - patch from CVS, fix signal handling (Ubuntu: #72814) + * debian/liboil0.3.shlibs: + + Update shlibs to >= 0.3.11 as 0.3.11 provides new symbols. + + -- Sebastian Dröge Wed, 16 May 2007 12:32:19 +0200 + +liboil (0.3.11-1) unstable; urgency=low + + * New upstream release. Changes include fixes to bugs: + - Disable timestamp on XScale (Closes: #410859) + - Merge stack realignment patch into upstream (Closes: #381506) + * Add -dbg package. (Closes: 400163) + + -- David Schleef Sat, 17 Mar 2007 13:18:03 -0700 + +liboil (0.3.10-1.1ubuntu1) feisty; urgency=low + + * debian/control: + - updated maintainer + * debian/patches/01_from_cvs_fix_signal_handling.patch: + - patch from CVS, fix signal handling (Ubuntu: #72814) + * debian/rules: + - use simple-patchsys rule + + -- Sebastien Bacher Fri, 30 Mar 2007 12:57:37 +0200 + +liboil (0.3.10-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Disabled use of system register on StrongArm and XScale processors + (Closes: #410859) + + -- Ben Hutchings Thu, 22 Feb 2007 21:18:15 +0000 + +liboil (0.3.10-1) unstable; urgency=low + + * New upstream release. Changes include fixes to several bugs: + - new cpu detection on amd64 (Closes: #369315) + - Fix merge_linear_u8_mmx() and mt19937_i386_mmx_*() + (Closes: #396328, #369398) + - Alignment fixes for sparc (Closes: #361597) + + -- David Schleef Sat, 04 Nov 2006 17:59:51 -0800 + +liboil (0.3.9-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Fixing the recently introduced FTBFS on amd64. + Thanks for Goswin von Brederlow and Christian Aichinger + for preparation and testing. + + -- Andreas Barth Fri, 23 Jun 2006 09:29:45 +0200 + +liboil (0.3.9-1.1) unstable; urgency=low + + * Non-maintainer upload. + * fix possible unalignment on i386 - this change not perfect + and should also contain a test suite, but is still better + than nothing at all. Thanks to Christian Aichinger for his + good work on this and the patch. Closes: #368991 + (also keeping the patch around in the diff, so that it's + obvious what was changed) + + -- Andreas Barth Thu, 22 Jun 2006 19:31:26 +0200 + +liboil (0.3.9-1) unstable; urgency=low + + * New upstream release. + - Fix a bunch of alignment problems. Should fix a lot of bugs + on relevant architectures (Closes: #361746) + - Recognize SSE again (Closes: #364970) + + -- David Schleef Tue, 23 May 2006 12:54:44 -0700 + +liboil (0.3.8-1) unstable; urgency=low + + * New upstream release. Relevant upstream changes: + - fbCompositeSolid_nx8888mmx was removed (Closes: #340932). I'm + tired of all it's niggly little problems. + + -- David Schleef Wed, 22 Mar 2006 12:39:18 -0800 + +liboil (0.3.6-1) unstable; urgency=low + + * New upstream release. Relevant upstream changes: + - PowerPC build fixes (Closes: #334944) + * Install documentation + + -- David Schleef Mon, 19 Dec 2005 11:57:45 -0800 + +liboil (0.3.3-1) unstable; urgency=low + + * New upstream release. + + -- David Schleef Mon, 03 Oct 2005 12:18:16 -0700 + +liboil (0.3.2-1) unstable; urgency=low + + * New upstream release. + + -- David Schleef Sun, 08 May 2005 17:44:55 -0700 + +liboil (0.3.1-2) unstable; urgency=low + + * Disable buggy profiling MIPS asm + + -- David Schleef Thu, 24 Mar 2005 15:14:54 -0800 + +liboil (0.3.1-1) unstable; urgency=low + + * New upstream release + + -- David Schleef Thu, 17 Mar 2005 17:45:56 -0800 + +liboil (0.3.0-2) unstable; urgency=low + + * Use different package name + + -- David Schleef Mon, 17 Jan 2005 23:56:58 -0800 + +liboil0.3 (0.3.0-1) unstable; urgency=low + + * New upstream release, new ABI. + * Fix package description (Closes: #284486) + + -- David Schleef Thu, 13 Jan 2005 13:22:49 -0800 + +liboil0.2 (0.2.2-1) unstable; urgency=low + + * New upstream. + + -- David Schleef Tue, 23 Nov 2004 19:43:09 -0800 + +liboil0.2 (0.2.1-1) unstable; urgency=low + + * New upstream. Fixes powerpc compile problem. + + -- David Schleef Wed, 17 Nov 2004 21:50:20 -0800 + +liboil0.2 (0.2.0-1) unstable; urgency=low + + * New package. + + -- David Schleef Thu, 04 Nov 2004 18:09:03 -0800 + --- liboil-0.3.11.orig/debian/liboil0.3-dev.install +++ liboil-0.3.11/debian/liboil0.3-dev.install @@ -0,0 +1,5 @@ +debian/tmp/usr/lib/liboil-0.3.so +debian/tmp/usr/lib/liboil-0.3.a +debian/tmp/usr/include/liboil-0.3 +debian/tmp/usr/lib/pkgconfig/liboil-0.3.pc +debian/tmp/usr/share/gtk-doc/html/liboil/*.html --- liboil-0.3.11.orig/debian/control +++ liboil-0.3.11/debian/control @@ -0,0 +1,57 @@ +Source: liboil +Section: devel +Priority: optional +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: David Schleef +Build-Depends: cdbs, debhelper (>= 4.1.0), chrpath, gtk-doc-tools +Standards-Version: 3.6.2 + +Package: liboil0.3 +Section: libs +Architecture: any +Depends: ${shlibs:Depends} +Description: Library of Optimized Inner Loops + Liboil is a collection of functions that often benefit from having + special implementations on various architectures or CPUs. Each function + in liboil has several implementations which may perform faster or + slower on a given CPU. Some implementations use alternate algorithms, + some use hand-crafted assembly, and some use special instructions that + are only available on certain CPUs, such as MMX, SSE, or Altivec. + The fastest implementation is automatically chosen at runtime. + . + This package contains the liboil shared libraries. It is typically + installed automatically when an application or library requires it. + +Package: liboil0.3-dev +Section: libdevel +Architecture: any +Depends: liboil0.3 (= ${Source-Version}) +Provides: liboil-dev +Description: Library of Optimized Inner Loops (development headers) + Liboil is a collection of functions that often benefit from having + special implementations on various architectures or CPUs. Each function + in liboil has several implementations which may perform faster or + slower on a given CPU. Some implementations use alternate algorithms, + some use hand-crafted assembly, and some use special instructions that + are only available on certain CPUs, such as MMX, SSE, or Altivec. + The fastest implementation is automatically chosen at runtime. + . + This package contains the development headers and libraries, and should + be installed to compile software that uses liboil. + +Package: liboil0.3-dbg +Section: libdevel +Architecture: any +Depends: liboil0.3 (= ${Source-Version}) +Description: Library of Optimized Inner Loops (debug packages) + Liboil is a collection of functions that often benefit from having + special implementations on various architectures or CPUs. Each function + in liboil has several implementations which may perform faster or + slower on a given CPU. Some implementations use alternate algorithms, + some use hand-crafted assembly, and some use special instructions that + are only available on certain CPUs, such as MMX, SSE, or Altivec. + The fastest implementation is automatically chosen at runtime. + . + This package contains the debugging symbols for the liboil library. + Users should install it if they want to debug software that uses liboil. + --- liboil-0.3.11.orig/debian/liboil0.3.install +++ liboil-0.3.11/debian/liboil0.3.install @@ -0,0 +1,2 @@ +debian/tmp/usr/lib/liboil-0.3.so.* +debian/tmp/usr/bin/* --- liboil-0.3.11.orig/debian/compat +++ liboil-0.3.11/debian/compat @@ -0,0 +1 @@ +5 --- liboil-0.3.11.orig/debian/bin/strip +++ liboil-0.3.11/debian/bin/strip @@ -0,0 +1,6 @@ +#!/bin/sh + +echo Stripping -g... + +/usr/bin/strip -g $* + --- liboil-0.3.11.orig/debian/patches/01_from_cvs_fix_signal_handling.patch +++ liboil-0.3.11/debian/patches/01_from_cvs_fix_signal_handling.patch @@ -0,0 +1,13 @@ +--- liboilcpu.c 2007/02/15 00:41:39 1.40 ++++ liboil/liboilcpu.c 2007/03/22 22:36:34 1.41 +@@ -146,6 +146,10 @@ + illegal_instruction_handler (int num) + { + if (in_try_block) { ++ sigset_t set; ++ sigemptyset (&set); ++ sigaddset (&set, SIGILL); ++ sigprocmask (SIG_UNBLOCK, &set, NULL); + longjmp (jump_env, 1); + } else { + abort (); --- liboil-0.3.11.orig/debian/liboil0.3.shlibs +++ liboil-0.3.11/debian/liboil0.3.shlibs @@ -0,0 +1 @@ +liboil-0.3 0 liboil0.3 (>= 0.3.11)

-liboiljunk +liboiljunk

liboiljunk