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
eed05ce7
Commit
eed05ce7
authored
Feb 01, 2014
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transcode: add comments on why we check frame dropping on 2 places
parent
dee8cee6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
modules/stream_out/transcode/video.c
modules/stream_out/transcode/video.c
+7
-1
No files found.
modules/stream_out/transcode/video.c
View file @
eed05ce7
...
@@ -670,7 +670,10 @@ static void OutputFrame( sout_stream_sys_t *p_sys, picture_t *p_pic, sout_stream
...
@@ -670,7 +670,10 @@ static void OutputFrame( sout_stream_sys_t *p_sys, picture_t *p_pic, sout_stream
/* If input pts + input_frame_interval is lower than next_output_pts - output_frame_interval
/* If input pts + input_frame_interval is lower than next_output_pts - output_frame_interval
* Then the future input frame should fit better and we can drop this one
* Then the future input frame should fit better and we can drop this one
*
*
* Duplication need is checked in OutputFrame */
* We check it here also because we can have case that video filters outputs multiple
* pictures but we don't need to use them all, for example yadif2x and outputting to some
* different fps value
*/
if
(
(
p_pic
->
date
+
(
mtime_t
)
id
->
i_input_frame_interval
)
<
if
(
(
p_pic
->
date
+
(
mtime_t
)
id
->
i_input_frame_interval
)
<
(
date_Get
(
&
id
->
next_output_pts
)
)
)
(
date_Get
(
&
id
->
next_output_pts
)
)
)
{
{
...
@@ -934,6 +937,9 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_t *id,
...
@@ -934,6 +937,9 @@ int transcode_video_process( sout_stream_t *p_stream, sout_stream_id_t *id,
/* If input pts + input_frame_interval is lower than next_output_pts - output_frame_interval
/* If input pts + input_frame_interval is lower than next_output_pts - output_frame_interval
* Then the future input frame should fit better and we can drop this one
* Then the future input frame should fit better and we can drop this one
*
*
* We check this here as we don't need to run video filter at all for pictures
* we are going to drop anyway
*
* Duplication need is checked in OutputFrame */
* Duplication need is checked in OutputFrame */
if
(
(
p_pic
->
date
+
(
mtime_t
)
id
->
i_input_frame_interval
)
<
if
(
(
p_pic
->
date
+
(
mtime_t
)
id
->
i_input_frame_interval
)
<
(
date_Get
(
&
id
->
next_output_pts
)
)
)
(
date_Get
(
&
id
->
next_output_pts
)
)
)
...
...
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