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
b6c2c6bc
Commit
b6c2c6bc
authored
Nov 20, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
davinci encoder: honor the fps request of the user
parent
cafc7687
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/codec/davinci/encoder.c
modules/codec/davinci/encoder.c
+2
-2
No files found.
modules/codec/davinci/encoder.c
View file @
b6c2c6bc
...
...
@@ -141,12 +141,12 @@ int OpenVideoEncoder( vlc_object_t *p_this )
params
.
maxFrameRate
=
p_enc
->
fmt_out
.
video
.
i_frame_rate_base
?
p_enc
->
fmt_out
.
video
.
i_frame_rate
*
1000
/
p_enc
->
fmt_out
.
video
.
i_frame_rate_base
:
50
000
;
/* Frames per 1000 seconds */
p_enc
->
i_iframes
*
1
000
;
/* Frames per 1000 seconds */
params
.
maxBitRate
=
p_enc
->
fmt_out
.
i_bitrate
+
p_enc
->
i_tolerance
;
//params.maxBitRate *= 10;
params
.
dataEndianness
=
XDM_BYTE
;
params
.
maxInterFrameInterval
=
0
;
//
p_enc->i_iframes;
params
.
maxInterFrameInterval
=
p_enc
->
i_iframes
;
params
.
inputChromaFormat
=
VlcChromaToXdm
(
p_enc
->
fmt_in
.
i_codec
);
msg_Info
(
p_enc
,
"max %dx%d at %.3f fps (max bitrate %d kBps, I-Frame interval %d)
\n
"
,
...
...
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