diff options
Diffstat (limited to 'src/libxineadec/xine_lpcm_decoder.c')
-rw-r--r-- | src/libxineadec/xine_lpcm_decoder.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/libxineadec/xine_lpcm_decoder.c b/src/libxineadec/xine_lpcm_decoder.c index 8d8f23a05..66cdcf637 100644 --- a/src/libxineadec/xine_lpcm_decoder.c +++ b/src/libxineadec/xine_lpcm_decoder.c @@ -16,10 +16,15 @@ * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA + */ + +/** + * @file + * @author James Courtier-Dutton <james@superbug.demon.co.uk> * - * 31-8-2001 Added LPCM rate sensing. - * (c) 2001 James Courtier-Dutton James@superbug.demon.co.uk + * @date 2001-08-31 Added LPCM rate sensing */ + #ifndef __sun #define _XOPEN_SOURCE 500 #endif @@ -58,7 +63,7 @@ typedef struct lpcm_decoder_s { uint32_t ao_cap_mode; int output_open; - int cpu_be; /* TRUE, if we're a Big endian CPU */ + int cpu_be; /**< TRUE, if we're a Big endian CPU */ } lpcm_decoder_t; static void lpcm_reset (audio_decoder_t *this_gen) { |