Skip to content

Commit

Permalink
[resize] Recognize 50 fps as PAL compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
eumagga0x2a committed Dec 12, 2017
1 parent 808268d commit 2e35202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avidemux_plugins/ADM_videoFilters6/resize/qt4/Q_resize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ bool r=false;
*resize
};
//
if(fps1000>24600 && fps1000<25400)
if((fps1000>24600 && fps1000<25400) || (fps1000>49200 && fps1000<50800))
{
param.pal=1;
}
Expand Down

0 comments on commit 2e35202

Please sign in to comment.