summaryrefslogtreecommitdiffstats
path: root/loader
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 13:30:22 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-10 13:30:22 +0000
commit4b3a9ce83ec61cf9ad9f5eea38b353972e29db86 (patch)
treefeda07d7b99f139d48d965dc1336666f0f131694 /loader
parent0c4d465c1939ea9fe34bbde7fcdea15d8ec074ef (diff)
downloadmpv-4b3a9ce83ec61cf9ad9f5eea38b353972e29db86.tar.bz2
mpv-4b3a9ce83ec61cf9ad9f5eea38b353972e29db86.tar.xz
cosmetics: Fix silly typo.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24414 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'loader')
-rw-r--r--loader/dshow/DS_VideoDecoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loader/dshow/DS_VideoDecoder.c b/loader/dshow/DS_VideoDecoder.c
index 5ea3eb8b6e..01b342a267 100644
--- a/loader/dshow/DS_VideoDecoder.c
+++ b/loader/dshow/DS_VideoDecoder.c
@@ -408,7 +408,7 @@ int DS_VideoDecoder_SetDestFmt(DS_VideoDecoder *this, int bits, unsigned int csp
HRESULT result;
ALLOCATOR_PROPERTIES props,props1;
int should_test=1;
- int stoped = 0;
+ int stopped = 0;
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);
this->iv.m_State = STOP;
- stoped = true;
+ stopped = true;
}
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;
}
- if (stoped)
+ if (stopped)
{
DS_VideoDecoder_StartInternal(this);
this->iv.m_State = START;