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
98fb7882
Commit
98fb7882
authored
Jan 03, 2023
by
Paul Gofman
Committed by
Alexandre Julliard
Feb 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Route MFAudioFormat_RAW_AAC to mf_media_type_to_wg_format_audio_mpeg4().
parent
bd739062
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
aac_decoder.c
dlls/winegstreamer/aac_decoder.c
+0
-2
gst_private.h
dlls/winegstreamer/gst_private.h
+2
-0
mfplat.c
dlls/winegstreamer/mfplat.c
+1
-1
No files found.
dlls/winegstreamer/aac_decoder.c
View file @
98fb7882
...
...
@@ -30,8 +30,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mfplat
);
WINE_DECLARE_DEBUG_CHANNEL
(
winediag
);
extern
const
GUID
MFAudioFormat_RAW_AAC
;
static
struct
{
const
GUID
*
const
guid
;
...
...
dlls/winegstreamer/gst_private.h
View file @
98fb7882
...
...
@@ -148,4 +148,6 @@ HRESULT aac_decoder_create(REFIID riid, void **ret);
HRESULT
h264_decoder_create
(
REFIID
riid
,
void
**
ret
);
HRESULT
video_processor_create
(
REFIID
riid
,
void
**
ret
);
extern
const
GUID
MFAudioFormat_RAW_AAC
;
#endif
/* __GST_PRIVATE_INCLUDED__ */
dlls/winegstreamer/mfplat.c
View file @
98fb7882
...
...
@@ -863,7 +863,7 @@ void mf_media_type_to_wg_format(IMFMediaType *type, struct wg_format *format)
IsEqualGUID
(
&
subtype
,
&
MFAudioFormat_WMAudioV9
)
||
IsEqualGUID
(
&
subtype
,
&
MFAudioFormat_WMAudio_Lossless
))
mf_media_type_to_wg_format_audio_wma
(
type
,
&
subtype
,
format
);
else
if
(
IsEqualGUID
(
&
subtype
,
&
MFAudioFormat_AAC
))
else
if
(
IsEqualGUID
(
&
subtype
,
&
MFAudioFormat_AAC
)
||
IsEqualGUID
(
&
subtype
,
&
MFAudioFormat_RAW_AAC
)
)
mf_media_type_to_wg_format_audio_mpeg4
(
type
,
format
);
else
mf_media_type_to_wg_format_audio
(
type
,
&
subtype
,
format
);
...
...
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