X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ffilelist.C;h=591cb8114a3454a24b87db6745f6af3f9203abeb;hb=9e3d90a964c0fbe97c0b58235336a47111932d5d;hp=ee287bc4ec2485af1d2f443e02970072a574d92a;hpb=9afc3844e37c6db23435d5d0c33129dcc81061e4;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/cinelerra/filelist.C b/cinelerra-5.1/cinelerra/filelist.C index ee287bc4..591cb811 100644 --- a/cinelerra-5.1/cinelerra/filelist.C +++ b/cinelerra-5.1/cinelerra/filelist.C @@ -131,15 +131,15 @@ int FileList::open_file(int rd, int wr) else result = 1; if( !result ) { - int width = asset->width; - int height = asset->height; asset->actual_width = asset->width; - if( width ) asset->width = width; asset->actual_height = asset->height; - if( height ) asset->height = height; + int scale = asset->proxy_scale; + if( !scale ) scale = 1; + asset->width = asset->actual_width * scale; + asset->height = asset->actual_height * scale; asset->layers = 1; if( !asset->frame_rate ) - asset->frame_rate = 1; + asset->frame_rate = 10; } } else