Skip to content

Commit

Permalink
[ffNvEnc] Resolve name clash between H264 and HEVC encoders created by
Browse files Browse the repository at this point in the history
  • Loading branch information
eumagga0x2a committed Mar 9, 2021
1 parent 485cdac commit d7ecad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avidemux_plugins/ADM_videoEncoder/ffNvEnc/ffNvEncPlugin.cpp
Expand Up @@ -79,7 +79,7 @@ extern "C"

ADM_DECLARE_VIDEO_ENCODER_PREAMBLE(ADM_ffNvEncEncoder);
#ifdef H265_ENCODER
ADM_DECLARE_VIDEO_ENCODER_MAIN_EX("ffNvEnc",
ADM_DECLARE_VIDEO_ENCODER_MAIN_EX("ffNvEncHEVC",
"Nvidia HEVC",
"Nvidia hw encoder",
ffNvEncConfigure, // configuration
Expand All @@ -90,7 +90,7 @@ ADM_DECLARE_VIDEO_ENCODER_MAIN_EX("ffNvEnc",
nvEncProbe
);
#else
ADM_DECLARE_VIDEO_ENCODER_MAIN_EX("ffNvEnc",
ADM_DECLARE_VIDEO_ENCODER_MAIN_EX("ffNvEncH264",
"Nvidia H264",
"Nvidia hw encoder",
ffNvEncConfigure, // configuration
Expand Down

0 comments on commit d7ecad7

Please sign in to comment.