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_internal.h | |
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_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index 04021648b..9421ed650 100644 --- a/src/xine-engine/xine_internal.h +++ b/src/xine-engine/xine_internal.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: xine_internal.h,v 1.65 2001/12/13 22:47:14 miguelfreitas Exp $ + * $Id: xine_internal.h,v 1.66 2001/12/24 00:45:03 guenter Exp $ * */ @@ -141,8 +141,6 @@ struct audio_decoder_s { #define XINE_LOG_CODEC 1 #define XINE_LOG_NUM 2 /* # of log buffers defined */ -typedef struct xine_s xine_t; - typedef void (*xine_event_listener_t) (void *user_data, xine_event_t *); struct xine_s { @@ -192,6 +190,7 @@ struct xine_s { video_decoder_t *video_decoder_plugins[DECODER_PLUGIN_MAX]; video_decoder_t *cur_video_decoder_plugin; int video_finished; + int video_in_discontinuity; osd_renderer_t *osd_renderer; osd_object_t *osd; |