winegstreamer: Clarify FIXME.

This commit is contained in:
Maarten Lankhorst 2010-11-07 16:18:30 +01:00 committed by Alexandre Julliard
parent 4cbce24593
commit 76a976d049
1 changed files with 2 additions and 1 deletions

View File

@ -888,7 +888,8 @@ static HRESULT GST_Connect(GSTInPin *pPin, IPin *pConnectPin, ALLOCATOR_PROPERTI
This->gstfilter = gst_element_factory_make("decodebin2", NULL);
if (!This->gstfilter) {
FIXME("Could not make source filter, are gstreamer-plugins-* installed?\n");
FIXME("Could not make source filter, are gstreamer-plugins-* installed for %u bits?\n",
8 * (int)sizeof(void*));
return E_FAIL;
}
g_signal_connect(This->gstfilter, "new-decoded-pad", G_CALLBACK(existing_new_pad), This);