Windows 10: Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264.

Discus and support Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264. in Windows 10 Gaming to solve the problem; I am new to D3D12 and DirectX12 programming. I am trying to used Video decode and encode API. Getting the following error unresolved external symbol... Discussion in 'Windows 10 Gaming' started by Mrutyunjay Wanjerkhede, Nov 15, 2024.

  1. Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264.


    I am new to D3D12 and DirectX12 programming. I am trying to used Video decode and encode API. Getting the following error unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264. My sample code is as follows. It will be helpful with a code samples on how to use Video APIs in D3D12.#include <d3d12.h>#include <d3d12video.h>#include <dxgi1_4.h>#include <wrl.h>using namespace Microsoft::WRL;int main{ // Create a Direct3D 12 device ComPtr<ID3D12Device> d3d12Device; D3D12CreateDevicenullptr, D3D

    :)
     
    Mrutyunjay Wanjerkhede, Nov 15, 2024
    #1
  2. singania Win User

    unresolved external symbol linker error in visual studio 2017

    #include "Miniport.h"

    DRIVEREXTN DriverExtn;

    NDIS_HANDLE Handle;

    NDIS_STATUS DriverEntry(

    _In_ PVOID DriverObject,

    _In_ PVOID RegistryPath

    )

    {

    NDIS_STATUS Status = NDIS_STATUS_SUCCESS;

    NDIS_MINIPORT_DRIVER_CHARACTERISTICS MPChar;

    NdisZeroMemory(&MPChar, sizeof(MPChar));

    MPChar.Header.Type = NDIS_OBJECT_TYPE_MINIPORT_DRIVER_CHARACTERISTICS;

    MPChar.Header.Size = NDIS_SIZEOF_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_3;

    MPChar.Header.Revision = NDIS_MINIPORT_DRIVER_CHARACTERISTICS_REVISION_3;

    MPChar.MajorNdisVersion = NDIS_MAJOR_VERSION;

    MPChar.MinorNdisVersion = NDIS_MINOR_VERSION;

    MPChar.MajorDriverVersion = MAJOR_DRIVER_VERSION;

    MPChar.MinorDriverVersion = MINOR_DRIVER_VERISON;

    MPChar.Flags = 0;

    #if 0

    MPChar.SetOptionsHandler = NULL;

    MPChar.InitializeHandlerEx = MPInitializeEx;

    MPChar.HaltHandlerEx = MPHaltEx;

    MPChar.UnloadHandler = DriverUnload;

    MPChar.PauseHandler = MPPause;

    MPChar.RestartHandler = MPRestart;

    MPChar.OidRequestHandler = MPOidRequest;

    MPChar.SendNetBufferListsHandler = MPSendNetBufferLists;

    MPChar.ReturnNetBufferListsHandler = MPReturnNetBufferLists;

    MPChar.CancelSendHandler = MPCancelSend;

    MPChar.CheckForHangHandlerEx = NULL;

    MPChar.ResetHandlerEx = NULL;

    MPChar.DevicePnPEventNotifyHandler = MPDevicePnpEventNotify;

    MPChar.ShutdownHandlerEx = MPShutdownEx;

    MPChar.CancelOidRequestHandler = MPCancelOidRequest;

    MPChar.SynchronousOidRequestHandler = MPSynchronousOidRequest;

    #endif

    Status = NdisMRegisterMiniportDriver(DriverObject,

    RegistryPath,

    &DriverExtn,

    &MPChar,

    &Handle);

    if (Status != NDIS_STATUS_SUCCESS) {

    DriverUnload(DriverObject);

    return Status;

    }

    DriverExtn.Flags |= NDIS_REGISTER_SUCCESS;

    return Status;

    }

    VOID DriverUnload(

    _In_ PDRIVER_OBJECT DriverObject

    )

    {

    UNREFERENCED_PARAMETER(DriverObject);

    if (DriverExtn.Flags & NDIS_REGISTER_SUCCESS) {

    NdisMDeregisterMiniportDriver(Handle);

    }

    }

    Compilation on visual studio 2017(professional) throws linker error

    Error LNK2019 unresolved external symbol NdisMRegisterMiniportDriver referenced in function DriverEntry

    Error LNK2019 unresolved external symbol NdisMDeregisterMiniportDriver referenced in function DriverUnload

    Error LNK1120 2 unresolved externals Miniport

    Using WDK10 and ndis.h is included in Miniport.h. What could be the issue?Any helpful information is much appreciated.

    [Moved from: Windows / Windows 10 / Devices & drivers]
     
    singania, Nov 15, 2024
    #2
  3. pepanee Win User
    Can't get Youtube to show videos in Chrome

    Load this checklist video in Edge: (I'm assuming you did at least a few of these steps, since you stated you tried other suggestions earlier) Go through the list of suggestions here to try to repair YouTube for Chrome...
     
    pepanee, Nov 15, 2024
    #3
  4. Nisko Win User

    Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264.

    Can't get Youtube to show videos in Chrome

    I haven't gotteen to this suggestion yet - but, I've shut down half my Extensions and, now, I get the voice of the Youtube videos - but still not the video. Thought this clue might help.
     
    Nisko, Nov 15, 2024
    #4
Thema:

Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264.

Loading...
  1. Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264. - Similar Threads - Directx12 Video decoding

  2. Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264.

    in Windows 10 Software and Apps
    Directx12 Video decoding: unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264.: I am new to D3D12 and DirectX12 programming. I am trying to used Video decode and encode API. Getting the following error unresolved external symbol D3D12_VIDEO_DECODE_PROFILE_H264. My sample code is as follows. It will be helpful with a code samples on how to use Video APIs...
  3. Video decoding stops in video players when resized

    in Windows 10 Gaming
    Video decoding stops in video players when resized: So here's the issue and what I've done to try to fix itand failed. Issue: In multiple video players, possibly unimportant, but they are UWPACG Player, and Windows Medias Playerthe new official windows 11 uwp version, but not all UWP players have this issue. When watching any...
  4. Video decoding stops in video players when resized

    in Windows 10 Software and Apps
    Video decoding stops in video players when resized: So here's the issue and what I've done to try to fix itand failed. Issue: In multiple video players, possibly unimportant, but they are UWPACG Player, and Windows Medias Playerthe new official windows 11 uwp version, but not all UWP players have this issue. When watching any...
  5. Directx12

    in Windows 10 Software and Apps
    Directx12: So I tried overclocking my pc several months ago and then ended up undoing that but ever since then my pc hasn't let me play any games like Apex, Fortnite, COD, Halo or any of that. The only game's I have really been able to play is Rocket League and Valorant. Curious to know...
  6. Game bar Error: video could not be decoded

    in Windows 10 Ask Insider
    Game bar Error: video could not be decoded: It was working fine before but now any news clips I make it will say error could not be decoded. I can open the mp4 no problem. I did not install anything. I troubleshooted the app, reset it and made sure my drivers were up to date but still not working. submitted by...
  7. Decoding

    in Windows 10 Software and Apps
    Decoding: HELP! I have old recipes saved on my computer that I transferred a long time ago from a flash drive. They are on notepad. When I try to open them, they are all in a weird code. Am I able to fix this? Thanks in advance!...
  8. decode

    in Windows 10 Software and Apps
    decode: I saved a poem I wrote on notpad then saved it to a flash drive. when I tried to open it again it was in a code I don't know how to fix this problem cane someone help me...
  9. unresolved external symbol linker error in visual studio 2017

    in Windows 10 Software and Apps
    unresolved external symbol linker error in visual studio 2017: #include "Miniport.h" DRIVEREXTN DriverExtn; NDIS_HANDLE Handle; NDIS_STATUS DriverEntry( _In_ PVOID DriverObject, _In_ PVOID RegistryPath ) { NDIS_STATUS Status = NDIS_STATUS_SUCCESS; NDIS_MINIPORT_DRIVER_CHARACTERISTICS MPChar; NdisZeroMemory(&MPChar, sizeof(MPChar));...
  10. unresolved external symbol linker error in visual studio 2017

    in Windows 10 Drivers and Hardware
    unresolved external symbol linker error in visual studio 2017: #include "Miniport.h" DRIVEREXTN DriverExtn; NDIS_HANDLE Handle; NDIS_STATUS DriverEntry( _In_ PVOID DriverObject, _In_ PVOID RegistryPath ) { NDIS_STATUS Status = NDIS_STATUS_SUCCESS; NDIS_MINIPORT_DRIVER_CHARACTERISTICS MPChar; NdisZeroMemory(&MPChar, sizeof(MPChar));...