Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
8abcae54
Commit
8abcae54
authored
Feb 19, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Feb 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Build with msvcrt.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9638a509
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
19 deletions
+11
-19
Makefile.in
dlls/winegstreamer/Makefile.in
+2
-0
audioconvert.c
dlls/winegstreamer/audioconvert.c
+0
-3
gst_private.h
dlls/winegstreamer/gst_private.h
+0
-3
gstdemux.c
dlls/winegstreamer/gstdemux.c
+3
-4
main.c
dlls/winegstreamer/main.c
+1
-1
media_source.c
dlls/winegstreamer/media_source.c
+1
-5
mfplat.c
dlls/winegstreamer/mfplat.c
+0
-3
wg_parser.c
dlls/winegstreamer/wg_parser.c
+4
-0
No files found.
dlls/winegstreamer/Makefile.in
View file @
8abcae54
...
...
@@ -5,6 +5,8 @@ EXTRAINCL = $(GSTREAMER_CFLAGS)
EXTRALIBS
=
$(GSTREAMER_LIBS)
$(PTHREAD_LIBS)
PARENTSRC
=
../strmbase
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
audioconvert.c
\
filter.c
\
...
...
dlls/winegstreamer/audioconvert.c
View file @
8abcae54
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <gst/gst.h>
#include "gst_private.h"
#include "mfapi.h"
...
...
dlls/winegstreamer/gst_private.h
View file @
8abcae54
...
...
@@ -25,9 +25,6 @@
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <gst/gst.h>
#include <gst/video/video.h>
#include <gst/audio/audio.h>
#define COBJMACROS
#define NONAMELESSSTRUCT
...
...
dlls/winegstreamer/gstdemux.c
View file @
8abcae54
...
...
@@ -20,17 +20,16 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "gst_private.h"
#include "gst_guids.h"
#include "vfwmsgs.h"
#include "amvideo.h"
#include "wine/unicode.h"
#include "wine/debug.h"
#include <assert.h>
#include <limits.h>
#include "dvdmedia.h"
#include "mmreg.h"
...
...
@@ -1016,7 +1015,7 @@ static BOOL decodebin_parser_filter_init_gst(struct parser *filter)
stream_count
=
unix_funcs
->
wg_parser_get_stream_count
(
parser
);
for
(
i
=
0
;
i
<
stream_count
;
++
i
)
{
s
printfW
(
source_name
,
formatW
,
i
);
s
wprintf
(
source_name
,
ARRAY_SIZE
(
source_name
)
,
formatW
,
i
);
if
(
!
create_pin
(
filter
,
unix_funcs
->
wg_parser_get_stream
(
parser
,
i
),
source_name
))
return
FALSE
;
}
...
...
@@ -1677,7 +1676,7 @@ static BOOL avi_splitter_filter_init_gst(struct parser *filter)
stream_count
=
unix_funcs
->
wg_parser_get_stream_count
(
parser
);
for
(
i
=
0
;
i
<
stream_count
;
++
i
)
{
s
printfW
(
source_name
,
formatW
,
i
);
s
wprintf
(
source_name
,
ARRAY_SIZE
(
source_name
)
,
formatW
,
i
);
if
(
!
create_pin
(
filter
,
unix_funcs
->
wg_parser_get_stream
(
parser
,
i
),
source_name
))
return
FALSE
;
}
...
...
dlls/winegstreamer/main.c
View file @
8abcae54
...
...
@@ -19,9 +19,9 @@
*/
#include "gst_private.h"
#include "winternl.h"
#include "rpcproxy.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "initguid.h"
#include "gst_guids.h"
...
...
dlls/winegstreamer/media_source.c
View file @
8abcae54
...
...
@@ -18,10 +18,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <gst/gst.h>
#include "gst_private.h"
#include <assert.h>
...
...
@@ -1083,7 +1079,7 @@ static HRESULT media_source_constructor(IMFByteStream *bytestream, struct media_
{
IMFStreamDescriptor
**
descriptors
=
NULL
;
struct
media_source
*
object
;
gint
64
total_pres_time
=
0
;
UINT
64
total_pres_time
=
0
;
struct
wg_parser
*
parser
;
DWORD
bytestream_caps
;
uint64_t
file_size
;
...
...
dlls/winegstreamer/mfplat.c
View file @
8abcae54
...
...
@@ -17,9 +17,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include <gst/gst.h>
#include "gst_private.h"
#include <assert.h>
...
...
dlls/winegstreamer/wg_parser.c
View file @
8abcae54
...
...
@@ -29,7 +29,11 @@
#define WIN32_NO_STATUS
#include "gst_private.h"
#include "winternl.h"
#include <assert.h>
#include <gst/gst.h>
#include <gst/video/video.h>
#include <gst/audio/audio.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
gstreamer
);
...
...
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