[DEBUG] try to build on all platform
This commit is contained in:
parent
ce36e74e75
commit
dfafbc5fe5
@ -105,13 +105,13 @@ void ff_vc1_inv_trans_8x8_dc_mmxext(uint8_t *dest, int linesize,
|
|||||||
av_cold void ff_vc1dsp_init_x86(VC1DSPContext *dsp)
|
av_cold void ff_vc1dsp_init_x86(VC1DSPContext *dsp)
|
||||||
{
|
{
|
||||||
int cpu_flags = av_get_cpu_flags();
|
int cpu_flags = av_get_cpu_flags();
|
||||||
|
#if HAVE_6REGS && HAVE_INLINE_ASM && HAVE_MMX_EXTERNAL
|
||||||
if (HAVE_6REGS && INLINE_MMX(cpu_flags) && EXTERNAL_MMX(cpu_flags))
|
if (HAVE_6REGS && INLINE_MMX(cpu_flags) && EXTERNAL_MMX(cpu_flags))
|
||||||
ff_vc1dsp_init_mmx(dsp);
|
ff_vc1dsp_init_mmx(dsp);
|
||||||
|
|
||||||
if (HAVE_6REGS && INLINE_MMXEXT(cpu_flags) && EXTERNAL_MMXEXT(cpu_flags))
|
if (HAVE_6REGS && INLINE_MMXEXT(cpu_flags) && EXTERNAL_MMXEXT(cpu_flags))
|
||||||
ff_vc1dsp_init_mmxext(dsp);
|
ff_vc1dsp_init_mmxext(dsp);
|
||||||
|
#endif
|
||||||
#define ASSIGN_LF(EXT) \
|
#define ASSIGN_LF(EXT) \
|
||||||
dsp->vc1_v_loop_filter4 = ff_vc1_v_loop_filter4_ ## EXT; \
|
dsp->vc1_v_loop_filter4 = ff_vc1_v_loop_filter4_ ## EXT; \
|
||||||
dsp->vc1_h_loop_filter4 = ff_vc1_h_loop_filter4_ ## EXT; \
|
dsp->vc1_h_loop_filter4 = ff_vc1_h_loop_filter4_ ## EXT; \
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
static inline char *av_ts_make_string(char *buf, int64_t ts)
|
static inline char *av_ts_make_string(char *buf, int64_t ts)
|
||||||
{
|
{
|
||||||
if (ts == AV_NOPTS_VALUE) snprintf(buf, AV_TS_MAX_STRING_SIZE, "NOPTS");
|
if (ts == AV_NOPTS_VALUE) snprintf(buf, AV_TS_MAX_STRING_SIZE, "NOPTS");
|
||||||
else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%"PRId64, ts);
|
else snprintf(buf, AV_TS_MAX_STRING_SIZE, "%" PRId64, ts);
|
||||||
return buf;
|
return buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user