summaryrefslogtreecommitdiff
path: root/src/xine-engine/xine_internal.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-04-29 14:32:11 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-04-29 14:32:11 +0000
commit05aa5f5db549e94f55321823a2d3221fb414c9c2 (patch)
treee0e506e157e99a26438df85ac192a34b355b1643 /src/xine-engine/xine_internal.h
parent0b7fa608cc50ab566ff9c87da5bc445ac3a6f278 (diff)
downloadxine-lib-05aa5f5db549e94f55321823a2d3221fb414c9c2.tar.gz
xine-lib-05aa5f5db549e94f55321823a2d3221fb414c9c2.tar.bz2
turned ac3dec into a dynamic plugin (well, sort-of ;)), minor fixes
CVS patchset: 44 CVS date: 2001/04/29 14:32:11
Diffstat (limited to 'src/xine-engine/xine_internal.h')
-rw-r--r--src/xine-engine/xine_internal.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/xine-engine/xine_internal.h b/src/xine-engine/xine_internal.h
index ac706d397..7bbf797c1 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.14 2001/04/29 01:09:23 guenter Exp $
+ * $Id: xine_internal.h,v 1.15 2001/04/29 14:32:11 guenter Exp $
*
*/
@@ -56,8 +56,7 @@ struct video_decoder_s {
void (*init) (video_decoder_t *this, vo_instance_t *video_out);
- void (*decode_data) (metronom_t *metronom,
- video_decoder_t *this, buf_element_t *buf);
+ void (*decode_data) (video_decoder_t *this, buf_element_t *buf);
void (*release_img_buffers) (video_decoder_t *this);
@@ -69,6 +68,10 @@ struct video_decoder_s {
/*
* generic xine audio decoder plugin interface
+ *
+ * for a dynamic plugin make sure you provide this function call:
+ * audio_decoder_t *init_audio_decoder_plugin (int iface_version,
+ * config_values_t *cfg);
*/
typedef struct audio_decoder_s audio_decoder_t;
@@ -81,8 +84,7 @@ struct audio_decoder_s {
void (*init) (audio_decoder_t *this, ao_functions_t *audio_out);
- void (*decode_data) (metronom_t *metronom,
- audio_decoder_t *this, buf_element_t *buf);
+ void (*decode_data) (audio_decoder_t *this, buf_element_t *buf);
void (*close) (audio_decoder_t *this);