Skip to content

Commit

Permalink
File__analyze_streams.cpp - Change for 2.39:1 DisplayAspectRatio/String
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranjol authored Mar 31, 2018
1 parent baca39e commit eff9bb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/MediaInfo/File__Analyze_Streams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2507,7 +2507,8 @@ void File__Analyze::DisplayAspectRatio_Fill(const Ztring &Value, stream_t Stream
else if (DAR>=(float)2.15 && DAR<(float)2.22) DARS=__T("2.2:1");
else if (DAR>=(float)2.23 && DAR<(float)2.30) DARS=__T("2.25:1");
else if (DAR>=(float)2.30 && DAR<(float)2.37) DARS=__T("2.35:1");
else if (DAR>=(float)2.37 && DAR<(float)2.45) DARS=__T("2.40:1");
else if (DAR>=(float)2.37 && DAR<(float)2.40) DARS=__T("2.39:1");
else if (DAR>=(float)2.40 && DAR<(float)2.45) DARS=__T("2.40:1");
else DARS.From_Number(DAR);
DARS.FindAndReplace(__T("."), MediaInfoLib::Config.Language_Get(__T(" Config_Text_FloatSeparator")));
if (MediaInfoLib::Config.Language_Get(__T(" Language_ISO639"))==__T("fr") && DARS.find(__T(":1"))==string::npos)
Expand Down

0 comments on commit eff9bb8

Please sign in to comment.