diff options
author | ace20022 <ace20022@ymail.com> | 2016-03-04 18:12:12 +0100 |
---|---|---|
committer | ace20022 <ace20022@ymail.com> | 2016-03-11 09:19:15 +0100 |
commit | bf7958534fe707ffb639ef87bf404da7bff3ccd4 (patch) | |
tree | a362c9327bc070e2bffa34a1dd6e6b05df6c246c /project/VS2010Express | |
parent | 0ed08f64996f43bc46c6d1ee677cd23a79476c54 (diff) |
[videoplayer] Add a demuxer that manages demuxing of multiple streams/files at once.
Diffstat (limited to 'project/VS2010Express')
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj | 2 | ||||
-rw-r--r-- | project/VS2010Express/XBMC.vcxproj.filters | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/project/VS2010Express/XBMC.vcxproj b/project/VS2010Express/XBMC.vcxproj index bc8badca65..4cc8a1b0f1 100644 --- a/project/VS2010Express/XBMC.vcxproj +++ b/project/VS2010Express/XBMC.vcxproj @@ -282,6 +282,7 @@ <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DVDDemuxCC.cpp" /> <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DVDDemuxCDDA.cpp" /> <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DVDDemuxClient.cpp" /> + <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DemuxMultiSource.cpp" /> <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDInputStreams\DVDInputStreamBluray.cpp" /> <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDInputStreams\InputStreamMultiSource.cpp" /> <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDInputStreams\DVDInputStreamPVRManager.cpp" /> @@ -1017,6 +1018,7 @@ <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DVDDemuxClient.h" /> <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDInputStreams\InputStreamMultiSource.h" /> <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDInputStreams\InputStreamMultiStreams.h" /> + <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DemuxMultiSource.h" /> <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DVDDemuxPacket.h" /> <ClInclude Include="..\..\xbmc\cores\VideoPlayer\Process\ProcessInfo.h" /> <ClInclude Include="..\..\xbmc\cores\VideoPlayer\VideoRenderers\BaseRenderer.h" /> diff --git a/project/VS2010Express/XBMC.vcxproj.filters b/project/VS2010Express/XBMC.vcxproj.filters index 6d5332ed91..2ba0199d4a 100644 --- a/project/VS2010Express/XBMC.vcxproj.filters +++ b/project/VS2010Express/XBMC.vcxproj.filters @@ -3310,6 +3310,9 @@ <ClCompile Include="..\..\xbmc\addons\binary\interfaces\api1\AudioDSP\AddonCallbacksAudioDSP.cpp"> <Filter>addons\binary\interfaces\api1\AudioDSP</Filter> </ClCompile> + <ClCompile Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DemuxMultiSource.cpp"> + <Filter>cores\VideoPlayer\DVDDemuxers</Filter> + </ClCompile> <ClCompile Include="..\..\xbmc\addons\binary\interfaces\api1\AudioEngine\AddonCallbacksAudioEngine.cpp"> <Filter>addons\binary\interfaces\api1\AudioEngine</Filter> </ClCompile> @@ -6347,6 +6350,9 @@ <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDInputStreams\InputStreamMultiSource.h"> <Filter>cores\VideoPlayer\DVDInputStreams</Filter> </ClInclude> + <ClInclude Include="..\..\xbmc\cores\VideoPlayer\DVDDemuxers\DemuxMultiSource.h"> + <Filter>cores\VideoPlayer\DVDDemuxers</Filter> + </ClInclude> <ClInclude Include="..\..\xbmc\addons\kodi-addon-dev-kit\include\kodi\kodi_adsp_dll.h"> <Filter>addons\include</Filter> </ClInclude> |