Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
a780f410
Commit
a780f410
authored
Oct 02, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
smem: try not to re-create the variables too many times.
parent
ebf91bfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/stream_out/smem.c
modules/stream_out/smem.c
+6
-2
No files found.
modules/stream_out/smem.c
View file @
a780f410
...
...
@@ -179,6 +179,10 @@ static int Open( vlc_object_t *p_this )
p_sys
->
pf_audio_postrender_callback
=
(
void
(
*
)
(
void
*
,
uint8_t
*
,
unsigned
int
,
unsigned
int
,
unsigned
int
,
unsigned
int
,
unsigned
int
,
int
))(
intptr_t
)
atoll
(
psz_tmp
);
free
(
psz_tmp
);
/* Create the remaining variables for a later use */
var_Create
(
p_stream
,
SOUT_PREFIX_VIDEO
"data"
,
VLC_VAR_STRING
|
VLC_VAR_DOINHERIT
);
var_Create
(
p_stream
,
SOUT_PREFIX_AUDIO
"data"
,
VLC_VAR_STRING
|
VLC_VAR_DOINHERIT
);
/* Setting stream out module callbacks */
p_stream
->
pf_add
=
Add
;
p_stream
->
pf_del
=
Del
;
...
...
@@ -250,7 +254,7 @@ static sout_stream_id_t *AddVideo( sout_stream_t *p_stream, es_format_t *p_fmt )
if
(
!
id
)
return
NULL
;
psz_tmp
=
var_
Create
GetString
(
p_stream
,
SOUT_PREFIX_VIDEO
"data"
);
psz_tmp
=
var_GetString
(
p_stream
,
SOUT_PREFIX_VIDEO
"data"
);
id
->
p_data
=
(
void
*
)(
intptr_t
)
atoll
(
psz_tmp
);
free
(
psz_tmp
);
...
...
@@ -301,7 +305,7 @@ static sout_stream_id_t *AddAudio( sout_stream_t *p_stream, es_format_t *p_fmt )
if
(
!
id
)
return
NULL
;
psz_tmp
=
var_
Create
GetString
(
p_stream
,
SOUT_PREFIX_AUDIO
"data"
);
psz_tmp
=
var_GetString
(
p_stream
,
SOUT_PREFIX_AUDIO
"data"
);
id
->
p_data
=
(
void
*
)(
intptr_t
)
atoll
(
psz_tmp
);
free
(
psz_tmp
);
...
...
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