Skip to content

Commit

Permalink
Merge pull request #1 from osamu620/develop
Browse files Browse the repository at this point in the history
Fix files for mex generation
  • Loading branch information
osamu620 authored Jul 23, 2020
2 parents 64a92f2 + 3938d24 commit 1f412c0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion source/MEX/HT_block_decode_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
ARGS{1}{2} = coder.typeof(int32(0));

%% Invoke MATLAB Coder.
cd('/Users/osamu/Documents/MatHTJ2K/source/HTcodec/decoder');
cd('./HTcodec/decoder');
codegen -config cfg HT_block_decode -args ARGS{1} -nargout 2
2 changes: 1 addition & 1 deletion source/MEX/HT_block_encode_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
ARGS{1}{3} = coder.typeof(uint16(0));

%% Invoke MATLAB Coder.
cd('/Users/osamu/Documents/MatHTJ2K/source/HTcodec/encoder');
cd('./HTcodec/encoder');
codegen -config cfg HT_block_encode -args ARGS{1} -nargout 3
2 changes: 1 addition & 1 deletion source/MEX/fdwt_2d_sd_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
ARGS{1}{6} = coder.typeof(uint8(0));

%% Invoke MATLAB Coder.
cd('/Users/osamu/Documents/MatHTJ2K/source/dwt');
cd('./dwt');
codegen -config cfg fdwt_2d_sd -args ARGS{1} -nargout 4
2 changes: 1 addition & 1 deletion source/MEX/idwt_2d_sr_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
ARGS{1}{9} = coder.typeof(uint8(0));

%% Invoke MATLAB Coder.
cd('/Users/osamu/Documents/MatHTJ2K/source/dwt');
cd('./dwt');
codegen -config cfg idwt_2d_sr -args ARGS{1} -nargout 1
2 changes: 1 addition & 1 deletion source/MEX/j2k_block_decoder_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@
ARGS{1}{2} = coder.typeof(int32(0));

%% Invoke MATLAB Coder.
cd('/Users/osamu/Documents/MatHTJ2K/source/Tier1');
cd('./Tier1');
codegen -config cfg j2k_block_decoder -args ARGS{1} -nargout 2
2 changes: 1 addition & 1 deletion source/MEX/j2k_block_encoder_v_script.m
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@
ARGS{1}{3} = coder.typeof(0);

%% Invoke MATLAB Coder.
cd('/Users/osamu/Documents/MatHTJ2K/source/Tier1');
cd('./Tier1');
codegen -config cfg j2k_block_encoder_v -args ARGS{1} -nargout 1

0 comments on commit 1f412c0

Please sign in to comment.