Skip to content

Commit

Permalink
MMC redo menus
Browse files Browse the repository at this point in the history
  • Loading branch information
junh1024 committed May 20, 2021
1 parent 8b9dae2 commit 4223681
Showing 1 changed file with 31 additions and 13 deletions.
44 changes: 31 additions & 13 deletions Converters/Multi Mix Convert (L).txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ desc:Multi-format surround converter in ALPHA. Pan law -3dB.
// s10 upmix


slider1:15<0,23,1{x,2.0 Stereo,x,4.0 Quad,5.1/3.0 (Film),5.1 (SMPTE),5.1.2 (SMPTE),7.1 (SMPTE-MS),5.1.4/5.1.6 Auro-3D (SMPTE),7.1.2/7.1 Atmos Base (SMPTE-Dolby),7.1.4/7.1 DTS-X (SMPTE-Dolby),7.1.4/7.1 MPEG-H (SMPTE-MS),13,14,9.1.6 Atmos CBA (SMPTE-Dolby),15.1 junh1024 (SMPTE-MS),17,18,19,20,21,22,23,22.2 NHK}>Input layout
slider2:14<0,23,1{x,2.0 Stereo,x,4,5,5.1 (SMPTE),5.1.2 (SMPTE),7.1 (SMPTE-MS),5.1.4/5.1.6 Auro-3D (SMPTE),7.1.2/7.1 Atmos Base (SMPTE-Dolby),7.1.4/7.1 DTS-X (SMPTE-Dolby),7.1.4/7.1 MPEG-H (SMPTE-MS),13,14,9.1.6 Atmos CBA (SMPTE-Dolby),15.1 junh1024 (SMPTE-MS),17,18,19,20,21,22,23,22.2 NHK}>Output layout
slider1:15<0,23,1{x,2.0 Stereo,5.1/3.0 (Film),4.0 Quad,5.1 (SMPTE),5.1.2 (SMPTE),7.1 (SMPTE-Dolby),7.1 (SMPTE-MS),5.1.4/5.1.6 Auro-3D (SMPTE),7.1.2/7.1 Atmos Base (SMPTE-Dolby),7.1.4 DTS-X (SMPTE-Dolby),7.1.4 MPEG-H (SMPTE-MS),13,14,9.1.6 Atmos CBA (SMPTE-Dolby),15.1 junh1024 (SMPTE-MS),17,18,19,20,21,22,23,22.2 NHK}>Input layout
slider2:14<0,23,1{x,2.0 Stereo,x,4,5.1 (SMPTE),5.1.2 (SMPTE),7.1 (SMPTE-Dolby),7.1 (SMPTE-MS),5.1.4/5.1.6 Auro-3D (SMPTE),7.1.2/7.1 Atmos Base (SMPTE-Dolby),7.1.4 DTS-X (SMPTE-Dolby),7.1.4 MPEG-H (SMPTE-MS),13,14,9.1.6 Atmos CBA (SMPTE-Dolby),15.1 junh1024 (SMPTE-MS),17 Reserved,18 Reserved,19,20,21 Reserved,22 Reserved,23 Reserved,22.2 NHK}>Output layout
slider3:75<0,100 ,1>Height height
slider4:0<0,100 ,1>ELL height
slider5:0<-100,100,1>Top Side Depth (+ve is front)
Expand Down Expand Up @@ -136,16 +136,10 @@ mode_out=slider2+1;

@sample

//40quad
mode_in==4?
(
spl4=spl2;
spl5=spl3;
spl2=spl3=0;
);


//51 film
mode_in==5?
mode_in==3?
(
in0 = spl0 ;
in1 = spl1 ;
Expand All @@ -162,8 +156,16 @@ mode_in==5?
spl5 = in4 ;
);

//40quad
mode_in==4?
(
spl4=spl2;
spl5=spl3;
spl2=spl3=0;
);

//512
mode_in==7?
mode_in==6?
(
spl14 =spl6;
spl15 =spl7;
Expand All @@ -174,6 +176,14 @@ mode_in==7?

);

//71sb
mode_in==7?
(
swap_Side_Back_ELL();
);



//514/516
mode_in==9?
(
Expand Down Expand Up @@ -336,7 +346,7 @@ rear_width(R_width_coeff);
);

//51b
mode_out==6?
mode_out==5?
(
downmix_151_71_v1();
silence_top_layer_151();
Expand All @@ -346,7 +356,7 @@ mode_out==6?
);

//512sh
mode_out==7?
mode_out==6?
(
spl6=0;
spl7=0;
Expand All @@ -357,6 +367,14 @@ mode_out==7?
silence_top_layer_151() ;
);

//71sb
mode_out==7?
(
swap_Side_Back_ELL();
downmix_151_71_v1();
silence_top_layer_151();
);

//71b
mode_out==8?
(
Expand Down

0 comments on commit 4223681

Please sign in to comment.