Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
c3a438c7
Commit
c3a438c7
authored
Jan 04, 2000
by
Christophe Massiot
Browse files
Ajout des fichiers de la synchro un peu partout.
parent
667b4eb4
Changes
11
Hide whitespace changes
Inline
Side-by-side
include/video_parser.h
View file @
c3a438c7
...
...
@@ -56,6 +56,7 @@ typedef struct vpar_thread_s
picture_parsing_t
picture
;
slice_parsing_t
slice
;
macroblock_parsing_t
mb
;
video_synchro_t
synchro
;
#ifdef STATS
/* Statistics */
...
...
include/vpar_synchro.h
0 → 100644
View file @
c3a438c7
/*****************************************************************************
* vpar_synchro.h : video parser blocks management
* (c)1999 VideoLAN
*****************************************************************************
*****************************************************************************
* Requires:
* "config.h"
* "common.h"
* "mtime.h"
* "vlc_thread.h"
* "input.h"
* "video.h"
* "video_output.h"
* "decoder_fifo.h"
* "video_fifo.h"
*****************************************************************************/
/*****************************************************************************
* video_synchro_t : timers for the video synchro
*****************************************************************************/
typedef
struct
video_synchro_s
{
}
video_synchro_t
;
/*****************************************************************************
* Prototypes
*****************************************************************************/
void
vpar_SynchroChoose
(
struct
vpar_thread_s
*
p_vpar
,
int
i_coding_type
,
int
i_structure
);
void
vpar_SynchroTrash
(
struct
vpar_thread_s
*
p_vpar
,
int
i_coding_type
,
int
i_structure
);
mtime_t
vpar_SynchroDecode
(
struct
vpar_thread_s
*
p_vpar
,
int
i_coding_type
,
int
i_structure
);
src/video_decoder/vdec_idct.c
View file @
c3a438c7
...
...
@@ -36,6 +36,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_decoder/vdec_motion.c
View file @
c3a438c7
...
...
@@ -36,6 +36,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_decoder/video_decoder.c
View file @
c3a438c7
...
...
@@ -38,6 +38,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_parser/video_fifo.c
View file @
c3a438c7
...
...
@@ -36,6 +36,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*****************************************************************************
...
...
src/video_parser/video_parser.c
View file @
c3a438c7
...
...
@@ -38,6 +38,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_parser/vpar_blocks.c
View file @
c3a438c7
...
...
@@ -36,6 +36,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_parser/vpar_headers.c
View file @
c3a438c7
...
...
@@ -36,6 +36,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_parser/vpar_motion.c
View file @
c3a438c7
...
...
@@ -36,6 +36,7 @@
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
...
...
src/video_parser/vpar_synchro.c
0 → 100644
View file @
c3a438c7
/*****************************************************************************
* vpar_motion.c : motion vectors parsing
* (c)1999 VideoLAN
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#include
<errno.h>
#include
<stdlib.h>
#include
<stdio.h>
#include
<unistd.h>
#include
<string.h>
#include
<sys/uio.h>
#include
<X11/Xlib.h>
#include
<X11/extensions/XShm.h>
#include
"config.h"
#include
"common.h"
#include
"mtime.h"
#include
"vlc_thread.h"
#include
"intf_msg.h"
#include
"debug.h"
/* ?? temporaire, requis par netlist.h */
#include
"input.h"
#include
"input_netlist.h"
#include
"decoder_fifo.h"
#include
"video.h"
#include
"video_output.h"
#include
"vdec_idct.h"
#include
"video_decoder.h"
#include
"vdec_motion.h"
#include
"vpar_blocks.h"
#include
"vpar_headers.h"
#include
"video_fifo.h"
#include
"vpar_synchro.h"
#include
"video_parser.h"
/*
* Local prototypes
*/
/*****************************************************************************
* vpar_SynchroChoose : Decide whether we will decode a picture or not
*****************************************************************************/
void
vpar_SynchroChoose
(
vpar_thread_t
*
p_vpar
,
int
i_coding_type
,
int
i_structure
)
{
}
/*****************************************************************************
* vpar_SynchroTrash : Update timers when we trash a picture
*****************************************************************************/
void
vpar_SynchroTrash
(
vpar_thread_t
*
p_vpar
,
int
i_coding_type
,
int
i_structure
)
{
}
/*****************************************************************************
* vpar_SynchroDecode : Update timers when we decide to decode a picture
*****************************************************************************/
mtime_t
vpar_SynchroDecode
(
vpar_thread_t
*
p_vpar
,
int
i_coding_type
,
int
i_structure
)
{
}
Write
Preview
Supports
Markdown
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