diff options
author | Jonathan Marshall <jmarshall@never.you.mind> | 2011-07-18 12:35:59 +1200 |
---|---|---|
committer | Jonathan Marshall <jmarshall@never.you.mind> | 2011-07-22 18:12:32 +1200 |
commit | 1f97c3e9dc4e6ea991c8de9210c1a5bec468dc18 (patch) | |
tree | dcc3374b3fa00d7f1c58923f2ab967d70ddfdadd /project | |
parent | 1fe79717ff10782266e8e2b8b483a0522c14a6ea (diff) |
Add CTimeSmoother class for smoothing timestamps
Diffstat (limited to 'project')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 4 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index ca85b8083e..304d555804 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -789,6 +789,7 @@ <ClCompile Include="..\..\xbmc\utils\StreamUtils.cpp" /> <ClCompile Include="..\..\xbmc\utils\StringUtils.cpp" /> <ClCompile Include="..\..\xbmc\utils\SystemInfo.cpp" /> + <ClCompile Include="..\..\xbmc\utils\TimeSmoother.cpp" /> <ClCompile Include="..\..\xbmc\utils\TimeUtils.cpp" /> <ClCompile Include="..\..\xbmc\utils\TuxBoxUtil.cpp" /> <ClCompile Include="..\..\xbmc\utils\URIUtils.cpp" /> @@ -1641,6 +1642,7 @@ <ClInclude Include="..\..\xbmc\utils\StreamUtils.h" /> <ClInclude Include="..\..\xbmc\utils\StringUtils.h" /> <ClInclude Include="..\..\xbmc\utils\SystemInfo.h" /> + <ClInclude Include="..\..\xbmc\utils\TimeSmoother.h" /> <ClInclude Include="..\..\xbmc\utils\TimeUtils.h" /> <ClInclude Include="..\..\xbmc\utils\TuxBoxUtil.h" /> <ClInclude Include="..\..\xbmc\utils\URIUtils.h" /> @@ -2072,4 +2074,4 @@ </VisualStudio> </ProjectExtensions> <Import Project="$(SolutionDir)\$(ProjectFileName).targets.user" Condition="Exists('$(SolutionDir)\$(ProjectFileName).targets.user')" /> -</Project>
\ No newline at end of file +</Project> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 09caa19207..a1513def78 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -1970,6 +1970,9 @@ <ClCompile Include="..\..\xbmc\utils\SystemInfo.cpp"> <Filter>utils</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\utils\TimeSmoother.cpp"> + <Filter>utils</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\utils\TimeUtils.cpp"> <Filter>utils</Filter> </ClCompile> @@ -4484,6 +4487,9 @@ <ClInclude Include="..\..\xbmc\utils\SystemInfo.h"> <Filter>utils</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\utils\TimeSmoother.h"> + <Filter>utils</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\utils\TimeUtils.h"> <Filter>utils</Filter> </ClInclude> @@ -5001,4 +5007,4 @@ <Filter>win32</Filter> </CustomBuild> </ItemGroup> -</Project>
\ No newline at end of file +</Project> |