Nikolay Sivov (@nsivov) commented about dlls/mfplat/mediatype.c:
{
- FIXME("%p, %s, %p.\n", iface, debugstr_guid(&guid), representation);
- return E_NOTIMPL;
- TRACE("%p, %s, %p.\n", iface, debugstr_guid(&guid), representation);
- return mediatype_GetRepresentation((IMFMediaType *)iface, guid, representation);
}
static HRESULT WINAPI video_mediatype_FreeRepresentation(IMFVideoMediaType *iface, GUID guid, void *representation) {
- FIXME("%p, %s, %p.\n", iface, debugstr_guid(&guid), representation);
- return E_NOTIMPL;
- TRACE("%p, %s, %p.\n", iface, debugstr_guid(&guid), representation);
- return mediatype_FreeRepresentation((IMFMediaType *)iface, guid, representation);
}
Do those accept audio formats actually? Same for audio_mediatype_* vs video formats.