Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
ffmpeg2theora
Commits
e8f1073d
Commit
e8f1073d
authored
May 30, 2009
by
oggk
Browse files
move info subtitles message inside #ifdef DEBUG, to reduce the spam
parent
c740b075
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ffmpeg2theora.c
View file @
e8f1073d
...
...
@@ -805,17 +805,21 @@ void ff2theora_output(ff2theora this) {
for
(
i
=
0
;
i
<
this
->
n_kate_streams
;
++
i
)
{
ff2theora_kate_stream
*
ks
=
this
->
kate_streams
+
i
;
if
(
ks
->
stream_index
>=
0
)
{
#ifdef DEBUG
printf
(
"Muxing Kate stream %d from input stream %d
\n
"
,
i
,
ks
->
stream_index
);
#endif
if
(
!
this
->
disable_subtitles
)
{
info
.
with_kate
=
1
;
}
}
else
if
(
load_subtitles
(
ks
,
this
->
ignore_non_utf8
)
>
0
)
{
#ifdef DEBUG
printf
(
"Muxing Kate stream %d from %s as %s %s
\n
"
,
i
,
ks
->
filename
,
ks
->
subtitles_language
[
0
]
?
ks
->
subtitles_language
:
"<unknown language>"
,
ks
->
subtitles_category
[
0
]
?
ks
->
subtitles_category
:
"SUB"
);
#endif
}
else
{
if
(
i
!=
this
->
n_kate_streams
)
{
...
...
Write
Preview
Supports
Markdown
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