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
0e5207a8
Commit
0e5207a8
authored
Aug 27, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compilation fix when using --disable-sout.
parent
28c6dc6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/input/es_out.c
src/input/es_out.c
+4
-0
No files found.
src/input/es_out.c
View file @
0e5207a8
...
...
@@ -412,7 +412,9 @@ int input_EsOutSetRecord( es_out_t *out, bool b_record )
if
(
!
psz_sout
)
return
VLC_EGENERIC
;
#ifdef ENABLE_SOUT
p_sys
->
p_sout_record
=
sout_NewInstance
(
p_input
,
psz_sout
);
#endif
free
(
psz_sout
);
if
(
!
p_sys
->
p_sout_record
)
...
...
@@ -440,7 +442,9 @@ int input_EsOutSetRecord( es_out_t *out, bool b_record )
input_DecoderDelete
(
p_es
->
p_dec_record
);
p_es
->
p_dec_record
=
NULL
;
}
#ifdef ENABLE_SOUT
sout_DeleteInstance
(
p_sys
->
p_sout_record
);
#endif
p_sys
->
p_sout_record
=
NULL
;
}
...
...
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