[FFmpeg-devel] [PATCH] Fixed missing rawutils.o reference (required by movenc.c; link s fails if not referenced otherwise)
    Roman Ryltsov 
    roman at alax.info
       
    Sun Feb 28 12:36:03 CET 2016
    
    
  
I hope this is sent to proper mail list and formatted as expected too.
The patch fixes a small problem building configuration with just a few
things enabled. MOV muxer uses ff_reshuffle_raw_rgb from rawutils.c and
the latter is not properly referenced for linking.
---
 libavformat/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 
diff --git a/libavformat/Makefile b/libavformat/Makefile
index 3b32907..6ae4327 100644
--- a/libavformat/Makefile
+++ b/libavformat/Makefile
@@ -268,7 +268,7 @@ OBJS-$(CONFIG_MMF_DEMUXER)               += mmf.o
 OBJS-$(CONFIG_MMF_MUXER)                 += mmf.o rawenc.o
 OBJS-$(CONFIG_MOV_DEMUXER)               += mov.o mov_chan.o replaygain.o
 OBJS-$(CONFIG_MOV_MUXER)                 += movenc.o avc.o hevc.o \
-                                            movenchint.o mov_chan.o
rtp.o movenccenc.o
+                                            movenchint.o mov_chan.o
rtp.o movenccenc.o rawutils.o
 OBJS-$(CONFIG_MP2_MUXER)                 += mp3enc.o rawenc.o id3v2enc.o
 OBJS-$(CONFIG_MP3_DEMUXER)               += mp3dec.o replaygain.o
 OBJS-$(CONFIG_MP3_MUXER)                 += mp3enc.o rawenc.o id3v2enc.o
-- 
1.9.5.msysgit.1
 
    
    
More information about the ffmpeg-devel
mailing list