Changeset 9a8650a188e067bc14b7e6ed48bf89082a0f3d16
- Timestamp:
- 03/08/08 18:15:19
(6 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1204996519 +0100
- git-parent:
[a58afd27a89c0427ea4f266ee2ad628ba80ba6b6]
- git-author:
- Rafaël Carré <funman@videolan.org> 1204996519 +0100
- Message:
fix xvmc video_output compilation
static functions can not be used outside of the file where they are declared
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r55da14e |
r9a8650a |
|
| 123 | 123 | #ifdef HAVE_SYS_SHM_H |
|---|
| 124 | 124 | #ifndef MODULE_NAME_IS_glx |
|---|
| 125 | | static IMAGE_TYPE *CreateShmImage ( vout_thread_t *, |
|---|
| | 125 | IMAGE_TYPE *CreateShmImage ( vout_thread_t *, |
|---|
| 126 | 126 | Display *, EXTRA_ARGS_SHM, int, int ); |
|---|
| 127 | 127 | #endif |
|---|
| … | … | |
| 2839 | 2839 | * there. See http://ftp.xfree86.org/pub/XFree86/4.0/doc/mit-shm.TXT |
|---|
| 2840 | 2840 | *****************************************************************************/ |
|---|
| 2841 | | static IMAGE_TYPE * CreateShmImage( vout_thread_t *p_vout, |
|---|
| | 2841 | IMAGE_TYPE * CreateShmImage( vout_thread_t *p_vout, |
|---|
| 2842 | 2842 | Display* p_display, EXTRA_ARGS_SHM, |
|---|
| 2843 | 2843 | int i_width, int i_height ) |
|---|