Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
3c4a7fc5
Commit
3c4a7fc5
authored
Jul 30, 2004
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/video_output/video_output.c:
+ Fixed an undefined function warning.
parent
890ba553
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
include/video_output.h
include/video_output.h
+2
-0
src/misc/cpu.c
src/misc/cpu.c
+1
-0
src/video_output/video_output.c
src/video_output/video_output.c
+0
-2
No files found.
include/video_output.h
View file @
3c4a7fc5
...
...
@@ -228,6 +228,8 @@ VLC_EXPORT( int, vout_vaControlDefault, ( vout_thread_t *, int, va_list ) );
VLC_EXPORT
(
void
*
,
vout_RequestWindow
,
(
vout_thread_t
*
,
int
*
,
int
*
,
unsigned
int
*
,
unsigned
int
*
)
);
VLC_EXPORT
(
void
,
vout_ReleaseWindow
,
(
vout_thread_t
*
,
void
*
)
);
VLC_EXPORT
(
int
,
vout_ControlWindow
,
(
vout_thread_t
*
,
void
*
,
int
,
va_list
)
);
void
vout_IntfInit
(
vout_thread_t
*
);
static
inline
int
vout_vaControl
(
vout_thread_t
*
p_vout
,
int
i_query
,
va_list
args
)
...
...
src/misc/cpu.c
View file @
3c4a7fc5
...
...
@@ -185,6 +185,7 @@ uint32_t CPUCapabilities( void )
}
# endif
}
if
(
i_edx
&
0x04000000
)
{
# if defined(CAN_COMPILE_SSE) && !defined(SYS_BEOS)
...
...
src/video_output/video_output.c
View file @
3c4a7fc5
...
...
@@ -57,8 +57,6 @@ static int BinaryLog ( uint32_t );
static
void
MaskToShift
(
int
*
,
int
*
,
uint32_t
);
static
void
InitWindowSize
(
vout_thread_t
*
,
int
*
,
int
*
);
void
vout_IntfInit
(
vout_thread_t
*
);
/* Object variables callbacks */
static
int
DeinterlaceCallback
(
vlc_object_t
*
,
char
const
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
...
...
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