upgrade libjpeg-turbo as proposed by Andrew
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / fileppm.C
index 7df92707a11e56d567b9e68424bbff2ec28a1f60..e91690a12946a7622ff26ff123f6d3331ad85cb6 100644 (file)
@@ -195,16 +195,19 @@ int FilePPM::get_best_colormodel(Asset *asset, int driver)
 
 PPMConfigVideo::PPMConfigVideo(BC_WindowBase *gui, Asset *asset)
  : BC_Window(_(PROGRAM_NAME ": Video Compression"),
-       gui->get_abs_cursor_x(1), gui->get_abs_cursor_y(1), 200, 100)
+       gui->get_abs_cursor_x(1), gui->get_abs_cursor_y(1),
+       xS(200), yS(100))
 {
        this->gui = gui;
        this->asset = asset;
+// *** CONTEXT_HELP ***
+       context_help_set_keyword("Single File Rendering");
 }
 
 void PPMConfigVideo::create_objects()
 {
        lock_window("PPMConfigVideo::create_objects");
-       int x = 10, y = 10;
+       int x = xS(10), y = yS(10);
        add_subwindow(new BC_Title(x, y, _("PPM, RGB raw only")));
        add_subwindow(new BC_OKButton(this));
        show_window(1);