3s3s / lavfilters

Automatically exported from code.google.com/p/lavfilters
GNU General Public License v2.0
0 stars 0 forks source link

HWAccel_CUDA #185

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,my program follow:
AddFilterByCLSID(m_pGraphBuilder, CLSID_LAVFilter, L"LAV Decoder", 
&m_pVideoDecFilter)
ILAVVideoSettings * pLavVideoSetting = NULL;
    m_pVideoDecFilter->QueryInterface(IID_ILAVVideoSettings, (PVOID *)&pLavVideoSetting); 
    DWORD r = pLavVideoSetting->CheckHWAccelSupport(HWAccel_CUDA);
    pLavVideoSetting->SetHWAccel(HWAccel_None/*HWAccel_CUDA*/);
    pLavVideoSetting->SetNumThreads(4);

when play live source is no Smooth.why?

Original issue reported on code.google.com by zhaoyiy...@gmail.com on 7 Feb 2012 at 4:00

GoogleCodeExporter commented 9 years ago
live source is 1920*1080 h264,thanks

Original comment by zhaoyiy...@gmail.com on 7 Feb 2012 at 4:05

GoogleCodeExporter commented 9 years ago
The only reason why H264 would not be smooth is either if your system is too 
slow, or the source is not sending correct timestamps. Without knowing what 
source (and possibly having access to it), i cannot comment any further.

Original comment by h.lepp...@gmail.com on 7 Feb 2012 at 2:08