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
da352496
Commit
da352496
authored
Jul 28, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transcode: remove useless callback
parent
560374a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
10 deletions
+3
-10
modules/stream_out/transcode/video.c
modules/stream_out/transcode/video.c
+3
-10
No files found.
modules/stream_out/transcode/video.c
View file @
da352496
...
...
@@ -92,11 +92,6 @@ static int transcode_video_filter_allocation_init( filter_t *p_filter,
return
VLC_SUCCESS
;
}
static
void
transcode_video_filter_allocation_clear
(
filter_t
*
p_filter
)
{
VLC_UNUSED
(
p_filter
);
}
static
void
*
EncoderThread
(
void
*
obj
)
{
sout_stream_sys_t
*
p_sys
=
(
sout_stream_sys_t
*
)
obj
;
...
...
@@ -304,8 +299,7 @@ static void transcode_video_filter_init( sout_stream_t *p_stream,
id
->
p_f_chain
=
filter_chain_New
(
p_stream
,
"video filter2"
,
false
,
transcode_video_filter_allocation_init
,
transcode_video_filter_allocation_clear
,
p_stream
->
p_sys
);
NULL
,
p_stream
->
p_sys
);
filter_chain_Reset
(
id
->
p_f_chain
,
p_fmt_out
,
p_fmt_out
);
/* Deinterlace */
...
...
@@ -329,10 +323,9 @@ static void transcode_video_filter_init( sout_stream_t *p_stream,
if
(
p_stream
->
p_sys
->
psz_vf2
)
{
id
->
p_uf_chain
=
filter_chain_New
(
p_stream
,
"video filter2"
,
true
,
true
,
transcode_video_filter_allocation_init
,
transcode_video_filter_allocation_clear
,
p_stream
->
p_sys
);
NULL
,
p_stream
->
p_sys
);
filter_chain_Reset
(
id
->
p_uf_chain
,
p_fmt_out
,
&
id
->
p_encoder
->
fmt_in
);
if
(
p_fmt_out
->
video
.
i_chroma
!=
id
->
p_encoder
->
fmt_in
.
video
.
i_chroma
)
...
...
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