Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
959bc428
Commit
959bc428
authored
Oct 01, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Oct 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Move the GstAutoplugSelectResult definition to wg_parser.c.
Signed-off-by:
Zebediah Figura
<
zfigura@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9a9468cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
gst_private.h
dlls/winegstreamer/gst_private.h
+0
-7
wg_parser.c
dlls/winegstreamer/wg_parser.c
+7
-0
No files found.
dlls/winegstreamer/gst_private.h
View file @
959bc428
...
...
@@ -36,13 +36,6 @@
#include "wine/debug.h"
#include "wine/strmbase.h"
typedef
enum
{
GST_AUTOPLUG_SELECT_TRY
,
GST_AUTOPLUG_SELECT_EXPOSE
,
GST_AUTOPLUG_SELECT_SKIP
,
}
GstAutoplugSelectResult
;
static
inline
const
char
*
debugstr_time
(
REFERENCE_TIME
time
)
{
ULONGLONG
abstime
=
time
>=
0
?
time
:
-
time
;
...
...
dlls/winegstreamer/wg_parser.c
View file @
959bc428
...
...
@@ -34,6 +34,13 @@
#include <gst/video/video.h>
#include <gst/audio/audio.h>
typedef
enum
{
GST_AUTOPLUG_SELECT_TRY
,
GST_AUTOPLUG_SELECT_EXPOSE
,
GST_AUTOPLUG_SELECT_SKIP
,
}
GstAutoplugSelectResult
;
/* GStreamer callbacks may be called on threads not created by Wine, and
* therefore cannot access the Wine TEB. This means that we must use GStreamer
* debug logging instead of Wine debug logging. In order to be safe we forbid
...
...
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