Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
7e985c9e
Commit
7e985c9e
authored
May 31, 2011
by
Diego Biurrun
Browse files
mpegaudioenc: Fix broken av_dlog statement.
parent
b0a4e5f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
libavcodec/mpegaudioenc.c
libavcodec/mpegaudioenc.c
+3
-3
No files found.
libavcodec/mpegaudioenc.c
View file @
7e985c9e
...
...
@@ -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
]);
/* find alloc table entry (XXX: not optimal, should use
pointer table) */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment