mirror of
https://github.com/mpv-player/mpv
synced 2025-01-09 01:36:25 +01:00
reduced verbosity
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16483 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
ba6153a7d2
commit
60ee2df992
@ -96,7 +96,7 @@ static int encode_toolame(audio_encoder_t *encoder, uint8_t *dest, void *src, in
|
||||
|
||||
toolame_encode_buffer(ctx->toolame_ctx, ctx->left_pcm, ctx->right_pcm, nsamples, dest, max_size, &ret_size);
|
||||
r2 = mp_decode_mp3_header(dest);
|
||||
mp_msg(MSGT_MENCODER, MSGL_V, "\nSIZE: %d, max: %d, r2: %d\n", ret_size, max_size, r2);
|
||||
mp_msg(MSGT_MENCODER, MSGL_DBG2, "\nSIZE: %d, max: %d, r2: %d\n", ret_size, max_size, r2);
|
||||
if(r2 > 0)
|
||||
ret_size = r2;
|
||||
return ret_size;
|
||||
|
@ -88,7 +88,7 @@ static int encode_twolame(audio_encoder_t *encoder, uint8_t *dest, void *src, in
|
||||
len /= (2*encoder->params.channels);
|
||||
ret_size = twolame_encode_buffer_interleaved(ctx->twolame_ctx, src, len, dest, max_size);
|
||||
r2 = mp_decode_mp3_header(dest);
|
||||
mp_msg(MSGT_MENCODER, MSGL_V, "\nSIZE: %d, max: %d, r2: %d\n", ret_size, max_size, r2);
|
||||
mp_msg(MSGT_MENCODER, MSGL_DBG2, "\nSIZE: %d, max: %d, r2: %d\n", ret_size, max_size, r2);
|
||||
if(r2 > 0)
|
||||
ret_size = r2;
|
||||
return ret_size;
|
||||
|
Loading…
Reference in New Issue
Block a user