[MPlayer-cvslog] CVS: main/libmpcodecs Makefile, 1.151, 1.152 ad.c, 1.21, 1.22
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Sat Nov 5 12:58:27 CET 2005
- Previous message: [MPlayer-cvslog] CVS: main AUTHORS, 1.164, 1.165 ChangeLog, 1.260, 1.261 Makefile, 1.330, 1.331 configure, 1.1098, 1.1099
- Next message: [MPlayer-cvslog] CVS: main/libmpcodecs ad_speex.c,NONE,1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv1810/libmpcodecs
Modified Files:
Makefile ad.c
Log Message:
Speex support. Seeking and pts generation does not work.
Index: Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/Makefile,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- Makefile 19 Sep 2005 15:23:15 -0000 1.151
+++ Makefile 5 Nov 2005 11:58:25 -0000 1.152
@@ -209,6 +209,10 @@
AUDIO_SRCS += ad_mpc.c
endif
+ifeq ($(SPEEX),yes)
+AUDIO_SRCS += ad_speex.c
+endif
+
ifeq ($(FAAC),yes)
ENCODER_SRCS += ae_faac.c
endif
Index: ad.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ad.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ad.c 10 Jul 2005 17:14:11 -0000 1.21
+++ ad.c 5 Nov 2005 11:58:25 -0000 1.22
@@ -33,6 +33,7 @@
extern ad_functions_t mpcodecs_ad_msgsm;
extern ad_functions_t mpcodecs_ad_faad;
extern ad_functions_t mpcodecs_ad_libvorbis;
+extern ad_functions_t mpcodecs_ad_speex;
extern ad_functions_t mpcodecs_ad_libmad;
extern ad_functions_t mpcodecs_ad_realaud;
extern ad_functions_t mpcodecs_ad_libdv;
@@ -78,6 +79,9 @@
#ifdef HAVE_OGGVORBIS
&mpcodecs_ad_libvorbis,
#endif
+#ifdef HAVE_SPEEX
+ &mpcodecs_ad_speex,
+#endif
#ifdef USE_LIBMAD
&mpcodecs_ad_libmad,
#endif
- Previous message: [MPlayer-cvslog] CVS: main AUTHORS, 1.164, 1.165 ChangeLog, 1.260, 1.261 Makefile, 1.330, 1.331 configure, 1.1098, 1.1099
- Next message: [MPlayer-cvslog] CVS: main/libmpcodecs ad_speex.c,NONE,1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list