1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

mpegaudioenc: Fix broken av_dlog statement.

This commit is contained in:
Diego Biurrun 2011-05-31 21:24:13 +02:00
parent b0a4e5f9e7
commit 7e985c9e35

View File

@ -544,11 +544,11 @@ static void compute_bit_allocation(MpegAudioContext *s,
} }
} }
} }
av_dlog(NULL, "current=%d max=%d max_sb=%d alloc=%d\n",
current_frame_size, max_frame_size, max_sb,
bit_alloc[max_sb]);
if (max_sb < 0) if (max_sb < 0)
break; break;
av_dlog(NULL, "current=%d max=%d max_sb=%d max_ch=%d alloc=%d\n",
current_frame_size, max_frame_size, max_sb, max_ch,
bit_alloc[max_ch][max_sb]);
/* find alloc table entry (XXX: not optimal, should use /* find alloc table entry (XXX: not optimal, should use
pointer table) */ pointer table) */