[FFmpeg-soc] [soc]: r5151 - als/alsdec.c
thilo.borgmann
subversion at mplayerhq.hu
Sun Aug 16 11:40:02 CEST 2009
Author: thilo.borgmann
Date: Sun Aug 16 11:40:02 2009
New Revision: 5151
Log:
Add newlines at end of log messages.
Modified:
als/alsdec.c
Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c Sun Aug 16 02:55:16 2009 (r5150)
+++ als/alsdec.c Sun Aug 16 11:40:02 2009 (r5151)
@@ -522,7 +522,7 @@ static int read_block_data(ALSDecContext
// block_length must be evenly divisible by sub_blocks
if (block_length % sub_blocks) {
av_log(avctx, AV_LOG_WARNING,
- "Block length is not evenly divisible by the number of sub blocks.");
+ "Block length is not evenly divisible by the number of sub blocks.\n");
return -1;
}
@@ -832,7 +832,7 @@ static int read_frame_data(ALSDecContext
// reconstruct joint-stereo blocks
if (js_blocks[0] & 1) {
if (js_blocks[1] & 1)
- av_log(ctx->avctx, AV_LOG_WARNING, "Invalid channel pair!");
+ av_log(ctx->avctx, AV_LOG_WARNING, "Invalid channel pair!\n");
for (s = 0; s < div_blocks[b]; s++)
raw_samples_L[s] = raw_samples_R[s] - raw_samples_L[s];
More information about the FFmpeg-soc
mailing list