summaryrefslogtreecommitdiff
path: root/src/xine-engine
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2003-01-01 20:39:19 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2003-01-01 20:39:19 +0000
commit73baf5e122d22c67def6754ea37b8da50f571b1b (patch)
tree1238adb5dc0da38f4eff48ffb1507ff6ab07fbd5 /src/xine-engine
parentd93626d8fc6996d79627e18626ff5dece7dab9bf (diff)
downloadxine-lib-73baf5e122d22c67def6754ea37b8da50f571b1b.tar.gz
xine-lib-73baf5e122d22c67def6754ea37b8da50f571b1b.tar.bz2
real video v40 support by chris rankin, added missing copyright notices/credits for mplayer
CVS patchset: 3746 CVS date: 2003/01/01 20:39:19
Diffstat (limited to 'src/xine-engine')
-rw-r--r--src/xine-engine/buffer.h3
-rw-r--r--src/xine-engine/buffer_types.c9
-rw-r--r--src/xine-engine/load_plugins.c4
3 files changed, 13 insertions, 3 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h
index ba9df8658..884947ae7 100644
--- a/src/xine-engine/buffer.h
+++ b/src/xine-engine/buffer.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: buffer.h,v 1.89 2002/12/28 18:18:18 tmmm Exp $
+ * $Id: buffer.h,v 1.90 2003/01/01 20:39:21 guenter Exp $
*
*
* contents:
@@ -138,6 +138,7 @@ extern "C" {
#define BUF_VIDEO_UCOD 0x02360000
#define BUF_VIDEO_WMV9 0x02370000
#define BUF_VIDEO_INTERPLAY 0x02380000
+#define BUF_VIDEO_RV40 0x02390000
/* audio buffer types: (please keep in sync with buffer_types.c) */
diff --git a/src/xine-engine/buffer_types.c b/src/xine-engine/buffer_types.c
index 08a9ebf4a..9c000a63c 100644
--- a/src/xine-engine/buffer_types.c
+++ b/src/xine-engine/buffer_types.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: buffer_types.c,v 1.49 2002/12/21 12:56:52 miguelfreitas Exp $
+ * $Id: buffer_types.c,v 1.50 2003/01/01 20:39:21 guenter Exp $
*
*
* contents:
@@ -501,6 +501,13 @@ static video_db_t video_db[] = {
BUF_VIDEO_UCOD,
"ClearVideo"
},
+{
+ {
+ 0
+ },
+ BUF_VIDEO_RV40,
+ "Real Video 4.0"
+},
{ { 0 }, 0, "last entry" }
};
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index 3a4550f67..2d08416da 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: load_plugins.c,v 1.127 2002/12/29 14:04:43 mroi Exp $
+ * $Id: load_plugins.c,v 1.128 2003/01/01 20:39:21 guenter Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -1011,6 +1011,8 @@ static demux_plugin_t *probe_demux (xine_stream_t *stream, int method1, int meth
#endif
if ((plugin = ((demux_class_t *)node->plugin_class)->open_plugin(node->plugin_class, stream, input))) {
+ if (stream->xine->verbosity)
+ printf ("load_plugins: using demuxer '%s'\n", node->info->id);
pthread_mutex_unlock (&catalog->lock);
return plugin;
}