Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d5fdb9b9 authored by DIB Elian's avatar DIB Elian
Browse files

Using +utils functions instead of +yuv

parent 79e3f3a9
No related branches found
No related tags found
No related merge requests found
...@@ -35,9 +35,9 @@ decode = p.Results.decode; ...@@ -35,9 +35,9 @@ decode = p.Results.decode;
HEVCParams.encode = encode; HEVCParams.encode = encode;
HEVCParams.decode = decode; HEVCParams.decode = decode;
HEVCParams.InputFile = yuv.params2name(refFilename,imgSize,subSamp,InputBitDepth ,'.yuv'); HEVCParams.InputFile = utils.params2name(refFilename,imgSize,imgRes,subSamp,InputBitDepth ,'yuv');
HEVCParams.ReconFile = yuv.params2name(recFilename,imgSize,subSamp,OutputBitDepth,'.yuv'); HEVCParams.ReconFile = utils.params2name(recFilename,imgSize,imgRes,subSamp,OutputBitDepth,'yuv');
HEVCParams.BitstreamFile = yuv.params2name(recFilename,imgSize,subSamp,InputBitDepth ,'.hevc'); HEVCParams.BitstreamFile = utils.params2name(recFilename,imgSize,imgRes,subSamp,InputBitDepth ,'hevc');
HEVCParams.SourceWidth = num2str(imgSize(2)); HEVCParams.SourceWidth = num2str(imgSize(2));
HEVCParams.SourceHeight = num2str(imgSize(1)); HEVCParams.SourceHeight = num2str(imgSize(1));
HEVCParams.FramesToBeEncoded = num2str(prod(imgRes)); HEVCParams.FramesToBeEncoded = num2str(prod(imgRes));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment