[Mplayer-cvslog] CVS: main/libmpcodecs vd_cinepak.c,1.5,1.6 vd_divx4.c,1.1,1.2 vd_dshow.c,1.1,1.2 vd_ffmpeg.c,1.1,1.2 vd_internal.h,1.2,1.3 vd_null.c,1.1,1.2 vd_odivx.c,1.1,1.2 vd_qtrpza.c,1.3,1.4 vd_raw.c,1.1,1.2 vd_rle.c,1.1,1.2 vd_vfw.c,1.1,1.2 vd_xanim.c,1.1,1.2
Arpi of Ize
arpi at mplayer.dev.hu
Thu Mar 7 21:43:19 CET 2002
- Previous message: [Mplayer-cvslog] CVS: main/libvo vo_xmga.c,1.50,1.51
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs vd_cinepak.c,1.5,1.6 vd_divx4.c,1.1,1.2 vd_dshow.c,1.1,1.2 vd_ffmpeg.c,1.1,1.2 vd_internal.h,1.2,1.3 vd_null.c,1.1,1.2 vd_odivx.c,1.1,1.2 vd_qtrpza.c,1.3,1.4 vd_raw.c,1.1,1.2 vd_rle.c,1.1,1.2 vd_vfw.c,1.1,1.2 vd_xanim.c,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/libmpcodecs
In directory mplayer:/var/tmp.root/cvs-serv6897
Modified Files:
vd_cinepak.c vd_divx4.c vd_dshow.c vd_ffmpeg.c vd_internal.h
vd_null.c vd_odivx.c vd_qtrpza.c vd_raw.c vd_rle.c vd_vfw.c
vd_xanim.c
Log Message:
common includes moved to private vd_internal.h
Index: vd_cinepak.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_cinepak.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- vd_cinepak.c 6 Mar 2002 21:01:07 -0000 1.5
+++ vd_cinepak.c 7 Mar 2002 20:43:17 -0000 1.6
@@ -4,14 +4,6 @@
#include "config.h"
#include "mp_msg.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_divx4.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_divx4.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_divx4.c 7 Mar 2002 00:44:58 -0000 1.1
+++ vd_divx4.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -9,14 +9,6 @@
#ifdef USE_DIVX
#ifdef NEW_DECORE
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_dshow.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_dshow.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_dshow.c 6 Mar 2002 22:03:46 -0000 1.1
+++ vd_dshow.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -7,15 +7,6 @@
#include "mp_msg.h"
#include "help_mp.h"
-
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
#include "loader/dshow/DS_VideoDecoder.h"
Index: vd_ffmpeg.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_ffmpeg.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_ffmpeg.c 6 Mar 2002 20:54:43 -0000 1.1
+++ vd_ffmpeg.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -10,14 +10,6 @@
#include "bswap.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_internal.h
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_internal.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- vd_internal.h 7 Mar 2002 00:43:55 -0000 1.2
+++ vd_internal.h 7 Mar 2002 20:43:17 -0000 1.3
@@ -1,4 +1,13 @@
+#include "codec-cfg.h"
+#include "../libvo/img_format.h"
+
+#include "stream.h"
+#include "demuxer.h"
+#include "stheader.h"
+
+#include "vd.h"
+
// prototypes:
//static vd_info_t info;
static int control(sh_video_t *sh,int cmd,void* arg,...);
Index: vd_null.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_null.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_null.c 28 Feb 2002 00:57:47 -0000 1.1
+++ vd_null.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -1,16 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
-#include "codec-cfg.h"
-
#include "config.h"
#include "mp_msg.h"
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info =
Index: vd_odivx.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_odivx.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_odivx.c 7 Mar 2002 00:44:58 -0000 1.1
+++ vd_odivx.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -8,14 +8,6 @@
#ifdef USE_DIVX
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_qtrpza.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_qtrpza.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vd_qtrpza.c 6 Mar 2002 20:56:06 -0000 1.3
+++ vd_qtrpza.c 7 Mar 2002 20:43:17 -0000 1.4
@@ -4,14 +4,6 @@
#include "config.h"
#include "mp_msg.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_raw.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_raw.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_raw.c 7 Mar 2002 01:39:07 -0000 1.1
+++ vd_raw.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -4,14 +4,6 @@
#include "config.h"
#include "mp_msg.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_rle.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_rle.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_rle.c 7 Mar 2002 01:39:07 -0000 1.1
+++ vd_rle.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -4,14 +4,6 @@
#include "config.h"
#include "mp_msg.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
Index: vd_vfw.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_vfw.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_vfw.c 7 Mar 2002 00:44:58 -0000 1.1
+++ vd_vfw.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -7,14 +7,6 @@
#include "mp_msg.h"
#include "help_mp.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
#include "dll_init.h"
Index: vd_xanim.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vd_xanim.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- vd_xanim.c 7 Mar 2002 01:39:07 -0000 1.1
+++ vd_xanim.c 7 Mar 2002 20:43:17 -0000 1.2
@@ -6,14 +6,6 @@
#include "mp_msg.h"
-#include "codec-cfg.h"
-#include "../libvo/img_format.h"
-
-#include "stream.h"
-#include "demuxer.h"
-#include "stheader.h"
-
-#include "vd.h"
#include "vd_internal.h"
static vd_info_t info = {
- Previous message: [Mplayer-cvslog] CVS: main/libvo vo_xmga.c,1.50,1.51
- Next message: [Mplayer-cvslog] CVS: main/libmpcodecs vd_cinepak.c,1.5,1.6 vd_divx4.c,1.1,1.2 vd_dshow.c,1.1,1.2 vd_ffmpeg.c,1.1,1.2 vd_internal.h,1.2,1.3 vd_null.c,1.1,1.2 vd_odivx.c,1.1,1.2 vd_qtrpza.c,1.3,1.4 vd_raw.c,1.1,1.2 vd_rle.c,1.1,1.2 vd_vfw.c,1.1,1.2 vd_xanim.c,1.1,1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list