Since we are adding more and more media formats to wg_format, the current wg_format struct is getting ugly.
Everytime we add a video format, we need to duplicate width, height, fps. Everytime we add a audio format, we need to duplicate channels, rate. So it would be better if we could share width, height, fps fields between different video formats, also share channels and rate fields between different audio formats.
What makes me found the current wg_format is not in a good shape is when I was writting code for Proton, I found that I need to write some code like this if want to get width/height/fps from a wg_format:
```
static bool get_video_info_from_wg_format(struct wg_format *format, int32_t *width, int32_t *height, uint32_t *fps_n, uint32_t *fps_d) { switch (format->major_type) { case WG_MAJOR_TYPE_VIDEO: *width = format->u.video.width; *height = format->u.video.height; *fps_n = format->u.video.fps_n; *fps_d = format->u.video.fps_d; return true;
case WG_MAJOR_TYPE_VIDEO_CINEPAK: *width = format->u.video_cinepak.width; *height = format->u.video_cinepak.height; *fps_n = format->u.video_cinepak.fps_n; *fps_d = format->u.video_cinepak.fps_d; return true;
case WG_MAJOR_TYPE_VIDEO_H264: *width = format->u.video_h264.width; *height = format->u.video_h264.height; *fps_n = format->u.video_h264.fps_n; *fps_d = format->u.video_h264.fps_d; return true;
case WG_MAJOR_TYPE_VIDEO_WMV: *width = format->u.video_wmv.width; *height = format->u.video_wmv.height; *fps_n = format->u.video_wmv.fps_n; *fps_d = format->u.video_wmv.fps_d; return true;
case WG_MAJOR_TYPE_VIDEO_INDEO: *width = format->u.video_indeo.width; *height = format->u.video_indeo.height; *fps_n = format->u.video_indeo.fps_n; *fps_d = format->u.video_indeo.fps_d; return true;
case WG_MAJOR_TYPE_VIDEO_MPEG1: *width = format->u.video_mpeg1.width; *height = format->u.video_mpeg1.height; *fps_n = format->u.video_mpeg1.fps_n; *fps_d = format->u.video_mpeg1.fps_d; return true;
default: GST_ERROR("Type %d is not a video format.\n", format->major_type); return false; } }
```
Apparently, the code above is ugly. By refactoring wg_format, we can avoid code like this.
This patch is a draft now, it only contains unixlib.h code.
Zeb, I'd like to confirm that if this refactoring would be acceptable for you. If do, I'll continue finishing the remaining parts.
From: Ziqing Hui zhui@codeweavers.com
--- dlls/winegstreamer/unixlib.h | 128 +++++++++++++++++------------------ 1 file changed, 62 insertions(+), 66 deletions(-)
diff --git a/dlls/winegstreamer/unixlib.h b/dlls/winegstreamer/unixlib.h index 4ec9fce515e..7a8c07817f8 100644 --- a/dlls/winegstreamer/unixlib.h +++ b/dlls/winegstreamer/unixlib.h @@ -45,37 +45,37 @@ enum wg_major_type WG_MAJOR_TYPE_VIDEO_MPEG1, };
-typedef UINT32 wg_audio_format; -enum wg_audio_format +typedef UINT32 wg_audio_type; +enum wg_audio_type { - WG_AUDIO_FORMAT_UNKNOWN, + WG_AUDIO_TYPE_UNKNOWN,
- WG_AUDIO_FORMAT_U8, - WG_AUDIO_FORMAT_S16LE, - WG_AUDIO_FORMAT_S24LE, - WG_AUDIO_FORMAT_S32LE, - WG_AUDIO_FORMAT_F32LE, - WG_AUDIO_FORMAT_F64LE, + WG_AUDIO_TYPE_U8, + WG_AUDIO_TYPE_S16LE, + WG_AUDIO_TYPE_S24LE, + WG_AUDIO_TYPE_S32LE, + WG_AUDIO_TYPE_F32LE, + WG_AUDIO_TYPE_F64LE, };
-typedef UINT32 wg_video_format; -enum wg_video_format +typedef UINT32 wg_video_type; +enum wg_video_type { - WG_VIDEO_FORMAT_UNKNOWN, + WG_VIDEO_TYPE_UNKNOWN,
- WG_VIDEO_FORMAT_BGRA, - WG_VIDEO_FORMAT_BGRx, - WG_VIDEO_FORMAT_BGR, - WG_VIDEO_FORMAT_RGB15, - WG_VIDEO_FORMAT_RGB16, + WG_VIDEO_TYPE_BGRA, + WG_VIDEO_TYPE_BGRx, + WG_VIDEO_TYPE_BGR, + WG_VIDEO_TYPE_RGB15, + WG_VIDEO_TYPE_RGB16,
- WG_VIDEO_FORMAT_AYUV, - WG_VIDEO_FORMAT_I420, - WG_VIDEO_FORMAT_NV12, - WG_VIDEO_FORMAT_UYVY, - WG_VIDEO_FORMAT_YUY2, - WG_VIDEO_FORMAT_YV12, - WG_VIDEO_FORMAT_YVYU, + WG_VIDEO_TYPE_AYUV, + WG_VIDEO_TYPE_I420, + WG_VIDEO_TYPE_NV12, + WG_VIDEO_TYPE_UYVY, + WG_VIDEO_TYPE_YUY2, + WG_VIDEO_TYPE_YV12, + WG_VIDEO_TYPE_YVYU, };
typedef UINT32 wg_wmv_video_format; @@ -89,89 +89,85 @@ enum wg_wmv_video_format WG_WMV_VIDEO_FORMAT_WVC1, };
-struct wg_format +struct wg_audio_format { - wg_major_type major_type; + uint32_t channels; + uint32_t rate;
union { struct { - wg_audio_format format; - - uint32_t channels; + wg_audio_type type; uint32_t channel_mask; /* In WinMM format. */ - uint32_t rate; - } audio; + } uncompressed; struct { uint32_t layer; - uint32_t rate; - uint32_t channels; - } audio_mpeg1; + } mpeg1; struct { uint32_t payload_type; uint32_t codec_data_len; unsigned char codec_data[64]; - } audio_mpeg4; + } mpeg4; struct { uint32_t version; uint32_t bitrate; - uint32_t rate; uint32_t depth; - uint32_t channels; uint32_t block_align; uint32_t codec_data_len; unsigned char codec_data[64]; - } audio_wma; + } wma; + }; +}; + +struct wg_video_format +{ + /* Positive height indicates top-down video; negative height + * indicates bottom-up video. */ + int32_t width; + int32_t height; + uint32_t fps_n; + uint32_t fps_d;
+ union + { struct { - wg_video_format format; - /* Positive height indicates top-down video; negative height - * indicates bottom-up video. */ - int32_t width, height; - uint32_t fps_n, fps_d; + wg_video_type type; RECT padding; - } video; - struct - { - uint32_t width; - uint32_t height; - uint32_t fps_n; - uint32_t fps_d; - } video_cinepak; + } uncompressed; struct { - int32_t width, height; - uint32_t fps_n, fps_d; uint32_t profile; uint32_t level; uint32_t codec_data_len; unsigned char codec_data[64]; - } video_h264; + } h264; struct { wg_wmv_video_format format; - int32_t width, height; - uint32_t fps_n, fps_d; uint32_t codec_data_len; unsigned char codec_data[64]; - } video_wmv; + } wmv; struct { - int32_t width, height; - uint32_t fps_n, fps_d; uint32_t version; - } video_indeo; - struct - { - int32_t width, height; - uint32_t fps_n, fps_d; - } video_mpeg1; - } u; + } indeo; + }; +}; + +struct wg_format +{ + wg_major_type major_type; + + union + { + struct wg_audio_format audio; + struct wg_video_format video; + }; };
enum wg_sample_flag
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=144249
Your paranoid android.
=== debian11 (build log) ===
../wine/dlls/winegstreamer/wg_transform.c:198:17: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:198:38: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:199:13: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:199:34: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:332:64: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:867:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:868:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:868:48: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:869:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:870:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:870:48: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:871:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:872:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:872:49: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:873:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:874:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:874:49: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_parser.c:257:28: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/resampler.c:924:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/resampler.c:926:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/resampler.c:926:23: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/resampler.c:927:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/resampler.c:928:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/resampler.c:929:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/resampler.c:935:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/resampler.c:937:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/resampler.c:937:23: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/resampler.c:938:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/resampler.c:939:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/resampler.c:940:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/media_source.c:399:23: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/media_source.c:399:39: error: array type has incomplete element type ���enum wg_video_format��� ../wine/dlls/winegstreamer/media_source.c:401:9: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/media_source.c:402:9: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/media_source.c:403:9: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/media_source.c:404:9: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/media_source.c:418:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/media_source.c:450:23: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/media_source.c:450:39: error: array type has incomplete element type ���enum wg_audio_format��� ../wine/dlls/winegstreamer/media_source.c:452:9: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/media_source.c:453:9: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/media_source.c:460:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/media_source.c:462:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/aac_decoder.c:590:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/aac_decoder.c:592:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/aac_decoder.c:592:23: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/aac_decoder.c:593:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/aac_decoder.c:594:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/aac_decoder.c:595:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/video_decoder.c:875:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/video_decoder.c:877:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/video_decoder.c:877:23: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/video_decoder.c:878:14: error: ���union <anonymous>��� has no member named ���width��� ../wine/dlls/winegstreamer/video_decoder.c:879:14: error: ���union <anonymous>��� has no member named ���height��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_transform.c:750:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:752:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/quartz_transform.c:752:23: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_transform.c:753:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/quartz_transform.c:754:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:755:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/quartz_transform.c:761:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:763:14: error: ���union <anonymous>��� has no member named ���layer��� ../wine/dlls/winegstreamer/quartz_transform.c:764:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:765:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/quartz_transform.c:832:23: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_transform.c:832:39: error: array type has incomplete element type ���enum wg_video_format��� ../wine/dlls/winegstreamer/quartz_transform.c:833:9: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_transform.c:834:9: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_transform.c:835:9: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_transform.c:836:9: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_transform.c:837:9: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_transform.c:838:9: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_transform.c:839:9: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_transform.c:854:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:855:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:856:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:857:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:858:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:902:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:903:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/quartz_transform.c:903:23: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_transform.c:910:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:1028:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:1030:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/quartz_transform.c:1030:23: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_transform.c:1031:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/quartz_transform.c:1032:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:1033:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/quartz_transform.c:1039:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:1041:14: error: ���union <anonymous>��� has no member named ���layer��� ../wine/dlls/winegstreamer/quartz_transform.c:1042:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:1043:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/color_convert.c:923:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/color_convert.c:925:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/color_convert.c:925:23: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/color_convert.c:926:14: error: ���union <anonymous>��� has no member named ���width��� ../wine/dlls/winegstreamer/color_convert.c:927:14: error: ���union <anonymous>��� has no member named ���height��� ../wine/dlls/winegstreamer/color_convert.c:933:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/color_convert.c:935:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/color_convert.c:935:23: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/color_convert.c:936:14: error: ���union <anonymous>��� has no member named ���width��� ../wine/dlls/winegstreamer/color_convert.c:937:14: error: ���union <anonymous>��� has no member named ���height��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/main.c:607:38: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/main.c:609:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/main.c:611:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/main.c:614:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/main.c:615:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/main.c:618:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/main.c:621:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/main.c:622:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/main.c:623:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/main.c:626:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/main.c:627:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/main.c:630:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/main.c:631:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/main.c:632:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/main.c:635:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/main.c:642:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/main.c:642:50: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/main.c:646:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/main.c:647:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/main.c:648:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/main.c:649:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/main.c:650:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/main.c:653:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/main.c:654:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/main.c:655:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/main.c:656:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/main.c:657:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/main.c:658:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/main.c:659:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/main.c:660:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/mfplat.c:434:10: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/mfplat.c:434:26: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/mfplat.c:438:29: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/mfplat.c:439:29: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/mfplat.c:440:29: error: ���WG_VIDEO_FORMAT_BGR��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/mfplat.c:441:29: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/mfplat.c:442:29: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/mfplat.c:443:29: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/mfplat.c:444:29: error: ���WG_VIDEO_FORMAT_I420��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/mfplat.c:446:29: error: ���WG_VIDEO_FORMAT_NV12��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/mfplat.c:447:29: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/mfplat.c:448:29: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/mfplat.c:449:29: error: ���WG_VIDEO_FORMAT_YV12��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/mfplat.c:450:29: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/mfplat.c:457:10: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/mfplat.c:457:26: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/mfplat.c:461:33: error: ���WG_AUDIO_FORMAT_U8��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/mfplat.c:462:33: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/mfplat.c:463:33: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/mfplat.c:464:33: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/mfplat.c:465:33: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/mfplat.c:466:33: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/mfplat.c:481:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:481:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:481:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:489:81: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:489:84: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:489:90: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:490:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:490:78: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:490:84: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:491:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:491:78: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:491:84: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:494:33: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:494:36: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:494:42: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:494:52: error: invalid operands to binary * (have ���const struct <anonymous> *��� and ���UINT32��� {aka ���const unsigned int���}) ../wine/dlls/winegstreamer/mfplat.c:494:77: error: invalid operands to binary / (have ���const struct <anonymous> *��� and ���int���) ../wine/dlls/winegstreamer/mfplat.c:496:97: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:496:100: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:496:106: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:496:89: error: invalid operands to binary * (have ���unsigned int��� and ���const struct <anonymous> *���) ../wine/dlls/winegstreamer/mfplat.c:502:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:502:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:502:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:513:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:513:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:513:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:516:40: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:516:43: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:516:49: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:517:35: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:517:38: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:517:44: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:39: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:526:42: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:48: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:526:65: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:71: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:531:23: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:531:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:531:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:23: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:535:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:40: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:535:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:64: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:72: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:26: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:536:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:35: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:43: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:536:60: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:66: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:74: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:540:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:540:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:540:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:540:65: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:541:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:541:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:541:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:541:65: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:542:49: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:55: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:63: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:38: error: invalid operands to binary - (have ���int32_t��� {aka ���int���} and ���const struct <anonymous> *���) ../wine/dlls/winegstreamer/mfplat.c:542:78: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:542:81: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:87: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:95: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:47: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:543:50: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:56: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:64: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:39: error: invalid operands to binary - (have ���int32_t��� {aka ���int���} and ���const struct <anonymous> *���) ../wine/dlls/winegstreamer/mfplat.c:543:80: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:543:83: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:89: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:97: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:554:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:554:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:554:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:620:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:620:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:620:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:621:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:621:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:621:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:622:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:622:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:622:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:628:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:628:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:628:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:653:40: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:653:43: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:653:55: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:659:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:659:25: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:659:37: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:661:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:661:25: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:661:37: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:665:77: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:665:80: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:665:92: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:666:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:666:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:666:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:668:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:668:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:668:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:671:29: error: return type is an incomplete type ../wine/dlls/winegstreamer/mfplat.c:681:12: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/mfplat.c:697:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:697:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:697:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:698:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:698:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:698:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:699:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:699:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:699:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:700:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:700:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:700:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:705:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:705:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:705:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:705:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:706:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:706:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:706:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:706:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:707:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:47: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:707:50: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:56: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:708:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:48: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:708:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:713:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:713:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:713:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:714:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:714:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:714:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:717:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:717:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:717:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:722:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:45: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:722:48: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:54: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:38: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/mfplat.c:724:43: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:724:46: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:724:52: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:724:37: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/mfplat.c:726:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:726:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:41: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:726:44: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:50: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:34: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/mfplat.c:782:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:782:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:782:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:783:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:783:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:783:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:784:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:784:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:784:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:785:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:785:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:785:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:786:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:786:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:786:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:787:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:787:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:787:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:788:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:788:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:788:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:789:18: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:789:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:789:31: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:803:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:803:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:803:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:804:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:804:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:804:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:809:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:809:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:809:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:810:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:810:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:810:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:814:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:814:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:814:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:815:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:815:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:815:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:819:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:819:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:819:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:822:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:822:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:822:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:826:44: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:826:47: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:826:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:828:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:828:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:828:33: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:829:26: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:829:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:829:40: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:848:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:848:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:848:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:849:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:849:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:849:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:854:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:854:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:854:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:855:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:855:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:855:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:859:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:859:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:859:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:860:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:860:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:860:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:863:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:863:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:863:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/wg_format.c:43:13: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/wg_format.c:43:29: error: return type is an incomplete type ../wine/dlls/winegstreamer/wg_format.c:48:20: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_U8���? ../wine/dlls/winegstreamer/wg_format.c:50:20: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S16LE���? ../wine/dlls/winegstreamer/wg_format.c:52:20: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S24LE���? ../wine/dlls/winegstreamer/wg_format.c:54:20: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S32LE���? ../wine/dlls/winegstreamer/wg_format.c:56:20: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F32LE���? ../wine/dlls/winegstreamer/wg_format.c:58:20: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F64LE���? ../wine/dlls/winegstreamer/wg_format.c:60:20: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/wg_format.c:128:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:129:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:130:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:131:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:134:13: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/wg_format.c:134:29: error: return type is an incomplete type ../wine/dlls/winegstreamer/wg_format.c:139:20: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRA���? ../wine/dlls/winegstreamer/wg_format.c:141:20: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRx���? ../wine/dlls/winegstreamer/wg_format.c:143:20: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGR���? ../wine/dlls/winegstreamer/wg_format.c:145:20: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB15���? ../wine/dlls/winegstreamer/wg_format.c:147:20: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB16���? ../wine/dlls/winegstreamer/wg_format.c:149:20: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_AYUV���? ../wine/dlls/winegstreamer/wg_format.c:151:20: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_I420���? ../wine/dlls/winegstreamer/wg_format.c:153:20: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_NV12���? ../wine/dlls/winegstreamer/wg_format.c:155:20: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_UYVY���? ../wine/dlls/winegstreamer/wg_format.c:157:20: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YUY2���? ../wine/dlls/winegstreamer/wg_format.c:159:20: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YV12���? ../wine/dlls/winegstreamer/wg_format.c:161:20: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YVYU���? ../wine/dlls/winegstreamer/wg_format.c:163:20: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/wg_format.c:170:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:171:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:172:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:173:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:174:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:199:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:200:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:201:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:250:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:251:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:252:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:253:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:254:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:255:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:258:34: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:260:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:261:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:290:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:291:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:292:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:293:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:345:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:346:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:347:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:348:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:349:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:354:38: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:356:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:357:26: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:387:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:388:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:389:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:390:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:441:67: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/wg_format.c:445:14: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_U8���? ../wine/dlls/winegstreamer/wg_format.c:446:14: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S16LE���? ../wine/dlls/winegstreamer/wg_format.c:447:14: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S24LE���? ../wine/dlls/winegstreamer/wg_format.c:448:14: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S32LE���? ../wine/dlls/winegstreamer/wg_format.c:449:14: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F32LE���? ../wine/dlls/winegstreamer/wg_format.c:450:14: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F64LE���? ../wine/dlls/winegstreamer/wg_format.c:509:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:510:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:511:61: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:527:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:537:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:539:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:540:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:540:76: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:554:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:557:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:557:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:558:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:558:80: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:562:67: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/wg_format.c:566:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRA���? ../wine/dlls/winegstreamer/wg_format.c:567:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRx���? ../wine/dlls/winegstreamer/wg_format.c:568:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGR���? ../wine/dlls/winegstreamer/wg_format.c:569:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB15���? ../wine/dlls/winegstreamer/wg_format.c:570:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB16���? ../wine/dlls/winegstreamer/wg_format.c:571:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_AYUV���? ../wine/dlls/winegstreamer/wg_format.c:572:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_I420���? ../wine/dlls/winegstreamer/wg_format.c:573:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_NV12���? ../wine/dlls/winegstreamer/wg_format.c:574:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_UYVY���? ../wine/dlls/winegstreamer/wg_format.c:575:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YUY2���? ../wine/dlls/winegstreamer/wg_format.c:576:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YV12���? ../wine/dlls/winegstreamer/wg_format.c:577:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YVYU���? ../wine/dlls/winegstreamer/wg_format.c:589:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:592:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:592:85: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:593:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:595:28: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:596:28: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:604:24: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:606:24: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:608:24: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:608:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:625:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:626:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:627:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:628:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:629:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:629:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:630:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:630:104: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:642:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:643:67: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:645:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:646:64: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:647:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:648:61: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:649:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:650:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:651:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:652:65: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:653:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:654:68: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:656:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:658:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:664:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:664:74: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:683:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:684:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:685:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:686:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:687:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:687:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:688:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:688:101: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:690:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:696:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:704:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:723:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:732:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:734:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:742:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:742:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:760:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:783:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:795:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:796:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:797:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:798:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:799:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:799:44: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:800:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:800:100: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:802:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:804:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:810:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:810:74: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:825:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:826:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:827:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:828:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:829:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:829:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:830:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:830:102: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:831:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:832:69: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:847:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:848:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:849:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:850:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:851:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:851:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:852:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:852:102: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:906:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:906:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:907:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:907:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:908:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:908:44: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:912:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:912:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:913:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:913:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:914:29: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:914:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:915:37: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:915:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:919:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:919:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:920:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:920:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:924:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:924:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:925:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:925:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:926:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:926:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:118:43: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:118:59: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:122:14: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:123:14: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:124:14: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:125:14: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:126:14: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:127:14: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:128:14: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:135:44: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:135:60: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:139:14: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:140:14: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:141:14: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:142:14: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:143:14: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:144:14: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:145:14: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:157:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:159:10: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:162:10: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:163:10: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:164:10: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:165:10: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:166:10: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:167:10: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:169:56: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:170:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:172:31: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:185:51: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:186:56: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:187:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:187:80: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:188:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:192:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:209:44: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:210:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:211:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:211:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:212:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:230:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:245:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:246:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:248:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:264:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:265:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:291:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:325:29: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:329:36: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:330:41: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:331:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:332:38: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:333:41: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:336:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:337:37: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:337:69: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:339:77: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:345:59: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:345:75: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:349:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:350:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:351:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:354:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:357:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:358:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:359:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:360:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:361:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:364:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:365:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:369:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:373:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:387:59: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:388:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:388:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:394:26: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:394:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:400:53: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:401:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:401:56: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:405:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:405:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:409:39: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:409:72: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:414:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:416:22: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:419:22: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:422:22: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:425:22: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:426:22: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:429:22: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:432:22: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:440:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:457:26: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:457:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:457:84: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:474:58: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:474:74: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:478:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:479:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:480:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:481:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:482:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:483:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:484:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:485:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:486:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:487:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:488:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:489:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:490:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:497:51: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:497:67: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:501:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:502:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:503:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:504:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:505:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:506:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:507:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:508:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:509:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:510:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:511:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:512:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:513:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:520:44: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:520:60: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:524:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:525:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:526:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:527:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:528:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:529:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:530:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:531:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:532:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:533:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:534:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:535:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:536:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:548:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:548:35: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:555:59: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:569:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:569:81: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:572:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:572:69: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:575:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:576:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:577:38: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:577:32: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/quartz_parser.c:578:51: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:580:74: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:581:83: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:584:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:584:35: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:612:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:612:77: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:615:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:616:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:631:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:649:52: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:653:71: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:662:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:666:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:666:77: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:668:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:668:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:670:71: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:671:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:672:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:677:34: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:677:66: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:699:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:699:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:702:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:703:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:758:14: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:758:30: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:762:41: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:763:41: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:764:41: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:765:41: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:766:41: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:767:41: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:785:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:785:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:785:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:786:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:786:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:786:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:792:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:792:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:792:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:797:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:797:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:797:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:799:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:799:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:799:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:812:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:812:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:812:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:837:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:837:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:837:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:838:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:838:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:838:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:839:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:839:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:839:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:859:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:859:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:859:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:860:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:860:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:860:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:861:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:861:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:861:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:881:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:881:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:881:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:883:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:883:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:883:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:885:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:885:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:885:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:887:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:887:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:887:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:891:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:891:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:891:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:892:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:892:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:892:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:893:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:893:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:893:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:894:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:894:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:894:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:895:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:895:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:895:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:897:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:897:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:897:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:898:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:898:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:898:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:899:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:899:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:899:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:900:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:900:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:900:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:901:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:901:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:901:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:902:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:902:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:902:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:903:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:903:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:903:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:904:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:904:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:904:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:905:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:905:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:905:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:906:54: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:906:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:906:67: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:907:25: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:35: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:70: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:907:73: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:83: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:919:14: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:919:30: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:923:33: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:924:33: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:925:33: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:926:33: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:927:33: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:928:33: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:929:33: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:930:33: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:931:33: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:932:33: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:933:33: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:934:33: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:952:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:952:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:952:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:953:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:953:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:953:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:954:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:954:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:954:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:955:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:955:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:955:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:961:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:961:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:961:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:962:46: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:962:49: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:962:55: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:962:40: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/quartz_parser.c:963:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:963:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:49: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:963:52: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:42: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/quartz_parser.c:988:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:988:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:988:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:989:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:989:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:989:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:990:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:990:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:990:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:991:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:991:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:991:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:994:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:994:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:994:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:996:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:996:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:996:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:998:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:998:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:998:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1000:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1000:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1000:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1002:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1002:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1002:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1004:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1004:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1004:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1006:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1006:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1006:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1007:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:59: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1007:62: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:72: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1009:55: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1009:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1009:68: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1010:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1010:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1010:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:18: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1012:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:31: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:66: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1012:69: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:79: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1032:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1032:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1032:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1033:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1033:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1033:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1034:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1034:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1034:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1035:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1035:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1035:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1602:23: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:1602:39: error: array type has incomplete element type ���enum wg_video_format��� ../wine/dlls/winegstreamer/quartz_parser.c:1607:9: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:1608:9: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:1609:9: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:1610:9: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:1611:9: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:1612:9: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:1613:9: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:1614:9: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:1615:9: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:1616:9: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:1617:9: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:1618:9: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/include/winnt.h:891:35: error: invalid operands to binary / (have ���const struct <anonymous> *��� and ���unsigned int���) ../wine/dlls/winegstreamer/quartz_parser.c:1634:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1634:17: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1634:23: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1636:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1636:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1636:27: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1636:78: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/quartz_parser.c:1637:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1637:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:27: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:44: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1637:46: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:52: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:37: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/quartz_parser.c:1644:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1644:17: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1644:23: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1644:33: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? Task: The win32 Wine build failed
=== debian11b (build log) ===
../wine/dlls/winegstreamer/wg_transform.c:198:17: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:198:38: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:199:13: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:199:34: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:332:64: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:867:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:868:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:868:48: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:869:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:870:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:870:48: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:871:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:872:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:872:49: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:873:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:874:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_transform.c:874:49: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/video_decoder.c:875:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/video_decoder.c:877:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/video_decoder.c:877:23: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/video_decoder.c:878:14: error: ���union <anonymous>��� has no member named ���width��� ../wine/dlls/winegstreamer/video_decoder.c:879:14: error: ���union <anonymous>��� has no member named ���height��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/aac_decoder.c:590:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/aac_decoder.c:592:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/aac_decoder.c:592:23: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/aac_decoder.c:593:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/aac_decoder.c:594:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/aac_decoder.c:595:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/resampler.c:924:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/resampler.c:926:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/resampler.c:926:23: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/resampler.c:927:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/resampler.c:928:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/resampler.c:929:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/resampler.c:935:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/resampler.c:937:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/resampler.c:937:23: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/resampler.c:938:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/resampler.c:939:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/resampler.c:940:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/wg_parser.c:257:28: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_transform.c:750:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:752:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/quartz_transform.c:752:23: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_transform.c:753:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/quartz_transform.c:754:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:755:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/quartz_transform.c:761:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:763:14: error: ���union <anonymous>��� has no member named ���layer��� ../wine/dlls/winegstreamer/quartz_transform.c:764:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:765:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/quartz_transform.c:832:23: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_transform.c:832:39: error: array type has incomplete element type ���enum wg_video_format��� ../wine/dlls/winegstreamer/quartz_transform.c:833:9: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_transform.c:834:9: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_transform.c:835:9: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_transform.c:836:9: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_transform.c:837:9: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_transform.c:838:9: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_transform.c:839:9: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_transform.c:854:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:855:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:856:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:857:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:858:14: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:902:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:903:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/quartz_transform.c:903:23: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_transform.c:910:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:1028:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:1030:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/quartz_transform.c:1030:23: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_transform.c:1031:14: error: ���union <anonymous>��� has no member named ���channel_mask��� ../wine/dlls/winegstreamer/quartz_transform.c:1032:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:1033:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/quartz_transform.c:1039:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_transform.c:1041:14: error: ���union <anonymous>��� has no member named ���layer��� ../wine/dlls/winegstreamer/quartz_transform.c:1042:14: error: ���union <anonymous>��� has no member named ���channels��� ../wine/dlls/winegstreamer/quartz_transform.c:1043:14: error: ���union <anonymous>��� has no member named ���rate��� ../wine/dlls/winegstreamer/wg_format.c:43:13: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/wg_format.c:43:29: error: return type is an incomplete type ../wine/dlls/winegstreamer/wg_format.c:48:20: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_U8���? ../wine/dlls/winegstreamer/wg_format.c:50:20: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S16LE���? ../wine/dlls/winegstreamer/wg_format.c:52:20: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S24LE���? ../wine/dlls/winegstreamer/wg_format.c:54:20: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S32LE���? ../wine/dlls/winegstreamer/wg_format.c:56:20: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F32LE���? ../wine/dlls/winegstreamer/wg_format.c:58:20: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F64LE���? ../wine/dlls/winegstreamer/wg_format.c:60:20: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/wg_format.c:128:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:129:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:130:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:131:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:134:13: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/wg_format.c:134:29: error: return type is an incomplete type ../wine/dlls/winegstreamer/wg_format.c:139:20: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRA���? ../wine/dlls/winegstreamer/wg_format.c:141:20: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRx���? ../wine/dlls/winegstreamer/wg_format.c:143:20: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGR���? ../wine/dlls/winegstreamer/wg_format.c:145:20: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB15���? ../wine/dlls/winegstreamer/wg_format.c:147:20: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB16���? ../wine/dlls/winegstreamer/wg_format.c:149:20: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_AYUV���? ../wine/dlls/winegstreamer/wg_format.c:151:20: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_I420���? ../wine/dlls/winegstreamer/wg_format.c:153:20: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_NV12���? ../wine/dlls/winegstreamer/wg_format.c:155:20: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_UYVY���? ../wine/dlls/winegstreamer/wg_format.c:157:20: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YUY2���? ../wine/dlls/winegstreamer/wg_format.c:159:20: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YV12���? ../wine/dlls/winegstreamer/wg_format.c:161:20: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YVYU���? ../wine/dlls/winegstreamer/wg_format.c:163:20: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/wg_format.c:170:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:171:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:172:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:173:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:174:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:199:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:200:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:201:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:250:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:251:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:252:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:253:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:254:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:255:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:258:34: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:260:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:261:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:290:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:291:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:292:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:293:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:345:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:346:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:347:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:348:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:349:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:354:38: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:356:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:357:26: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:387:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:388:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:389:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:390:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:441:67: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/wg_format.c:445:14: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_U8���? ../wine/dlls/winegstreamer/wg_format.c:446:14: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S16LE���? ../wine/dlls/winegstreamer/wg_format.c:447:14: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S24LE���? ../wine/dlls/winegstreamer/wg_format.c:448:14: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_S32LE���? ../wine/dlls/winegstreamer/wg_format.c:449:14: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F32LE���? ../wine/dlls/winegstreamer/wg_format.c:450:14: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���GST_AUDIO_FORMAT_F64LE���? ../wine/dlls/winegstreamer/wg_format.c:509:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:510:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:511:61: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:527:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:537:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:539:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:540:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:540:76: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:554:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:557:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:557:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:558:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:558:80: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:562:67: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/wg_format.c:566:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRA���? ../wine/dlls/winegstreamer/wg_format.c:567:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGRx���? ../wine/dlls/winegstreamer/wg_format.c:568:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_BGR���? ../wine/dlls/winegstreamer/wg_format.c:569:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB15���? ../wine/dlls/winegstreamer/wg_format.c:570:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_RGB16���? ../wine/dlls/winegstreamer/wg_format.c:571:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_AYUV���? ../wine/dlls/winegstreamer/wg_format.c:572:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_I420���? ../wine/dlls/winegstreamer/wg_format.c:573:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_NV12���? ../wine/dlls/winegstreamer/wg_format.c:574:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_UYVY���? ../wine/dlls/winegstreamer/wg_format.c:575:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YUY2���? ../wine/dlls/winegstreamer/wg_format.c:576:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YV12���? ../wine/dlls/winegstreamer/wg_format.c:577:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���GST_VIDEO_FORMAT_YVYU���? ../wine/dlls/winegstreamer/wg_format.c:589:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:592:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:592:85: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:593:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:595:28: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:596:28: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:604:24: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:606:24: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:608:24: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:608:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:625:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:626:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:627:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:628:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:629:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:629:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:630:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:630:104: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:642:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:643:67: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:645:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:646:64: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:647:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:648:61: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:649:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:650:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:651:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:652:65: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:653:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:654:68: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:656:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:658:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:664:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:664:74: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:683:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:684:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:685:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:686:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:687:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:687:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:688:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:688:101: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:690:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:696:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:704:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:723:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:732:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:734:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:742:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:742:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:760:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:783:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:795:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:796:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:797:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:798:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:799:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:799:44: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:800:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:800:100: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:802:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:804:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:810:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:810:74: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:825:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:826:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:827:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:828:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:829:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:829:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:830:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:830:102: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:831:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:832:69: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:847:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:848:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:849:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:850:63: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:851:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:851:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:852:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:852:102: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:906:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:906:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:907:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:907:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:908:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:908:44: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:912:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:912:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:913:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:913:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:914:29: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:914:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:915:37: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:915:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:919:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:919:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:920:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:920:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:924:21: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:924:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:925:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:925:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:926:25: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/wg_format.c:926:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/media_source.c:399:23: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/media_source.c:399:39: error: array type has incomplete element type ���enum wg_video_format��� ../wine/dlls/winegstreamer/media_source.c:401:9: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/media_source.c:402:9: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/media_source.c:403:9: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/media_source.c:404:9: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/media_source.c:418:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/media_source.c:450:23: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/media_source.c:450:39: error: array type has incomplete element type ���enum wg_audio_format��� ../wine/dlls/winegstreamer/media_source.c:452:9: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/media_source.c:453:9: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/media_source.c:460:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/media_source.c:462:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/color_convert.c:923:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/color_convert.c:925:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/color_convert.c:925:23: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/color_convert.c:926:14: error: ���union <anonymous>��� has no member named ���width��� ../wine/dlls/winegstreamer/color_convert.c:927:14: error: ���union <anonymous>��� has no member named ���height��� ../wine/dlls/winegstreamer/color_convert.c:933:10: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/color_convert.c:935:14: error: ���union <anonymous>��� has no member named ���format��� ../wine/dlls/winegstreamer/color_convert.c:935:23: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/color_convert.c:936:14: error: ���union <anonymous>��� has no member named ���width��� ../wine/dlls/winegstreamer/color_convert.c:937:14: error: ���union <anonymous>��� has no member named ���height��� ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/mfplat.c:434:10: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/mfplat.c:434:26: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/mfplat.c:438:29: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/mfplat.c:439:29: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/mfplat.c:440:29: error: ���WG_VIDEO_FORMAT_BGR��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/mfplat.c:441:29: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/mfplat.c:442:29: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/mfplat.c:443:29: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/mfplat.c:444:29: error: ���WG_VIDEO_FORMAT_I420��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/mfplat.c:446:29: error: ���WG_VIDEO_FORMAT_NV12��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/mfplat.c:447:29: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/mfplat.c:448:29: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/mfplat.c:449:29: error: ���WG_VIDEO_FORMAT_YV12��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/mfplat.c:450:29: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared here (not in a function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/mfplat.c:457:10: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/mfplat.c:457:26: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/mfplat.c:461:33: error: ���WG_AUDIO_FORMAT_U8��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/mfplat.c:462:33: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/mfplat.c:463:33: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/mfplat.c:464:33: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/mfplat.c:465:33: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/mfplat.c:466:33: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared here (not in a function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/mfplat.c:481:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:481:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:481:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:489:81: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:489:84: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:489:90: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:490:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:490:78: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:490:84: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:491:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:491:78: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:491:84: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:494:33: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:494:36: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:494:42: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:494:52: error: invalid operands to binary * (have ���const struct <anonymous> *��� and ���UINT32��� {aka ���const unsigned int���}) ../wine/dlls/winegstreamer/mfplat.c:494:77: error: invalid operands to binary / (have ���const struct <anonymous> *��� and ���int���) ../wine/dlls/winegstreamer/mfplat.c:496:97: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:496:100: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:496:106: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:496:89: error: invalid operands to binary * (have ���unsigned int��� and ���const struct <anonymous> *���) ../wine/dlls/winegstreamer/mfplat.c:502:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:502:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:502:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:513:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:513:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:513:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:516:40: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:516:43: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:516:49: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:517:35: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:517:38: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:517:44: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:39: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:526:42: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:48: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:62: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:526:65: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:526:71: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:531:23: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:531:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:531:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:23: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:535:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:40: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:55: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:535:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:64: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:535:72: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:26: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:536:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:35: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:43: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:536:60: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:66: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:536:74: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:540:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:540:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:540:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:540:65: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:541:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:541:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:541:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:541:65: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:542:49: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:55: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:63: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:38: error: invalid operands to binary - (have ���int32_t��� {aka ���int���} and ���const struct <anonymous> *���) ../wine/dlls/winegstreamer/mfplat.c:542:78: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:542:81: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:87: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:542:95: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:47: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:543:50: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:56: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:64: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:39: error: invalid operands to binary - (have ���int32_t��� {aka ���int���} and ���const struct <anonymous> *���) ../wine/dlls/winegstreamer/mfplat.c:543:80: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:543:83: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:89: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:543:97: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:554:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:554:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:554:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:620:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:620:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:620:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:621:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:621:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:621:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:622:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:622:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:622:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:628:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:628:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:628:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:653:40: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:653:43: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:653:55: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:659:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:659:25: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:659:37: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:661:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:661:25: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:661:37: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:665:77: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:665:80: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:665:92: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:666:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:666:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:666:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:668:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:668:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:668:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:671:29: error: return type is an incomplete type ../wine/dlls/winegstreamer/mfplat.c:681:12: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/mfplat.c:697:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:697:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:697:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:698:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:698:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:698:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:699:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:699:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:699:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:700:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:700:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:700:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:705:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:705:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:705:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:705:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:706:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:706:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:706:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:706:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:707:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:47: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:707:50: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:707:56: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:708:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:48: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:708:51: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:708:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:713:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:713:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:713:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:714:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:714:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:714:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:717:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:717:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:717:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:722:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:45: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:722:48: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:54: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:722:38: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/mfplat.c:724:43: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:724:46: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:724:52: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:724:37: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/mfplat.c:726:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:726:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:41: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:726:44: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:50: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:726:34: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/mfplat.c:782:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:782:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:782:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:783:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:783:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:783:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:784:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:784:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:784:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:785:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:785:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:785:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:786:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:786:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:786:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:787:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:787:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:787:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:788:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:788:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:788:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:789:18: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:789:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:789:31: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:803:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:803:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:803:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:804:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:804:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:804:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:809:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:809:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:809:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:810:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:810:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:810:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:814:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:814:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:814:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:815:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:815:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:815:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:819:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:819:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:819:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:822:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:822:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:822:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:826:44: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:826:47: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:826:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:828:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:828:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:828:33: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:829:26: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:829:29: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:829:40: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:848:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:848:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:848:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:849:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:849:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:849:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:854:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:854:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:854:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:855:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:855:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:855:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:859:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:859:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:859:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:860:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:860:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:860:30: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:863:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/mfplat.c:863:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/mfplat.c:863:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/main.c:607:38: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/main.c:609:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/main.c:611:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/main.c:614:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/main.c:615:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/main.c:618:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/main.c:621:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/main.c:622:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/main.c:623:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/main.c:626:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/main.c:627:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/main.c:630:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/main.c:631:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/main.c:632:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/main.c:635:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/main.c:642:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/main.c:642:50: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/main.c:646:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/main.c:647:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/main.c:648:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/main.c:649:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/main.c:650:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/main.c:653:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/main.c:654:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/main.c:655:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/main.c:656:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/main.c:657:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/main.c:658:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/main.c:659:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/main.c:660:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/gst_private.h:102:51: error: unknown type name ���wg_video_format���; did you mean ���wg_wmv_video_format���? ../wine/dlls/winegstreamer/gst_private.h:150:34: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:118:43: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:118:59: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:122:14: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:123:14: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:124:14: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:125:14: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:126:14: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:127:14: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:128:14: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:135:44: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:135:60: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:139:14: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:140:14: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:141:14: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:142:14: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:143:14: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:144:14: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:145:14: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:157:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:159:10: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:162:10: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:163:10: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:164:10: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:165:10: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:166:10: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:167:10: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:169:56: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:170:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:172:31: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:185:51: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:186:56: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:187:57: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:187:80: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:188:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:192:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:209:44: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:210:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:211:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:211:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:212:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:230:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:245:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:246:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:248:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:264:48: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:265:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:291:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:325:29: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:329:36: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:330:41: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:331:42: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:332:38: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:333:41: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:336:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:337:37: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:337:69: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:339:77: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:345:59: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:345:75: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:349:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:350:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:351:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:354:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:357:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:358:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:359:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:360:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:361:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:364:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:365:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:369:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:373:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:387:59: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:388:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:388:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:394:26: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:394:58: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:400:53: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:401:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:401:56: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:405:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:405:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:409:39: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:409:72: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:414:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:416:22: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:419:22: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:422:22: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:425:22: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:426:22: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:429:22: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:432:22: error: ���WG_AUDIO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:440:27: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:457:26: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:457:53: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:457:84: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:474:58: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:474:74: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:478:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:479:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:480:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:481:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:482:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:483:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:484:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:485:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:486:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:487:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:488:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:489:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:490:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:497:51: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:497:67: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:501:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:502:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:503:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:504:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:505:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:506:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:507:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:508:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:509:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:510:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:511:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:512:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:513:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:520:44: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:520:60: error: parameter 1 (���format���) has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:524:14: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:525:14: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:526:14: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:527:14: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:528:14: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:529:14: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:530:14: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:531:14: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:532:14: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:533:14: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:534:14: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:535:14: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:536:14: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:548:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:548:35: error: ���WG_VIDEO_FORMAT_UNKNOWN��� undeclared (first use in this function); did you mean ���WG_WMV_VIDEO_FORMAT_UNKNOWN���? ../wine/dlls/winegstreamer/quartz_parser.c:555:59: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:569:54: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:569:81: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:572:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:572:69: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:575:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:576:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:577:38: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:577:32: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/quartz_parser.c:578:51: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:580:74: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:581:83: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:584:15: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:584:35: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:612:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:612:77: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:615:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:616:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:631:19: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:649:52: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:653:71: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:662:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:666:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:666:77: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:668:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:668:73: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:670:71: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:671:45: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:672:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:677:34: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:677:66: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:699:46: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:699:75: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:702:49: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:703:50: error: ���const struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:758:14: error: ���wg_audio_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:758:30: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:762:41: error: ���WG_AUDIO_FORMAT_U8��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_U8���? ../wine/dlls/winegstreamer/quartz_parser.c:763:41: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? ../wine/dlls/winegstreamer/quartz_parser.c:764:41: error: ���WG_AUDIO_FORMAT_S24LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S24LE���? ../wine/dlls/winegstreamer/quartz_parser.c:765:41: error: ���WG_AUDIO_FORMAT_S32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:766:41: error: ���WG_AUDIO_FORMAT_F32LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F32LE���? ../wine/dlls/winegstreamer/quartz_parser.c:767:41: error: ���WG_AUDIO_FORMAT_F64LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_F64LE���? ../wine/dlls/winegstreamer/quartz_parser.c:785:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:785:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:785:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:786:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:786:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:786:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:792:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:792:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:792:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:797:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:797:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:797:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:799:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:799:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:799:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:812:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:812:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:812:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:837:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:837:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:837:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:838:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:838:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:838:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:839:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:839:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:839:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:859:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:859:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:859:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:860:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:860:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:860:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:861:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:861:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:861:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:881:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:881:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:881:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:883:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:883:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:883:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:885:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:885:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:885:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:887:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:887:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:887:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:891:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:891:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:891:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:892:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:892:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:892:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:893:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:893:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:893:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:894:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:894:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:894:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:895:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:895:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:895:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:897:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:897:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:897:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:898:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:898:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:898:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:899:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:899:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:899:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:900:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:900:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:900:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:901:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:901:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:901:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:902:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:902:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:902:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:903:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:903:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:903:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:904:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:904:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:904:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:905:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:905:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:905:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:906:54: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:906:57: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:906:67: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:22: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:907:25: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:35: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:70: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:907:73: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:907:83: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:919:14: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:919:30: error: field ���format��� has incomplete type ../wine/dlls/winegstreamer/quartz_parser.c:923:33: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:924:33: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:925:33: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:926:33: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/dlls/winegstreamer/quartz_parser.c:927:33: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:928:33: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:929:33: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:930:33: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:931:33: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:932:33: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:933:33: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:934:33: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:952:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:952:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:952:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:953:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:953:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:953:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:954:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:954:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:954:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:955:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:955:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:955:20: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:961:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:961:22: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:961:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:962:46: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:962:49: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:962:55: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:962:40: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/quartz_parser.c:963:23: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:963:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:32: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:49: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:963:52: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:963:42: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/quartz_parser.c:988:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:988:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:988:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:989:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:989:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:989:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:990:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:990:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:990:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:991:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:991:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:991:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:994:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:994:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:994:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:996:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:996:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:996:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:998:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:998:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:998:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1000:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1000:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1000:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1002:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1002:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1002:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1004:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1004:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1004:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1006:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1006:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1006:24: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1007:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:59: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1007:62: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1007:72: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1009:55: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1009:58: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1009:68: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1010:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1010:18: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1010:28: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:18: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1012:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:31: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:66: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1012:69: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1012:79: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1032:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1032:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1032:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1033:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1033:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1033:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1034:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1034:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1034:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1035:11: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1035:14: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1035:26: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1602:23: error: ���wg_video_format��� defined as wrong kind of tag ../wine/dlls/winegstreamer/quartz_parser.c:1602:39: error: array type has incomplete element type ���enum wg_video_format��� ../wine/dlls/winegstreamer/quartz_parser.c:1607:9: error: ���WG_VIDEO_FORMAT_AYUV��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_AYUV���? ../wine/dlls/winegstreamer/quartz_parser.c:1608:9: error: ���WG_VIDEO_FORMAT_I420��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_I420���? ../wine/dlls/winegstreamer/quartz_parser.c:1609:9: error: ���WG_VIDEO_FORMAT_YV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YV12���? ../wine/dlls/winegstreamer/quartz_parser.c:1610:9: error: ���WG_VIDEO_FORMAT_YUY2��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YUY2���? ../wine/dlls/winegstreamer/quartz_parser.c:1611:9: error: ���WG_VIDEO_FORMAT_UYVY��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_UYVY���? ../wine/dlls/winegstreamer/quartz_parser.c:1612:9: error: ���WG_VIDEO_FORMAT_YVYU��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_YVYU���? ../wine/dlls/winegstreamer/quartz_parser.c:1613:9: error: ���WG_VIDEO_FORMAT_NV12��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_NV12���? ../wine/dlls/winegstreamer/quartz_parser.c:1614:9: error: ���WG_VIDEO_FORMAT_BGRA��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRA���? ../wine/dlls/winegstreamer/quartz_parser.c:1615:9: error: ���WG_VIDEO_FORMAT_BGRx��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGRx���? ../wine/dlls/winegstreamer/quartz_parser.c:1616:9: error: ���WG_VIDEO_FORMAT_BGR��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_BGR���? ../wine/dlls/winegstreamer/quartz_parser.c:1617:9: error: ���WG_VIDEO_FORMAT_RGB16��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB16���? ../wine/dlls/winegstreamer/quartz_parser.c:1618:9: error: ���WG_VIDEO_FORMAT_RGB15��� undeclared (first use in this function); did you mean ���WG_VIDEO_TYPE_RGB15���? ../wine/include/winnt.h:891:35: error: invalid operands to binary / (have ���const struct <anonymous> *��� and ���long long unsigned int���) ../wine/dlls/winegstreamer/quartz_parser.c:1634:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1634:17: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1634:23: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1636:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1636:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1636:27: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1636:78: error: type of formal parameter 1 is incomplete ../wine/dlls/winegstreamer/quartz_parser.c:1637:19: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1637:21: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:27: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:44: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1637:46: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:52: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1637:37: error: wrong type argument to unary minus ../wine/dlls/winegstreamer/quartz_parser.c:1644:15: error: ���struct wg_format��� has no member named ���u��� ../wine/dlls/winegstreamer/quartz_parser.c:1644:17: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1644:23: error: ���(const struct <anonymous> *)&<erroneous-expression>��� is a pointer; did you mean to use ���->���? ../wine/dlls/winegstreamer/quartz_parser.c:1644:33: error: ���WG_AUDIO_FORMAT_S16LE��� undeclared (first use in this function); did you mean ���WG_AUDIO_TYPE_S16LE���? Task: The wow64 Wine build failed
We actually used to do something kind of like this, but moved away from it in 0d956959fa and b5916adfb6. There are advantages and disadvantages: on the one hand, the way the code is now makes it easier to see exactly what fields are relevant to each format. On the other hand, we could potentially avoid some duplication, even forgetting about Proton. So I'm not really sure whether this is an improvement.
If we do, I'd probably prefer to revert or half-revert the mentioned commits, rather than making the changes proposed here. I.e. don't add more nested structures; instead just merge the the existing video_* and audio_* to a single "video" and "audio" structure the way it used to be. That's a bit simpler. I could see potentially moving the major types back to audio/video formats (which would help simplify a lot of the format conversion probably). Also, we should probably explicitly mention in the header which fields matter, since it's not spelled out in the API anymore.
I'm not thrilled about renaming "format" to "type", partly because it's now almost the same term used for the major type, and also doesn't match either "subtype" (mfplat, dshow/wmv) or "format" (mfplat, GStreamer). Is there a motivation for this?