Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
86d16200
Commit
86d16200
authored
Sep 22, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/stream_out/transcode.c: a bit more useful debug message.
parent
4b6fb04a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+6
-2
No files found.
modules/stream_out/transcode.c
View file @
86d16200
...
...
@@ -950,7 +950,9 @@ static int transcode_audio_new( sout_stream_t *p_stream,
if
(
id
->
pp_filter
[
0
]
->
p_module
)
id
->
i_filter
++
;
else
{
msg_Dbg
(
p_stream
,
"no audio filter found"
);
msg_Dbg
(
p_stream
,
"no audio filter found (%4.4s->%4.4s)"
,
(
char
*
)
&
id
->
pp_filter
[
0
]
->
fmt_in
,
(
char
*
)
&
id
->
pp_filter
[
0
]
->
fmt_out
);
vlc_object_detach
(
id
->
pp_filter
[
0
]
);
vlc_object_destroy
(
id
->
pp_filter
[
0
]
);
module_Unneed
(
id
->
p_decoder
,
id
->
p_decoder
->
p_module
);
...
...
@@ -981,7 +983,9 @@ static int transcode_audio_new( sout_stream_t *p_stream,
id
->
pp_filter
[
1
]
->
fmt_out
.
i_codec
!=
id
->
p_encoder
->
fmt_in
.
i_codec
)
{
msg_Dbg
(
p_stream
,
"no audio filter found"
);
msg_Dbg
(
p_stream
,
"no audio filter found (%4.4s->%4.4s)"
,
(
char
*
)
&
id
->
pp_filter
[
1
]
->
fmt_in
,
(
char
*
)
&
id
->
pp_filter
[
1
]
->
fmt_out
);
module_Unneed
(
id
->
pp_filter
[
0
],
id
->
pp_filter
[
0
]
->
p_module
);
vlc_object_detach
(
id
->
pp_filter
[
0
]
);
vlc_object_destroy
(
id
->
pp_filter
[
0
]
);
...
...
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