diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-14 20:50:17 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-14 20:50:17 +0000 |
commit | 79f872a00fd0b939903e9710f9506b6124af66c6 (patch) | |
tree | 0e6c85842edd34cc715503bcdbc4a80fc451afdc /src/xine-engine/audio_decoder.h | |
parent | df60bbdb196064a14dc0f040f338436e2c8613a5 (diff) | |
download | xine-lib-79f872a00fd0b939903e9710f9506b6124af66c6.tar.gz xine-lib-79f872a00fd0b939903e9710f9506b6124af66c6.tar.bz2 |
dispose function was missing in audio decoder class too, mad plugin compiles now
CVS patchset: 2832
CVS date: 2002/10/14 20:50:17
Diffstat (limited to 'src/xine-engine/audio_decoder.h')
-rw-r--r-- | src/xine-engine/audio_decoder.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xine-engine/audio_decoder.h b/src/xine-engine/audio_decoder.h index dd5fcc591..2fd3fcf7f 100644 --- a/src/xine-engine/audio_decoder.h +++ b/src/xine-engine/audio_decoder.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: audio_decoder.h,v 1.3 2002/10/14 15:47:25 guenter Exp $ + * $Id: audio_decoder.h,v 1.4 2002/10/14 20:50:17 guenter Exp $ * * xine audio decoder plugin interface * @@ -49,6 +49,12 @@ struct audio_decoder_class_s { * this plugin class */ char* (*get_description) (audio_decoder_class_t *this); + + /* + * free all class-related resources + */ + + void (*dispose) (video_decoder_class_t *this); }; |