diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-18 21:21:25 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-18 21:21:25 +0200 |
commit | d0b786cbb00a77ef3409465026528b17d0b15f75 (patch) | |
tree | 202af8b5af0894d9a7f29656a65da54c64bcce6d /src/libxineadec/xine_dts_decoder.c | |
parent | 6fd568ffeea8293ef44d26620bb83079c7f58c53 (diff) | |
download | xine-lib-d0b786cbb00a77ef3409465026528b17d0b15f75.tar.gz xine-lib-d0b786cbb00a77ef3409465026528b17d0b15f75.tar.bz2 |
Cleanup, add doxygen comments, add doxygen todos.
Diffstat (limited to 'src/libxineadec/xine_dts_decoder.c')
-rw-r--r-- | src/libxineadec/xine_dts_decoder.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libxineadec/xine_dts_decoder.c b/src/libxineadec/xine_dts_decoder.c index c218b0e44..fdf14d58e 100644 --- a/src/libxineadec/xine_dts_decoder.c +++ b/src/libxineadec/xine_dts_decoder.c @@ -106,6 +106,7 @@ static void dts_discontinuity (audio_decoder_t *const this_gen) { * @todo This same work is being done in many decoders to adapt the output of * the decoder to what the audio output can actually use, this should be * done by the audio_output loop, not by the decoders. + * @note This is subtly different from the function with the same name in xine_musepack_decoder.c */ static inline void float_to_int (const float *const _f, int16_t *const s16, const int num_channels) { const int endidx = 256 * num_channels; |