1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-03 13:41:49 +00:00

cosmetics: Fix silly typo.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24414 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-09-10 13:30:22 +00:00
parent 0c4d465c19
commit 4b3a9ce83e

View File

@ -408,7 +408,7 @@ int DS_VideoDecoder_SetDestFmt(DS_VideoDecoder *this, int bits, unsigned int csp
HRESULT result; HRESULT result;
ALLOCATOR_PROPERTIES props,props1; ALLOCATOR_PROPERTIES props,props1;
int should_test=1; int should_test=1;
int stoped = 0; int stopped = 0;
Debug printf("DS_VideoDecoder_SetDestFmt (%p, %d, %d)\n",this,bits,(int)csp); Debug printf("DS_VideoDecoder_SetDestFmt (%p, %d, %d)\n",this,bits,(int)csp);
@ -584,7 +584,7 @@ int DS_VideoDecoder_SetDestFmt(DS_VideoDecoder *this, int bits, unsigned int csp
{ {
DS_VideoDecoder_StopInternal(this); DS_VideoDecoder_StopInternal(this);
this->iv.m_State = STOP; this->iv.m_State = STOP;
stoped = true; stopped = true;
} }
this->m_pDS_Filter->m_pInputPin->vt->Disconnect(this->m_pDS_Filter->m_pInputPin); this->m_pDS_Filter->m_pInputPin->vt->Disconnect(this->m_pDS_Filter->m_pInputPin);
@ -625,7 +625,7 @@ int DS_VideoDecoder_SetDestFmt(DS_VideoDecoder *this, int bits, unsigned int csp
return -1; return -1;
} }
if (stoped) if (stopped)
{ {
DS_VideoDecoder_StartInternal(this); DS_VideoDecoder_StartInternal(this);
this->iv.m_State = START; this->iv.m_State = START;