[Mplayer-cvslog] CVS: main/libmpcodecs Makefile,1.99,1.100 vd.c,1.69,1.70 vd_huffyuv.c,1.6,NONE vd_svq1.c,1.7,NONE
Alex Beregszaszi
alex at mplayerhq.hu
Sun Jul 13 17:56:22 CEST 2003
- Previous message: [Mplayer-cvslog] CVS: main/help help_mp-bg.h,1.13,1.14 help_mp-cz.h,1.38,1.39 help_mp-de.h,1.67,1.68 help_mp-dk.h,1.25,1.26 help_mp-el.h,1.15,1.16 help_mp-en.h,1.103,1.104 help_mp-es.h,1.27,1.28 help_mp-fr.h,1.43,1.44 help_mp-hu.h,1.61,1.62 help_mp-it.h,1.24,1.25 help_mp-ko.h,1.15,1.16 help_mp-nl.h,1.25,1.26 help_mp-no.h,1.14,1.15 help_mp-pl.h,1.69,1.70 help_mp-pt_BR.h,1.14,1.15 help_mp-ro.h,1.10,1.11 help_mp-ru.h,1.25,1.26 help_mp-sk.h,1.16,1.17 help_mp-tr.h,1.6,1.7 help_mp-uk.h,1.8,1.9 help_mp-zh.h,1.26,1.27 help_mp-zh_TW.h,1.3,1.4
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs/native svq1.c,1.5,NONE svq1.h,1.2,NONE svq1_cb.h,1.1,NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv2150/libmpcodecs
Modified Files:
Makefile vd.c
Removed Files:
vd_huffyuv.c vd_svq1.c
Log Message:
removed our native svq1 and huffyuv implementation as libavcodec's implementations are much better
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/Makefile,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- Makefile 18 Jun 2003 00:34:34 -0000 1.99
+++ Makefile 13 Jul 2003 15:56:19 -0000 1.100
@@ -10,7 +10,7 @@
AUDIO_SRCS=dec_audio.c ad.c $(AUDIO_SRCS_LIB) $(AUDIO_SRCS_NAT) $(AUDIO_SRCS_OPT)
VIDEO_SRCS_LIB=vd_libmpeg2.c vd_nuv.c vd_lzo.c
-VIDEO_SRCS_NAT=vd_null.c vd_cinepak.c vd_qtrpza.c vd_raw.c vd_hmblck.c vd_msvidc.c vd_fli.c vd_qtrle.c vd_qtsmc.c vd_roqvideo.c vd_cyuv.c vd_msrle.c vd_huffyuv.c vd_mpegpes.c vd_svq1.c vd_lcl.c vd_mtga.c vd_sgi.c
+VIDEO_SRCS_NAT=vd_null.c vd_cinepak.c vd_qtrpza.c vd_raw.c vd_hmblck.c vd_msvidc.c vd_fli.c vd_qtrle.c vd_qtsmc.c vd_roqvideo.c vd_cyuv.c vd_msrle.c vd_mpegpes.c vd_lcl.c vd_mtga.c vd_sgi.c
VIDEO_SRCS_OPT=vd_realvid.c vd_ffmpeg.c vd_dshow.c vd_dmo.c vd_vfw.c vd_vfwex.c vd_odivx.c vd_divx4.c vd_xanim.c vd_xvid.c vd_libdv.c vd_qtvideo.c vd_theora.c
VIDEO_SRCS=dec_video.c vd.c $(VIDEO_SRCS_NAT) $(VIDEO_SRCS_LIB) $(VIDEO_SRCS_OPT)
Index: vd.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- vd.c 18 Jun 2003 00:34:34 -0000 1.69
+++ vd.c 13 Jul 2003 15:56:19 -0000 1.70
@@ -54,10 +54,8 @@
extern vd_functions_t mpcodecs_vd_mtga;
extern vd_functions_t mpcodecs_vd_sgi;
extern vd_functions_t mpcodecs_vd_libmpeg2;
-extern vd_functions_t mpcodecs_vd_huffyuv;
extern vd_functions_t mpcodecs_vd_mpegpes;
extern vd_functions_t mpcodecs_vd_realvid;
-extern vd_functions_t mpcodecs_vd_svq1;
extern vd_functions_t mpcodecs_vd_xvid;
extern vd_functions_t mpcodecs_vd_libdv;
extern vd_functions_t mpcodecs_vd_lcl;
@@ -113,13 +111,9 @@
#ifdef USE_LIBMPEG2
&mpcodecs_vd_libmpeg2,
#endif
- &mpcodecs_vd_huffyuv,
&mpcodecs_vd_mpegpes,
#ifdef USE_REALCODECS
&mpcodecs_vd_realvid,
-#endif
-#ifdef USE_SVQ1
- &mpcodecs_vd_svq1,
#endif
#ifdef HAVE_XVID
&mpcodecs_vd_xvid,
--- vd_huffyuv.c DELETED ---
--- vd_svq1.c DELETED ---
- Previous message: [Mplayer-cvslog] CVS: main/help help_mp-bg.h,1.13,1.14 help_mp-cz.h,1.38,1.39 help_mp-de.h,1.67,1.68 help_mp-dk.h,1.25,1.26 help_mp-el.h,1.15,1.16 help_mp-en.h,1.103,1.104 help_mp-es.h,1.27,1.28 help_mp-fr.h,1.43,1.44 help_mp-hu.h,1.61,1.62 help_mp-it.h,1.24,1.25 help_mp-ko.h,1.15,1.16 help_mp-nl.h,1.25,1.26 help_mp-no.h,1.14,1.15 help_mp-pl.h,1.69,1.70 help_mp-pt_BR.h,1.14,1.15 help_mp-ro.h,1.10,1.11 help_mp-ru.h,1.25,1.26 help_mp-sk.h,1.16,1.17 help_mp-tr.h,1.6,1.7 help_mp-uk.h,1.8,1.9 help_mp-zh.h,1.26,1.27 help_mp-zh_TW.h,1.3,1.4
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs/native svq1.c,1.5,NONE svq1.h,1.2,NONE svq1_cb.h,1.1,NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list