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
b90fde4e
Commit
b90fde4e
authored
May 20, 2010
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transcode: add clue to check earlier log-messages when encoder wasn't found
parent
b85d3a07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/stream_out/transcode/audio.c
modules/stream_out/transcode/audio.c
+1
-1
modules/stream_out/transcode/video.c
modules/stream_out/transcode/video.c
+1
-1
No files found.
modules/stream_out/transcode/audio.c
View file @
b90fde4e
...
...
@@ -266,7 +266,7 @@ int transcode_audio_new( sout_stream_t *p_stream,
module_need
(
id
->
p_encoder
,
"encoder"
,
p_sys
->
psz_aenc
,
true
);
if
(
!
id
->
p_encoder
->
p_module
)
{
msg_Err
(
p_stream
,
"cannot find audio encoder (module:%s fourcc:%4.4s)"
,
msg_Err
(
p_stream
,
"cannot find audio encoder (module:%s fourcc:%4.4s)
. Take a look few lines earlier to see possible reason.
"
,
p_sys
->
psz_aenc
?
p_sys
->
psz_aenc
:
"any"
,
(
char
*
)
&
p_sys
->
i_acodec
);
module_unneed
(
id
->
p_decoder
,
id
->
p_decoder
->
p_module
);
...
...
modules/stream_out/transcode/video.c
View file @
b90fde4e
...
...
@@ -242,7 +242,7 @@ int transcode_video_new( sout_stream_t *p_stream, sout_stream_id_t *id )
module_need
(
id
->
p_encoder
,
"encoder"
,
p_sys
->
psz_venc
,
true
);
if
(
!
id
->
p_encoder
->
p_module
)
{
msg_Err
(
p_stream
,
"cannot find video encoder (module:%s fourcc:%4.4s)"
,
msg_Err
(
p_stream
,
"cannot find video encoder (module:%s fourcc:%4.4s)
. Take a look few lines earlier to see possible reason.
"
,
p_sys
->
psz_venc
?
p_sys
->
psz_venc
:
"any"
,
(
char
*
)
&
p_sys
->
i_vcodec
);
module_unneed
(
id
->
p_decoder
,
id
->
p_decoder
->
p_module
);
...
...
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