X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fupmixer_a.cc;h=a01ff30bb40f39dfbd2e6199e152a1513de6d549;hb=5b3e3df6c9352e31dd932a5af215eabbf2cf27c8;hp=1edc0104db5337b6583addc9f396f354e48481ab;hpb=fa61fc99549264810e17fcd35abffe9e8ddab5b2;p=dcpomatic.git diff --git a/src/lib/upmixer_a.cc b/src/lib/upmixer_a.cc index 1edc0104d..a01ff30bb 100644 --- a/src/lib/upmixer_a.cc +++ b/src/lib/upmixer_a.cc @@ -31,8 +31,8 @@ using boost::shared_ptr; UpmixerA::UpmixerA (int sampling_rate) : _left (0.02, 1900.0 / sampling_rate, 4800.0 / sampling_rate) , _right (0.02, 1900.0 / sampling_rate, 4800.0 / sampling_rate) - , _centre (0.02, 150.0 / sampling_rate, 1900.0 / sampling_rate) - , _lfe (0.02, 20.0 / sampling_rate, 150.0 / sampling_rate) + , _centre (0.01, 150.0 / sampling_rate, 1900.0 / sampling_rate) + , _lfe (0.01, 150.0 / sampling_rate) , _ls (0.02, 4800.0 / sampling_rate, 20000.0 / sampling_rate) , _rs (0.02, 4800.0 / sampling_rate, 20000.0 / sampling_rate) { @@ -45,19 +45,12 @@ UpmixerA::name () const return _("Stereo to 5.1 up-mixer A"); } - string UpmixerA::id () const { return N_("stereo-5.1-upmix-a"); } -ChannelCount -UpmixerA::in_channels () const -{ - return ChannelCount (2); -} - int UpmixerA::out_channels () const { @@ -71,32 +64,37 @@ UpmixerA::clone (int sampling_rate) const } shared_ptr -UpmixerA::run (shared_ptr in) +UpmixerA::run (shared_ptr in, int channels) { /* Input L and R */ shared_ptr in_L = in->channel (0); shared_ptr in_R = in->channel (1); - /* Mix of L and R */ + /* Mix of L and R; -6dB down in amplitude (3dB in terms of power) */ shared_ptr in_LR = in_L->clone (); in_LR->accumulate_frames (in_R.get(), 0, 0, in_R->frames ()); - in_LR->apply_gain (0.5); + in_LR->apply_gain (-6); /* Run filters */ - shared_ptr L = _left.run (in_L); - shared_ptr R = _right.run (in_R); - shared_ptr C = _centre.run (in_LR); - shared_ptr Lfe = _lfe.run (in_LR); - shared_ptr Ls = _ls.run (in_L); - shared_ptr Rs = _rs.run (in_R); - - shared_ptr out (new AudioBuffers (6, in->frames ())); - out->copy_channel_from (L.get(), 0, 0); - out->copy_channel_from (R.get(), 0, 1); - out->copy_channel_from (C.get(), 0, 2); - out->copy_channel_from (Lfe.get(), 0, 3); - out->copy_channel_from (Ls.get(), 0, 4); - out->copy_channel_from (Rs.get(), 0, 5); + vector > all_out; + all_out.push_back (_left.run (in_L)); + all_out.push_back (_right.run (in_R)); + all_out.push_back (_centre.run (in_LR)); + all_out.push_back (_lfe.run (in_LR)); + all_out.push_back (_ls.run (in_L)); + all_out.push_back (_rs.run (in_R)); + + shared_ptr out (new AudioBuffers (channels, in->frames ())); + int const N = min (channels, 6); + + for (int i = 0; i < N; ++i) { + out->copy_channel_from (all_out[i].get(), 0, i); + } + + for (int i = N; i < channels; ++i) { + out->make_silent (i); + } + return out; }