Credit Andrew - fix vorbis audio which was scratchy and ensure aging plugin does...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / fileformat.C
index 6dc11781fe7f67eff97ef1c3e8b20decd89fa0a1..a5cbbe012417f2058e4409798326d8da309e5bb0 100644 (file)
@@ -37,6 +37,8 @@ FileFormat::FileFormat(MWindow *mwindow)
                xS(375), yS(300), xS(375), yS(300))
 {
        this->mwindow = mwindow;
+// *** CONTEXT_HELP ***
+       context_help_set_keyword("Single File Rendering");
 }
 
 FileFormat::~FileFormat()
@@ -99,8 +101,8 @@ void FileFormat::create_objects_(char *string2)
 
 //printf("FileFormat::create_objects_ 1 %d\n", asset->byte_order);
        add_subwindow(new BC_Title(x, y, _("Byte order:")));
-       add_subwindow(lohi = new FileFormatByteOrderLOHI(x2, y, this, asset->byte_order));
-       add_subwindow(hilo = new FileFormatByteOrderHILO(x2 + 70, y, this, !asset->byte_order));
+       add_subwindow(hilo = new FileFormatByteOrderHILO(x2, y, this, !asset->byte_order));
+       add_subwindow(lohi = new FileFormatByteOrderLOHI(x2 + 70, y, this, asset->byte_order));
 
        y += ys30;
        add_subwindow(signed_button = new FileFormatSigned(x, y, this, asset->signed_));