On Thu, Feb 16, 2012 at 11:51:54AM +0100, Diego Biurrun wrote: > On Wed, Feb 15, 2012 at 07:16:34AM +0100, Kostya Shishkov wrote: > > Module: libav > > Branch: master > > Commit: 1a265f6187e9036b649fc08f8293b5e1fcd8dfbe > > > > Author: Kostya Shishkov <[email protected]> > > Committer: Kostya Shishkov <[email protected]> > > Date: Thu Feb 2 20:54:53 2012 +0100 > > > > prores encoder > > This does not compile standalone. Since we have a checklist in the > documentation for this, I hereby refer you to it: > > http://www.libav.org/developer.html#New-codecs-or-formats-checklist > > Since Ronald will come complaining to me if I reply tersely like this, > I draw your attention to point 12: > > 12. Did you make sure it compiles standalone, i.e. with configure > --disable-everything --enable-decoder=foo (or --enable-demuxer > or whatever your component is)?
My bad, here's the fix.
>From d231033650f24235bd56e23bc4049806bf836ad0 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov <[email protected]> Date: Thu, 16 Feb 2012 12:16:28 +0100 Subject: [PATCH] proresenc: add missing dependencies for x86 DSP functions initialisation --- libavcodec/x86/Makefile | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index fc88433..6de7252 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -46,7 +46,9 @@ MMX-OBJS-$(CONFIG_LPC) += x86/lpc_mmx.o YASM-OBJS-$(CONFIG_PNG_DECODER) += x86/pngdsp.o MMX-OBJS-$(CONFIG_PNG_DECODER) += x86/pngdsp-init.o YASM-OBJS-$(CONFIG_PRORES_DECODER) += x86/proresdsp.o +YASM-OBJS-$(CONFIG_PRORES_ENCODER) += x86/proresdsp.o MMX-OBJS-$(CONFIG_PRORES_DECODER) += x86/proresdsp-init.o +MMX-OBJS-$(CONFIG_PRORES_ENCODER) += x86/proresdsp-init.o MMX-OBJS-$(CONFIG_DWT) += x86/snowdsp_mmx.o MMX-OBJS-$(CONFIG_VC1_DECODER) += x86/vc1dsp_mmx.o YASM-OBJS-$(CONFIG_VP3_DECODER) += x86/vp3dsp.o -- 1.7.0.4
_______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
