diff options
Diffstat (limited to 'include/xine/spu_decoder.h')
-rw-r--r-- | include/xine/spu_decoder.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/xine/spu_decoder.h b/include/xine/spu_decoder.h index 1833a22b4..9ab926bdf 100644 --- a/include/xine/spu_decoder.h +++ b/include/xine/spu_decoder.h @@ -4,7 +4,7 @@ * Copyright (C) James Courtier-Dutton James@superbug.demon.co.uk - July 2001 * * This file is part of xine, a unix video player. - * + * * xine is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -14,10 +14,10 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with GNU Make; see the file COPYING. If not, write to - * the Free Software Foundation, + * the Free Software Foundation, * */ @@ -46,7 +46,7 @@ struct spu_decoder_class_s { * open a new instance of this plugin class */ spu_decoder_t* (*open_plugin) (spu_decoder_class_t *this, xine_stream_t *stream); - + /** * @brief short human readable identifier for this plugin class */ @@ -63,7 +63,7 @@ struct spu_decoder_class_s { * @brief Optional non-standard catalog to use with dgettext() for description. */ const char *text_domain; - + /* * free all class-related resources */ @@ -71,12 +71,12 @@ struct spu_decoder_class_s { }; #define default_spu_decoder_class_dispose (void (*) (spu_decoder_class_t *this))free - + struct spu_decoder_s { /* * decode data from buf and feed the overlay to overlay manager - */ + */ void (*decode_data) (spu_decoder_t *this, buf_element_t *buf); /* @@ -84,7 +84,7 @@ struct spu_decoder_s { * SPU data not related to recently decoded data) */ void (*reset) (spu_decoder_t *this); - + /* * inform decoder that a time reference discontinuity has happened. * that is, it must forget any currently held pts value |