diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-12-24 00:45:03 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-12-24 00:45:03 +0000 |
commit | 52ed4de50d48141bda8f2300749ffa703b55be4b (patch) | |
tree | 260c92e7f7f28b59f65707025d23c2e1b558a5e1 /src/xine-engine/xine.c | |
parent | 2ff16582eef3e37548060b6863f4caa419bd4998 (diff) | |
download | xine-lib-52ed4de50d48141bda8f2300749ffa703b55be4b.tar.gz xine-lib-52ed4de50d48141bda8f2300749ffa703b55be4b.tar.bz2 |
automatic still image detection - based on miguel's work but with modifications to handle still images with audio, works pretty well on episode I, x-men and sleepy hollow and all other dvds I've tested
CVS patchset: 1294
CVS date: 2001/12/24 00:45:03
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 771abc538..0c7725a0d 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.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: xine.c,v 1.92 2001/12/14 23:54:56 f1rmb Exp $ + * $Id: xine.c,v 1.93 2001/12/24 00:45:03 guenter Exp $ * * top-level xine functions * @@ -486,7 +486,7 @@ xine_t *xine_init (vo_driver_t *vo, load_decoder_plugins (this, config, DECODER_PLUGIN_IFACE_VERSION); - this->video_out = vo_new_instance (vo, this->metronom); + this->video_out = vo_new_instance (vo, this); video_decoder_init (this); this->osd_renderer = osd_renderer_init( this->video_out->overlay_source, config ); |