Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
61466e06
Commit
61466e06
authored
Nov 23, 2013
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transcode: check user videofilters when checking chroma/scale need
parent
23ab7c47
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
modules/stream_out/transcode/video.c
modules/stream_out/transcode/video.c
+3
-5
No files found.
modules/stream_out/transcode/video.c
View file @
61466e06
...
...
@@ -347,16 +347,14 @@ static void transcode_video_filter_init( sout_stream_t *p_stream,
}
/* Take care of the scaling and chroma conversions.
*
* XXX: Shouldn't this really be after p_uf_chain, not p_f_chain,
* in case p_uf_chain changes the format?
*/
/* Take care of the scaling and chroma conversions. */
static
void
conversion_video_filter_append
(
sout_stream_id_t
*
id
)
{
const
es_format_t
*
p_fmt_out
=
&
id
->
p_decoder
->
fmt_out
;
if
(
id
->
p_f_chain
)
p_fmt_out
=
filter_chain_GetFmtOut
(
id
->
p_f_chain
);
if
(
id
->
p_uf_chain
)
p_fmt_out
=
filter_chain_GetFmtOut
(
id
->
p_uf_chain
);
if
(
(
p_fmt_out
->
video
.
i_chroma
!=
id
->
p_encoder
->
fmt_in
.
video
.
i_chroma
)
||
(
p_fmt_out
->
video
.
i_width
!=
id
->
p_encoder
->
fmt_in
.
video
.
i_width
)
||
...
...
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