Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7d3fb40c authored by Elian Dib's avatar Elian Dib
Browse files

Big refactoring of the code

parent adfee306
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ p.addParameter('BitstreamFile' ,'bit.hevc',@ischar);
p.addParameter('ReconFile' ,'rec.yuv' ,@ischar);
p.addParameter('SkipFrames' ,'0' ,@ischar);
p.addParameter('WarnUnknowParameter','1' ,@ischar);
%p.addParameter('LogFile' ,'log.rtf' ,@ischar);
p.addParameter('LogFile' ,'log.rtf' ,@ischar);
% Add additional default parameters here
......@@ -21,6 +21,8 @@ results = p.Results;
parameters = fieldnames (results);
values = struct2cell(results);
LogFile = p.Results.LogFile;
argList = paramToArg(parameters,values);
command = [TAppDecoder,' ',argList];
disp(command)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment