x265 patch for threadpool shutdown fix submited as:
[goodguy/history.git] / cinelerra-5.0 / plugins / fieldframe / fieldframe.C
index c9559f500961a29e6df932e61d740987eb57c707..0780c61b474d27cab37e239396aab198c50d9316 100644 (file)
@@ -332,7 +332,7 @@ FieldFrame::~FieldFrame()
        if(input) delete input;
 }
 
-const char* FieldFrame::plugin_title() { return N_("Fields to frames"); }
+const char* FieldFrame::plugin_title() { return _("Fields to frames"); }
 int FieldFrame::is_realtime() { return 1; }
 
 
@@ -439,14 +439,16 @@ int FieldFrame::process_buffer(VFrame *frame,
        read_frame(input, 
                0, 
                field1_position,
-               frame_rate * 2);
+               frame_rate * 2,
+               0);
        apply_field(frame, 
                input, 
                config.field_dominance == TOP_FIELD_FIRST ? 0 : 1);
        read_frame(input, 
                0, 
                field2_position,
-               frame_rate * 2);
+               frame_rate * 2,
+               0);
        apply_field(frame, 
                input, 
                config.field_dominance == TOP_FIELD_FIRST ? 1 : 0);