diff options
author | Eduard Hasenleithner <ehasenle@users.sourceforge.net> | 2001-07-19 17:53:15 +0000 |
---|---|---|
committer | Eduard Hasenleithner <ehasenle@users.sourceforge.net> | 2001-07-19 17:53:15 +0000 |
commit | 93cce7777035ca5709375ae0bbb1492abb4627a5 (patch) | |
tree | ee95b8891ca691d2938b40b09619ebfba9d8cacb /src/xine-engine/xine_internal.h | |
parent | 55253e168a106fab7767784cd151215e20290f5d (diff) | |
download | xine-lib-93cce7777035ca5709375ae0bbb1492abb4627a5.tar.gz xine-lib-93cce7777035ca5709375ae0bbb1492abb4627a5.tar.bz2 |
First implementation of priorities for the decoder plugins:
audio, video, spu. Priorities require interface version 2
in order not to brake the existing decoder plugins.
CVS patchset: 310
CVS date: 2001/07/19 17:53:15
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r-- | src/xine-engine/xine_internal.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h index cf07104fc..6dc61410f 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.32 2001/07/18 21:38:17 f1rmb Exp $ + * $Id: xine_internal.h,v 1.33 2001/07/19 17:53:15 ehasenle Exp $ * */ @@ -71,6 +71,8 @@ struct video_decoder_s { char* (*get_identifier) (void); + int priority; + metronom_t *metronom; }; @@ -99,6 +101,8 @@ struct audio_decoder_s { char* (*get_identifier) (void); + int priority; + }; /* |