Mentions légales du service

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

Big refactoring of the code

parent 90c389dc
No related branches found
No related tags found
No related merge requests found
function p = decode(varargin) function [nbBits,peaksnr] = decode(varargin)
%DECODE Summary of this function goes here %DECODE Summary of this function goes here
% Detailed explanation goes here % Detailed explanation goes here
...@@ -27,6 +27,7 @@ disp(command) ...@@ -27,6 +27,7 @@ disp(command)
status = system(command); status = system(command);
if status, error('HEVC Error'); end if status, error('HEVC Error'); end
[nbBits,peaksnr] = HEVC.parseLog(LogFile);
end end
function argList = paramToArg(parameters,values) function argList = paramToArg(parameters,values)
......
function p = encode(varargin) function [nbBits,peaksnr] = encode(varargin)
%ENCODE Summary of this function goes here %ENCODE Summary of this function goes here
% Detailed explanation goes here % Detailed explanation goes here
...@@ -57,6 +57,7 @@ disp(command) ...@@ -57,6 +57,7 @@ disp(command)
status = system(command); status = system(command);
if status, error('HEVC Error'); end if status, error('HEVC Error'); end
[nbBits,peaksnr] = HEVC.parseLog(LogFile);
end end
function argList = paramToArg(parameters,values) function argList = paramToArg(parameters,values)
......
function p = encodedecode(varargin) function [nbBits,peaksnr] = encodedecode(varargin)
%ENCODE Summary of this function goes here %ENCODE Summary of this function goes here
% Detailed explanation goes here % Detailed explanation goes here
...@@ -57,6 +57,7 @@ disp(command) ...@@ -57,6 +57,7 @@ disp(command)
status = system(command); status = system(command);
if status, error('HEVC Error'); end if status, error('HEVC Error'); end
[nbBits,peaksnr] = HEVC.parseLog(LogFile);
end end
function argList = paramToArg(parameters,values) function argList = paramToArg(parameters,values)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment