Remove a cast useless since r24425.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25708 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-01-13 10:01:27 +00:00
parent 56aea56fc0
commit e356da9b2f
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ DS_Filter* DS_FilterCreate(const char* dllname, const GUID* id,
for (i = 0; i < fetched; i++)
{
PIN_DIRECTION direction = -1;
array[i]->vt->QueryDirection(array[i], (PIN_DIRECTION*)&direction);
array[i]->vt->QueryDirection(array[i], &direction);
if (!This->m_pInputPin && direction == PINDIR_INPUT)
{
This->m_pInputPin = array[i];