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
932163e1
Commit
932163e1
authored
Aug 30, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/stream_out/transcode.c: don't segfault when video encoder or filter can't be opened.
parent
51d84ecb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+5
-0
No files found.
modules/stream_out/transcode.c
View file @
932163e1
...
...
@@ -1388,6 +1388,7 @@ static int transcode_video_process( sout_stream_t *p_stream,
{
transcode_video_close
(
p_stream
,
id
);
id
->
b_transcode
=
VLC_FALSE
;
return
VLC_EGENERIC
;
}
/* Deinterlace */
...
...
@@ -1446,6 +1447,10 @@ static int transcode_video_process( sout_stream_t *p_stream,
msg_Dbg
(
p_stream
,
"no video filter found"
);
vlc_object_detach
(
id
->
pp_filter
[
id
->
i_filter
]
);
vlc_object_destroy
(
id
->
pp_filter
[
id
->
i_filter
]
);
transcode_video_close
(
p_stream
,
id
);
id
->
b_transcode
=
VLC_FALSE
;
return
VLC_EGENERIC
;
}
}
}
...
...
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