Mentions légales du service

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

WIP

parent 2772d174
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,9 @@ if encode
HEVCp.addParameter('ReconFile', 'rec.yuv' , @ischar);
end
elseif decode
HEVCp.addParameter('BitstreamFile', 'bit.hevc', @ischar);
HEVCp.addParameter('ReconFile' , 'rec.yuv' , @ischar);
HEVCp.addParameter('BitstreamFile' , 'bit.hevc', @ischar);
HEVCp.addParameter('ReconFile' , 'rec.yuv' , @ischar);
HEVCp.addParameter('OutputBitDepth', '0' , @ischar);
end
%% Parse HEVC arguments
......@@ -94,8 +95,11 @@ elseif decode
redirectLog = redirect(LogFileDec);
end
command = ['"' TApp,'" ',HEVCArgList,' ',extraHEVCArgList,' ',redirectLog];
if encode
command = ['"' TApp,'" ',HEVCArgList,' ',extraHEVCArgList,' ',redirectLog];
elseif decode
command = ['"' TApp,'" ',HEVCArgList,' ',redirectLog];
end
% Execute command
disp(command)
status = system(command);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment