diff options
author | Jinghua Luo <sunmoon1997@gmail.com> | 2008-04-07 17:27:49 +0100 |
---|---|---|
committer | Jinghua Luo <sunmoon1997@gmail.com> | 2008-04-07 17:27:49 +0100 |
commit | aae81ebc2ba5f815d8cc153b1edabb70fda440ca (patch) | |
tree | a9258e6d54dd8f628ba31b3185a739798a0607f7 /src/combined/ffmpeg/ff_audio_decoder.c | |
parent | b1c711f131520ce268b6403bb7e61595300c5b81 (diff) | |
download | xine-lib-aae81ebc2ba5f815d8cc153b1edabb70fda440ca.tar.gz xine-lib-aae81ebc2ba5f815d8cc153b1edabb70fda440ca.tar.bz2 |
ffmpeg/libreal cleanup
Diffstat (limited to 'src/combined/ffmpeg/ff_audio_decoder.c')
-rw-r--r-- | src/combined/ffmpeg/ff_audio_decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/combined/ffmpeg/ff_audio_decoder.c b/src/combined/ffmpeg/ff_audio_decoder.c index 4aebd6d60..ef97f93bf 100644 --- a/src/combined/ffmpeg/ff_audio_decoder.c +++ b/src/combined/ffmpeg/ff_audio_decoder.c @@ -324,7 +324,7 @@ static void ff_audio_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) /* fill up this buffer */ xine_fast_memcpy(audio_buffer->mem, &this->decode_buffer[out], - bytes_to_send); + bytes_to_send); /* byte count / 2 (bytes / sample) / channels */ audio_buffer->num_frames = bytes_to_send / 2 / this->audio_channels; |