Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 132267
Collapse All | Expand All

(-)old/libavcodec/allcodecs.c (-2 lines)
Lines 226-236 Link Here
226
#ifdef CONFIG_VC9_DECODER
226
#ifdef CONFIG_VC9_DECODER
227
    register_avcodec(&vc9_decoder);
227
    register_avcodec(&vc9_decoder);
228
#endif //CONFIG_VC9_DECODER
228
#endif //CONFIG_VC9_DECODER
229
/* Reenable when it stops crashing on every file, causing bug report spam.
230
#ifdef CONFIG_WMV3_DECODER
229
#ifdef CONFIG_WMV3_DECODER
231
    register_avcodec(&wmv3_decoder);
230
    register_avcodec(&wmv3_decoder);
232
#endif //CONFIG_WMV3_DECODER
231
#endif //CONFIG_WMV3_DECODER
233
*/
234
#ifdef CONFIG_H263I_DECODER
232
#ifdef CONFIG_H263I_DECODER
235
    register_avcodec(&h263i_decoder);
233
    register_avcodec(&h263i_decoder);
236
#endif //CONFIG_H263I_DECODER
234
#endif //CONFIG_H263I_DECODER
(-)old/libavcodec/Makefile (-1 / +1 lines)
Lines 16-22 Link Here
16
      fft.o mdct.o raw.o golomb.o cabac.o\
16
      fft.o mdct.o raw.o golomb.o cabac.o\
17
      dpcm.o adx.o faandct.o parser.o g726.o \
17
      dpcm.o adx.o faandct.o parser.o g726.o \
18
      vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \
18
      vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \
19
      opt.o
19
      opt.o smpte-vc1.o
20
20
21
HEADERS = avcodec.h dsputil.h
21
HEADERS = avcodec.h dsputil.h
22
22
(-)old/libavcodec/vc9.c (+2 lines)
Lines 2662-2667 Link Here
2662
    NULL
2662
    NULL
2663
};
2663
};
2664
2664
2665
#if 0
2665
AVCodec wmv3_decoder = {
2666
AVCodec wmv3_decoder = {
2666
    "wmv3",
2667
    "wmv3",
2667
    CODEC_TYPE_VIDEO,
2668
    CODEC_TYPE_VIDEO,
Lines 2674-2676 Link Here
2674
    CODEC_CAP_DELAY,
2675
    CODEC_CAP_DELAY,
2675
    NULL
2676
    NULL
2676
};
2677
};
2678
#endif
(-)old/Makefile (-1 / +1 lines)
Lines 59-65 Link Here
59
59
60
OBJS = ffmpeg.o ffserver.o cmdutils.o $(FFPLAY_O)
60
OBJS = ffmpeg.o ffserver.o cmdutils.o $(FFPLAY_O)
61
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
61
SRCS = $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
62
FFLIBS = -L./libavformat -lavformat$(BUILDSUF) -L./libavcodec -lavcodec$(BUILDSUF) -L./libavutil -lavutil$(BUILDSUF)
62
FFLIBS = -L./libavformat -lavformat$(BUILDSUF) -L./libavcodec -lavcodec$(BUILDSUF) -L./libavutil -lavutil$(BUILDSUF) -L./libavcodec/libvc1 -lvc1
63
63
64
all: lib $(PROG_G) $(PROG) $(PROGTEST) $(VHOOK) $(QTFASTSTART) $(DOC)
64
all: lib $(PROG_G) $(PROG) $(PROGTEST) $(VHOOK) $(QTFASTSTART) $(DOC)
65
65

Return to bug 132267