From d5fdb9b9505feaa32b299f6acae02eb63d00f3fc Mon Sep 17 00:00:00 2001
From: Elian Dib <elian.dib@inria.fr>
Date: Fri, 9 Aug 2019 19:31:05 +0200
Subject: [PATCH] Using +utils functions instead of +yuv

---
 LFtoHEVC.m | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/LFtoHEVC.m b/LFtoHEVC.m
index 42c829f..d2be53c 100644
--- a/LFtoHEVC.m
+++ b/LFtoHEVC.m
@@ -35,9 +35,9 @@ decode         = p.Results.decode;
 HEVCParams.encode = encode;
 HEVCParams.decode = decode;
 
-HEVCParams.InputFile     = yuv.params2name(refFilename,imgSize,subSamp,InputBitDepth ,'.yuv');
-HEVCParams.ReconFile     = yuv.params2name(recFilename,imgSize,subSamp,OutputBitDepth,'.yuv');
-HEVCParams.BitstreamFile = yuv.params2name(recFilename,imgSize,subSamp,InputBitDepth ,'.hevc');
+HEVCParams.InputFile     = utils.params2name(refFilename,imgSize,imgRes,subSamp,InputBitDepth ,'yuv');
+HEVCParams.ReconFile     = utils.params2name(recFilename,imgSize,imgRes,subSamp,OutputBitDepth,'yuv');
+HEVCParams.BitstreamFile = utils.params2name(recFilename,imgSize,imgRes,subSamp,InputBitDepth ,'hevc');
 HEVCParams.SourceWidth   = num2str(imgSize(2));
 HEVCParams.SourceHeight  = num2str(imgSize(1));
 HEVCParams.FramesToBeEncoded = num2str(prod(imgRes));
-- 
GitLab