diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-07 20:23:54 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2001-06-07 20:23:54 +0000 |
commit | ff607a22a5d0b6bb793ae86f556ada022bf852cc (patch) | |
tree | 37e111afa9075a726405df9290f90fe650cb7d33 /src/xine-engine | |
parent | 9d5ad23abdc5e9a67975bfab58fea5b8b3bd0120 (diff) | |
download | xine-lib-ff607a22a5d0b6bb793ae86f556ada022bf852cc.tar.gz xine-lib-ff607a22a5d0b6bb793ae86f556ada022bf852cc.tar.bz2 |
w32codec bugfixes
CVS patchset: 132
CVS date: 2001/06/07 20:23:54
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/buffer.h | 4 | ||||
-rw-r--r-- | src/xine-engine/load_plugins.c | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index a82995eba..55b705c47 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.2 2001/04/24 15:47:32 guenter Exp $ + * $Id: buffer.h,v 1.3 2001/06/07 20:23:54 guenter Exp $ * * * contents: @@ -96,7 +96,7 @@ struct buf_element_s { uint32_t type; uint32_t PTS, DTS; off_t input_pos; /* remember where this buf came from in the input source */ - int frame_end; /* avi */ + uint32_t decoder_info[4]; /* additional decoder flags and other dec-spec. stuff */ void (*free_buffer) (buf_element_t *buf); diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 0b073881a..67ab4a2bc 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.19 2001/05/27 23:48:12 guenter Exp $ + * $Id: load_plugins.c,v 1.20 2001/06/07 20:23:54 guenter Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -450,9 +450,8 @@ void load_decoder_plugins (xine_t *this, this->audio_decoder_plugins[streamtype] = adp; } - printf("audio decoder plugin found : %s(ID: %s, iface: %d)\n", - pEntry->d_name, adp->get_identifier(), - adp->interface_version); + printf("audio decoder plugin found : %s\n", + adp->get_identifier()); } |