summaryrefslogtreecommitdiffstats
path: root/stream/tvi_dshow.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-19 09:05:23 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-11-19 09:05:23 +0000
commitc30eaa2029e3a415ecce802fc3b9bd7df97f1b7c (patch)
tree612b25b082f04e5b8e1ea25f68bdba602a1a6e71 /stream/tvi_dshow.c
parentce11ba5de5b6a9c03d405d515b60e386e7b0937f (diff)
downloadmpv-c30eaa2029e3a415ecce802fc3b9bd7df97f1b7c.tar.bz2
mpv-c30eaa2029e3a415ecce802fc3b9bd7df97f1b7c.tar.xz
100l: Fix long standing copy-paste error:
TUN_SET_NORM should set norm value not get it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25105 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tvi_dshow.c')
-rw-r--r--stream/tvi_dshow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/tvi_dshow.c b/stream/tvi_dshow.c
index 1e7396a4f3..049451b450 100644
--- a/stream/tvi_dshow.c
+++ b/stream/tvi_dshow.c
@@ -3371,7 +3371,7 @@ static int control(priv_t * priv, int cmd, void *arg)
hr = OLE_QUERYINTERFACE(priv->pVideoFilter,IID_IAMAnalogVideoDecoder, pVD);
if (hr != S_OK)
return TVI_CONTROL_FALSE;
- hr = OLE_CALL_ARGS(pVD, get_TVFormat, &lAnalogFormat);
+ hr = OLE_CALL_ARGS(pVD, put_TVFormat, lAnalogFormat);
OLE_RELEASE_SAFE(pVD);
if (FAILED(hr))
return (TVI_CONTROL_FALSE);