X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Frgbshift%2Frgbshift.C;h=1f3d73994b0b0384b2613c073f620a2a1695fae4;hb=214bd0ba9e21635e03d0c0e2b2ae1a7e9170583c;hp=d76f4d46fea77957e5d2e8e00977d0cdee2c3f4f;hpb=21c2e6b36d6a96c2f662a89459d607b5a387f4eb;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/rgbshift/rgbshift.C b/cinelerra-5.1/plugins/rgbshift/rgbshift.C index d76f4d46..1f3d7399 100644 --- a/cinelerra-5.1/plugins/rgbshift/rgbshift.C +++ b/cinelerra-5.1/plugins/rgbshift/rgbshift.C @@ -25,7 +25,7 @@ #include "filexml.h" #include "guicast.h" #include "language.h" -#include "cicolors.h" +#include "bccolors.h" #include "pluginvclient.h" #include "vframe.h" @@ -208,7 +208,7 @@ RGBShiftEffect::~RGBShiftEffect() delete temp_frame; } -const char* RGBShiftEffect::plugin_title() { return _("RGBShift"); } +const char* RGBShiftEffect::plugin_title() { return N_("RGBShift"); } int RGBShiftEffect::is_realtime() { return 1; } @@ -268,9 +268,6 @@ void RGBShiftEffect::read_data(KeyFrame *keyframe) } } - -static YUV yuv_static; - #define RGB_MACRO(type, temp_type, components) \ { \ for(int i = 0; i < h; i++) { \ @@ -310,11 +307,11 @@ static YUV yuv_static; temp_type g = gp ? gp[1] : 0; \ temp_type b = bp ? bp[2] : 0; \ if( sizeof(type) == 4 ) \ - yuv_static.rgb_to_yuv_f(r, g, b, y, u, v); \ + YUV::yuv.rgb_to_yuv_f(r, g, b, y, u, v); \ else if( sizeof(type) == 2 ) \ - yuv_static.rgb_to_yuv_16(r, g, b, y, u, v); \ + YUV::yuv.rgb_to_yuv_16(r, g, b, y, u, v); \ else \ - yuv_static.rgb_to_yuv_8(r, g, b, y, u, v); \ + YUV::yuv.rgb_to_yuv_8(r, g, b, y, u, v); \ out_row[0] = y; \ out_row[1] = u; \ out_row[2] = v; \ @@ -345,7 +342,7 @@ int RGBShiftEffect::process_realtime(VFrame *input, VFrame *output) delete temp_frame; temp_frame = 0; } if( !temp_frame ) - temp_frame = new VFrame(w, h, color_model); + temp_frame = new VFrame(w, h, color_model, 0); frame = temp_frame; if( color_model != input->get_color_model() ) BC_CModels::transfer(frame->get_rows(), input->get_rows(),