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
1cc50a23
Commit
1cc50a23
authored
Jan 24, 2000
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fichiers oubli�s qui faisaient que �a compile pas
parent
0759c952
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
4 deletions
+24
-4
include/config.h
include/config.h
+1
-1
include/vpar_synchro.h
include/vpar_synchro.h
+23
-3
No files found.
include/config.h
View file @
1cc50a23
...
...
@@ -270,7 +270,7 @@
* at least VOUT_IDLE_SLEEP plus the time required to render a few
* images, to avoid trashing of decoded images */
/* ?? this constant will probably evolve to a calculated value */
#define VOUT_DISPLAY_DELAY
1
00000
#define VOUT_DISPLAY_DELAY
5
00000
/* Delay (in microseconds) between increments in idle levels */
#define VOUT_IDLE_DELAY 5000000000000
...
...
include/vpar_synchro.h
View file @
1cc50a23
...
...
@@ -25,15 +25,35 @@ typedef struct video_synchro_tab_s
}
video_synchro_tab_t
;
typedef
struct
video_synchro_fifo_s
{
/* type of image to be decoded, and decoding date */
int
i_image_type
;
mtime_t
decode_date
;
}
video_synchro_fifo_t
;
typedef
struct
video_synchro_s
{
int
modulo
;
/* fifo containing decoding dates */
video_synchro_fifo_t
fifo
[
16
];
unsigned
int
i_fifo_start
;
unsigned
int
i_fifo_stop
;
/* 0: I
* 1: P
* 2: B
*/
mtime_t
decode_time
;
/* il manquait un compteur */
unsigned
int
modulo
;
/* P images since the last I */
int
current_p_count
;
unsigned
int
current_p_count
;
double
p_count_predict
;
/* B images since the last I */
int
current_b_count
;
unsigned
int
current_b_count
;
double
b_count_predict
;
/* 1 for linear count, 2 for binary count, 3 for ternary count */
...
...
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