[MPlayer-cvslog] r25105 - trunk/stream/tvi_dshow.c

voroshil subversion at mplayerhq.hu
Mon Nov 19 10:05:24 CET 2007


Author: voroshil
Date: Mon Nov 19 10:05:23 2007
New Revision: 25105

Log:
100l: Fix long standing copy-paste error:
TUN_SET_NORM should set norm value not get it.


Modified:
   trunk/stream/tvi_dshow.c

Modified: trunk/stream/tvi_dshow.c
==============================================================================
--- trunk/stream/tvi_dshow.c	(original)
+++ trunk/stream/tvi_dshow.c	Mon Nov 19 10:05:23 2007
@@ -3371,7 +3371,7 @@ static int control(priv_t * priv, int cm
 	    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);



More information about the MPlayer-cvslog mailing list