Intel QuickSync Error 14

Discussing about advanced video encoding techniques including GPU encoding, distributive encoding and segmental encoding. Topics are not limited to MediaCoder.
Post Reply
briantokyo
Beginner
Beginner
Posts: 4
Joined: Tue Oct 06, 2009 3:12 am

Intel QuickSync Error 14

Post by briantokyo » Mon May 21, 2012 4:34 pm

Ok, after about a year and various short attempts at trying to get QS to work, I decided it's time to get to the root of it and get this going. I've been testing and reading here and there for MANY hours now, and still unable to use this crap. Review of my system:

- Asus P8Z68-V PRO
- Intel Core i5 2500K
- GTX470 Discrete videocard as main
- iGPU settings correct in BIOS
- Using 3 screens: 2 with the GTX470 as the main video adapter, and a 3rd through the on-board HDMI port for the Intel HD3000 graphics from the CPU. All working fine at the same time in multiscreen setup:

Image

- Windows 7 x64 SP1
- Lucid Virtu installed, latest version
- HD3000 driver latest version

- Both MediaCoder 32 and x64 versions installed and tried
- Intel option checked during install
- imsdkenc.exe DOES EXIST in the codecs/codecs64 folder, and the path to it is correct under Advanced options
- Intel Media SDK 2012 installed, both 32 and 64 bit versions

Image

Virtu enabled and all applications added:

Image
Image

Various tests:

- MediaCoder 32 and 64 bit, always return Error Code 14
- Media Espresso: says nothing about QuickSync
- ArcSoft Media Converter 7.5: shows only "None" and "NVIDIA CUDA" under Hardware-Acceleration
- Intel Media SDK encoder sample: works in software mode. with -hw parameter I get: (compiled the sample myself)
Return on error: error code -3, c:\program files\intel\media sdk 2012 r2\samples\sample_encode\src\pipeline_encode.cpp 859
Return on error: error code 1, c:\program files\intel\media sdk 2012 r2\samples\sample_encode\src\sample_encode.cpp 334
Which in the source code both correspond to:

Code: Select all

// init session
    mfxIMPL impl = pParams->bUseHWLib ? MFX_IMPL_HARDWARE : MFX_IMPL_SOFTWARE;
    
    mfxVersion ver = {0, 1};
    mfxVersion verMVC = {3, 1};
    mfxVersion verMVCViewOutput = {4, 1};
    mfxVersion version;
    version = (MVC_ENABLED & m_MVCflags) ? verMVC : ver; // API 1.0 is enough for this pipeline if NOT MVC

    // check if "ViewOutput" mode was requested
    if (MVC_VIEWOUTPUT & m_MVCflags)
        version = verMVCViewOutput;
    
    if (MFX_IMPL_HARDWARE == impl)
    {
        // try searching on all display adapters
        // if the MSDK API version doesn't support multiple adapters try initialize on the default
        if (MFX_ERR_NONE != m_mfxSession.Init(MFX_IMPL_HARDWARE_ANY, &version))
            sts = m_mfxSession.Init(MFX_IMPL_HARDWARE, &version);                     
    }
    else
        sts = m_mfxSession.Init(MFX_IMPL_SOFTWARE, &version);

MSDK_CHECK_RESULT(sts, MFX_ERR_NONE, sts);

Code: Select all

sts = pPipeline->Init(&Params);
MSDK_CHECK_RESULT(sts, MFX_ERR_NONE, 1);   



So, what's next to try/check/troubleshoot?

Avi
Amateur
Amateur
Posts: 32
Joined: Fri Apr 06, 2012 8:00 am

Re: Intel QuickSync Error 14

Post by Avi » Wed May 23, 2012 9:53 am

Are you sure you are using the most recent version of the Intel drivers? I thought I was, but it turns out that I was using version 8.15.10.2653. Updating it to 8.15.10.2656 allowed the Intel encoder to work properly.

briantokyo
Beginner
Beginner
Posts: 4
Joined: Tue Oct 06, 2009 3:12 am

Re: Intel QuickSync Error 14

Post by briantokyo » Wed May 23, 2012 10:20 am

yes

Image

chairface
Beginner
Beginner
Posts: 1
Joined: Fri May 25, 2012 4:44 pm

Re: Intel QuickSync Error 14

Post by chairface » Fri May 25, 2012 4:45 pm

Have gone through the same steps, and running into the exact same issue..

briantokyo
Beginner
Beginner
Posts: 4
Joined: Tue Oct 06, 2009 3:12 am

Re: Intel QuickSync Error 14

Post by briantokyo » Mon Jun 11, 2012 6:21 pm

I sort of fixed it, turns out it doesn't work if you update the onboard video drivers from Windows Update; reinstalling the drivers by downloading the package from Intel site fixed it.

Avi
Amateur
Amateur
Posts: 32
Joined: Fri Apr 06, 2012 8:00 am

Re: Intel QuickSync Error 14

Post by Avi » Thu Jun 14, 2012 11:59 am

briantokyo wrote:I sort of fixed it, turns out it doesn't work if you update the onboard video drivers from Windows Update; reinstalling the drivers by downloading the package from Intel site fixed it.
That's how I updated the drivers too, but I didn't realize that made a difference. Thanks for posting!

cordsally
Amateur
Amateur
Posts: 20
Joined: Fri Jun 01, 2012 7:43 pm
Contact:

Re: Intel QuickSync Error 14

Post by cordsally » Thu Jun 14, 2012 4:40 pm

Awesome feedback! :P

Post Reply