ENH: explicitly declared outputFilename to surpress error C2668
authorYang Fan <stoneyang0915@gmail.com>
Tue, 14 Apr 2015 05:39:00 +0000 (13:39 +0800)
committerYang Fan <stoneyang0915@gmail.com>
Tue, 14 Apr 2015 05:39:14 +0000 (13:39 +0800)
samples/gpu/video_writer.cpp

index 5a48c69..6c5d141 100644 (file)
@@ -69,7 +69,8 @@ int main(int argc, const char* argv[])
         {
             std::cout << "Open CUDA Writer" << std::endl;
 
-            d_writer = cv::cudacodec::createVideoWriter("output_gpu.avi", frame.size(), FPS);
+            const cv::String outputFilename = "output_gpu.avi";
+            d_writer = cv::cudacodec::createVideoWriter(outputFilename, frame.size(), FPS);
         }
 
         d_frame.upload(frame);