Second encoder session fails to encode first frame every time
iamrohit1 opened this issue · 8 comments
After creating the second encoder, the first frame I send to it yields the following error:
Failed to create encoder (NvEncoder::NvEncoder : m_nvenc.nvEncOpenEncodeSessionEx(&encodeSessionExParams, &hEncoder) returned error 10 at g:\main repo\nvpipe\nvpipe-master\src\nvcodec\nvencoder\nvencoder.cpp:54
)
After that the rest of the frames encode, but resolution is set to 1920x1080. (I've been using 1152x648 resolution.) I tried to force an I-frame but it didnt make any difference.
I checked the error code which is nv_enc_err_out_of_memory.. I've monitored my memory on task manager and it looks completely fine.
for decoding I'm using ffplay.
This is the output from first encoder raw h264 play:
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1152x648 [SAR 1:1 DAR 16:9], 60 fps, 60 tbr, 1200k tbn, 120 tbc
nan M-V: nan fd= 3 aq= 0KB vq= 2730KB sq= 0B f=0/0
and this is the output from second encoder raw h264 play:
Input #0, h264, from 'C:\Users\ghost\Desktop\HSE_Server_CT\clientcsharp2.h264':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: h264 (High), yuv420p(progressive), 1920x1080 [SAR 1:1 DAR 16:9], 60 fps, 60 tbr, 1200k tbn, 120 tbc
nan M-V: nan fd= 4 aq= 0KB vq= 2494KB sq= 0B f=0/0
in both cases same input is being sent and same parameters are being used to initialize encoder and use it..
I've been stuck at this for a while.. thanks for your help!
Thanks for raising this issue!
It would be great if you could send me a minimal reproducer.
Which hardware are you on?
I'll get a sample code ready..
I have tried on 1080Ti and 1070
using cuda versions 9.1 and 9,2
and Nvidia 419 (on windows) and 396.54 (on ubuntu)
#include <iostream>
#include <fstream>
#include <thread>
#include <string.h>
#include <NvPipe.h>
void EncoderTask(int width, int height, std::string opFileName){
// create red image
uint8_t* frameData = (uint8_t*)malloc(width * height * 4);
uint8_t* fD = frameData;
for(int i=0;i<1152 * 648;i++){
fD[0] = 0; //B
fD[1] = 0; //G
fD[2] = 255; //R
fD[3] = 255; //A
fD+=4;
}
// Create Encoder
NvPipe* n1 = NvPipe_CreateEncoder(NVPIPE_BGRA32, NVPIPE_H264, NVPIPE_LOSSY,width * height * 32, 60);
if(n1 == NULL){
std::cout<<"Could not create encoder! \n";
return;
}
//open file to write output
std::ofstream h264w;
h264w.open(opFileName, std::ios::binary | std::ios::out);
// make video of 3600 red frames (60fps - 60 second video)
int c = 3600;
while(c-- > 0){
// output buffer
uint8_t* opBuf = (uint8_t*)malloc(width * height * 4); // max size = size of image
// encode
uint64_t l = NvPipe_Encode(n1, frameData, width * 4, opBuf, width * height * 4, width, height, true); // forcing Iframe every time;
if(l != 0){
// write output to file
h264w.write( (const char*)opBuf, l);
}else{
std::cout<< "\n Encode Failed = "<< opFileName <<" = " << NvPipe_GetError(n1);
}
delete opBuf;
}
// close output file
h264w.close();
// Delete Encoder
NvPipe_Destroy(n1);
}
int main(){
// Encoder 1
std::thread EncoderOneTask (EncoderTask, 1152, 648, "output1.h264");
// my second client connects some time after the first one(while first one is still running)
// when both threads are started at the same time they show the same behavior
std::this_thread::sleep_for (std::chrono::seconds(1));
// Encoder 2
std::thread EncoderTwoTask (EncoderTask, 1152, 648, "output2.h264");
EncoderOneTask.join();
EncoderTwoTask.join();
std::cout<<"\n--Encoder Tasks Ended --";
std::cin.ignore();
return 1;
}
Here is a simple code I wrote to replicate the error..
in this, I'm trying to encode two videos(60 seconds each at 60fps; just red color) parallely.
it outputs two .h264 files which I'm playing using FFPLAY:
ffplay -f h264 output2.h264
OS: Ubuntu
Nvidia Driver : 396.54
CUDA version: V9.1.85
GeForce GTX 1070
my output:
Encode Failed = output2.h264= Failed to create encoder (NvEncoder : m_nvenc.nvEncOpenEncodeSessionEx(&encodeSessionExParams, &hEncoder) returned error 10 at /home/ghost/Documents/NvPipe-master/src/NvCodec/NvEncoder/NvEncoder.cpp:54
)
--Encoder Tasks Ended --
Note: When I put no delay between starting the encoder threads both of them yield same error on first frame..
Hope this helps
Thanks for the reproducer!
I've just pushed an update (5426f6b), bumping to Video Codec SDK 9, and fixing the concurrency issue. I've added a "concurrent" example.
Hope this solves your issue! Feel free to reopen otherwise.
Tim
Getting the following error tying to make:
Not sure if im missing any step...
[ 7%] Building NVCC (Device) object CMakeFiles/NvPipe.dir/src/Video_Codec_SDK_9.0.20/Samples/Utils/NvPipe_generated_ColorSpace.cu.o
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(112): error: type name is not allowed
detected during instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(112): error: expected a ";"
detected during instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(115): warning: parsing restarts here after previous syntax error
detected during instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(116): error: type name is not allowed
detected during instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(116): error: expected a ";"
detected during instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(119): warning: parsing restarts here after previous syntax error
detected during instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbIntx2=uint2]"
(206): here
instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbIntx2=uint2]"
(206): here
instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbIntx2=uint2]"
(206): here
instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(298): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA32, RgbIntx2=uint2]"
(206): here
instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(299): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA32, RgbIntx2=uint2]"
(206): here
instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(299): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA32, RgbIntx2=uint2]"
(206): here
instantiation of "void Nv12ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(299): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(214): here
instantiation of "void Nv12ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(300): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(214): here
instantiation of "void Nv12ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(300): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(214): here
instantiation of "void Nv12ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(300): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(214): here
instantiation of "void Nv12ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(301): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(214): here
instantiation of "void Nv12ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(301): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(214): here
instantiation of "void Nv12ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(301): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(137): error: type name is not allowed
detected during instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(302): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(137): error: expected a ";"
detected during instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(302): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(140): warning: parsing restarts here after previous syntax error
detected during instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(302): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbIntx2=uint2]"
(222): here
instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(302): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbIntx2=uint2]"
(222): here
instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(302): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbIntx2=uint2]"
(222): here
instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(302): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA32, RgbIntx2=uint2]"
(222): here
instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(303): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA32, RgbIntx2=uint2]"
(222): here
instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(303): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA32, RgbIntx2=uint2]"
(222): here
instantiation of "void YUV444ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(303): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(230): here
instantiation of "void YUV444ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(304): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(230): here
instantiation of "void YUV444ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(304): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(230): here
instantiation of "void YUV444ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(304): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(230): here
instantiation of "void YUV444ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(305): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(230): here
instantiation of "void YUV444ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(305): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(230): here
instantiation of "void YUV444ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(305): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA32, RgbIntx2=uint2]"
(238): here
instantiation of "void P016ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(306): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA32, RgbIntx2=uint2]"
(238): here
instantiation of "void P016ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(306): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA32, RgbIntx2=uint2]"
(238): here
instantiation of "void P016ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(306): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA32, RgbIntx2=uint2]"
(238): here
instantiation of "void P016ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(307): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA32, RgbIntx2=uint2]"
(238): here
instantiation of "void P016ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(307): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA32, RgbIntx2=uint2]"
(238): here
instantiation of "void P016ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(307): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(246): here
instantiation of "void P016ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(308): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(246): here
instantiation of "void P016ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(308): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(246): here
instantiation of "void P016ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(308): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(108): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(246): here
instantiation of "void P016ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(309): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(109): warning: variable "l1" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(246): here
instantiation of "void P016ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(309): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(110): warning: variable "ch" was declared but never referenced
detected during:
instantiation of "void YuvToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(246): here
instantiation of "void P016ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(309): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA32, RgbIntx2=uint2]"
(254): here
instantiation of "void YUV444P16ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(310): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA32, RgbIntx2=uint2]"
(254): here
instantiation of "void YUV444P16ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(310): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA32, RgbIntx2=uint2]"
(254): here
instantiation of "void YUV444P16ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(310): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA32, RgbIntx2=uint2]"
(254): here
instantiation of "void YUV444P16ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(311): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA32, RgbIntx2=uint2]"
(254): here
instantiation of "void YUV444P16ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(311): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA32, RgbIntx2=uint2]"
(254): here
instantiation of "void YUV444P16ToColor32<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=RGBA32]"
(311): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(262): here
instantiation of "void YUV444P16ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(312): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(262): here
instantiation of "void YUV444P16ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(312): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(262): here
instantiation of "void YUV444P16ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=BGRA64]"
(312): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(133): warning: variable "l0" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(262): here
instantiation of "void YUV444P16ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(313): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(134): warning: variable "ch1" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(262): here
instantiation of "void YUV444P16ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(313): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(135): warning: variable "ch2" was declared but never referenced
detected during:
instantiation of "void Yuv444ToRgbKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=RGBA64, RgbIntx2=ulonglong2]"
(262): here
instantiation of "void YUV444P16ToColor64<COLOR64>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR64=RGBA64]"
(313): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(163): error: type name is not allowed
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(163): error: expected a ";"
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(164): error: type name is not allowed
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(164): error: expected a ";"
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(166): error: type name is not allowed
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(166): error: expected a ";"
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(167): error: type name is not allowed
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(167): error: expected a ";"
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(169): error: type name is not allowed
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(169): error: expected a ";"
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(170): error: type name is not allowed
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(170): error: expected a ";"
detected during instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(83): warning: list initialization syntax is a C++11 feature
detected during:
instantiation of "void YuvToRgbPlanarKernel<YuvUnitx2,Rgb,RgbUnitx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=uchar2, Rgb=BGRA32, RgbUnitx2=uchar2]"
(270): here
instantiation of "void Nv12ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(314): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(192): error: type name is not allowed
detected during instantiation of "void YUV444ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(318): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(192): error: expected a ";"
detected during instantiation of "void YUV444ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(318): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(195): error: type name is not allowed
detected during instantiation of "void YUV444ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(318): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(195): error: expected a ";"
detected during instantiation of "void YUV444ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(318): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(198): error: type name is not allowed
detected during instantiation of "void YUV444ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(318): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(198): error: expected a ";"
detected during instantiation of "void YUV444ToColorPlanar<COLOR32>(uint8_t *, int, uint8_t *, int, int, int, int) [with COLOR32=BGRA32]"
(318): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(355): error: expected a ";"
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(360): error: type name is not allowed
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(360): error: expected a ";"
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(363): warning: parsing restarts here after previous syntax error
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(364): error: type name is not allowed
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(364): error: expected a ";"
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(367): warning: parsing restarts here after previous syntax error
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(368): error: type name is not allowed
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(368): error: expected a ";"
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(371): warning: parsing restarts here after previous syntax error
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(354): error: a nonstatic member reference must be relative to a specific object
detected during instantiation of "void RgbToYuvKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(376): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(354): error: identifier "decltype" is undefined
detected during instantiation of "void RgbToYuvKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(376): here
/home/ghost/Documents/NvPipe-master/src/Video_Codec_SDK_9.0.20/Samples/Utils/ColorSpace.cu(353): warning: variable "rgb" was declared but never referenced
detected during instantiation of "void RgbToYuvKernel<YuvUnitx2,Rgb,RgbIntx2>(uint8_t *, int, uint8_t *, int, int, int) [with YuvUnitx2=ushort2, Rgb=BGRA64, RgbIntx2=ulonglong2]"
(376): here
33 errors detected in the compilation of "/tmp/tmpxft_00000f2e_00000000-6_ColorSpace.cpp1.ii".
CMake Error at NvPipe_generated_ColorSpace.cu.o.cmake:266 (message):
Error generating file
/home/ghost/Documents/NvPipe-master/build/CMakeFiles/NvPipe.dir/src/Video_Codec_SDK_9.0.20/Samples/Utils/./NvPipe_generated_ColorSpace.cu.o
CMakeFiles/NvPipe.dir/build.make:70: recipe for target 'CMakeFiles/NvPipe.dir/src/Video_Codec_SDK_9.0.20/Samples/Utils/NvPipe_generated_ColorSpace.cu.o' failed
make[2]: *** [CMakeFiles/NvPipe.dir/src/Video_Codec_SDK_9.0.20/Samples/Utils/NvPipe_generated_ColorSpace.cu.o] Error 1
CMakeFiles/Makefile2:178: recipe for target 'CMakeFiles/NvPipe.dir/all' failed
make[1]: *** [CMakeFiles/NvPipe.dir/all] Error 2
Makefile:127: recipe for target 'all' failed
make: *** [all] Error 2
Can you please try re-adding list(APPEND CUDA_NVCC_FLAGS "-std=c++11")
to CMakeLists.txt?
Video Codec SDK 9 requires CUDA 10. Can you please upgrade and try again?