Diego Biurrun <[email protected]> writes: > --- > libavcodec/mpegaudioenc.c | 6 ++-- > libavfilter/vsrc_movie.c | 2 +- > libavformat/ape.c | 54 > +++++++++++++++++++++++++-------------------- > libavformat/mxfdec.c | 8 +++--- > libavformat/r3d.c | 13 +++++----- > 5 files changed, 45 insertions(+), 38 deletions(-) > > diff --git a/libavcodec/mpegaudioenc.c b/libavcodec/mpegaudioenc.c > index 50876ec..ef265c9 100644 > --- a/libavcodec/mpegaudioenc.c > +++ b/libavcodec/mpegaudioenc.c > @@ -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) > 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]);
This change looks sane, but it doesn't match the commit message. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
