Commit 1cc50a23 authored by Sam Hocevar's avatar Sam Hocevar

fichiers oubli�s qui faisaient que �a compile pas

parent 0759c952
......@@ -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 100000
#define VOUT_DISPLAY_DELAY 500000
/* Delay (in microseconds) between increments in idle levels */
#define VOUT_IDLE_DELAY 5000000000000
......
......@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment