Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2010-09-14 04:40:14 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2010-09-14 04:40:14 +0400
commit44463fea4c7ee3024b38b9756ad232b21419f889 (patch)
treef46f08846379a4ae318a33f5455780e30b169997 /src/thirdparty/MediaInfo
parent6aadd12c6131d952242e4cc2d0c3fc4627efdcad (diff)
-Updated MediaInfoLib
-SyncClock project files cosmetics git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2544 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/thirdparty/MediaInfo')
-rw-r--r--src/thirdparty/MediaInfo/Video/File_Avc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thirdparty/MediaInfo/Video/File_Avc.cpp b/src/thirdparty/MediaInfo/Video/File_Avc.cpp
index 5aa117e26..86f77332d 100644
--- a/src/thirdparty/MediaInfo/Video/File_Avc.cpp
+++ b/src/thirdparty/MediaInfo/Video/File_Avc.cpp
@@ -409,7 +409,7 @@ void File_Avc::Streams_Fill()
if (!fixed_frame_rate_flag)
Fill(Stream_Video, StreamPos_Last, Video_FrameRate_Mode, "VFR");
else if (time_scale && num_units_in_tick)
- Fill(Stream_Video, StreamPos_Last, Video_FrameRate, (float)time_scale/num_units_in_tick/(pic_order_cnt_type==2?1:2)/FrameRate_Divider);
+ Fill(Stream_Video, StreamPos_Last, Video_FrameRate, (float)time_scale/num_units_in_tick/(frame_mbs_only_flag?2:(pic_order_cnt_type==2?1:2))/FrameRate_Divider);
}
if (FrameRate_Divider==2)
{