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
c2130538
Commit
c2130538
authored
Jan 15, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
encoder: dirac: match source geometry
refs #10386 Still junk on bottom due to invalid plane->i_visible_lines
parent
cf77bbb0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/codec/dirac.c
modules/codec/dirac.c
+3
-2
No files found.
modules/codec/dirac.c
View file @
c2130538
...
...
@@ -500,8 +500,6 @@ static int OpenEncoder( vlc_object_t *p_this )
dirac_encoder_context_init
(
&
p_sys
->
ctx
,
guessed_video_fmt
);
/* constants set from the input video format */
p_sys
->
ctx
.
src_params
.
width
=
p_enc
->
fmt_in
.
video
.
i_visible_width
;
p_sys
->
ctx
.
src_params
.
height
=
p_enc
->
fmt_in
.
video
.
i_visible_height
;
p_sys
->
ctx
.
src_params
.
frame_rate
.
numerator
=
p_enc
->
fmt_in
.
video
.
i_frame_rate
;
p_sys
->
ctx
.
src_params
.
frame_rate
.
denominator
=
p_enc
->
fmt_in
.
video
.
i_frame_rate_base
;
unsigned
u_asr_num
,
u_asr_den
;
...
...
@@ -558,6 +556,9 @@ static int OpenEncoder( vlc_object_t *p_this )
break
;
}
p_sys
->
ctx
.
src_params
.
width
=
picture
.
format
.
i_visible_width
;
p_sys
->
ctx
.
src_params
.
height
=
picture
.
format
.
i_visible_height
;
p_sys
->
ctx
.
enc_params
.
qf
=
var_GetFloat
(
p_enc
,
ENC_CFG_PREFIX
ENC_QUALITY_FACTOR
);
/* use bitrate from sout-transcode-vb in kbps */
...
...
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