Changeset 727
- Timestamp:
- Mar 11, 2017, 9:45:40 AM (5 years ago)
- Location:
- trunk/IpVideoSource/Sample
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IpVideoSource/Sample
-
Property
svn:ignore
set to
.vs
*.db
-
Property
svn:ignore
set to
-
trunk/IpVideoSource/Sample/.NET
-
Property
svn:ignore
set to
DirectShowLib
-
Property
svn:ignore
set to
-
trunk/IpVideoSource/Sample/.NET/PlayJpegLocationSharp
-
Property
svn:ignore
set to
bin
obj
-
Property
svn:ignore
set to
-
trunk/IpVideoSource/Sample/.NET/PlayJpegLocationSharp/Program.cs
r367 r727 14 14 { 15 15 FilterGraph filterGraph = new FilterGraph(); 16 IJpegVideoSourceFilter sourceFilter = Activator.CreateInstance(Type.GetTypeFromCLSID(new Guid("{A8DA2ECB-DEF6-414D-8CE2-E651640DBA4F}"))) as IJpegVideoSourceFilter;16 IJpegVideoSourceFilter sourceFilter = new JpegVideoSourceFilter() as IJpegVideoSourceFilter; 17 17 IBaseFilter sourceBaseFilter = sourceFilter as IBaseFilter; 18 18 (filterGraph as IFilterGraph2).AddFilter(sourceBaseFilter, "Source"); 19 //sourceFilter.Location = @"http://p.viewnetcam.com:60001/nphMotionJpeg?Resolution=640x480&Quality=Standard"; 20 //sourceFilter.Width = 640; 21 //sourceFilter.Height = 480; 22 sourceFilter.Location = @"http://192.168.88.52/nph-jpeg.cgi"; 23 sourceFilter.Width = 1280; 24 sourceFilter.Height = 960; 19 sourceFilter.Location = @"http://192.168.88.21/nph-mjpeg.cgi"; 20 sourceFilter.Width = 800; 21 sourceFilter.Height = 448; 25 22 IPin pin = DsFindPin.ByDirection(sourceBaseFilter, PinDirection.Output, 0); 26 23 (filterGraph as IFilterGraph2).Render(pin); -
trunk/IpVideoSource/Sample/.NET/RegisterJpegVideoSourceFilter
-
Property
svn:ignore
set to
bin
obj
-
Property
svn:ignore
set to
-
trunk/IpVideoSource/Sample/PlayJpegLocation/PlayJpegLocation.vcxproj
r366 r727 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <Project DefaultTargets="Build" ToolsVersion=" 4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">2 <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 3 <ItemGroup Label="ProjectConfigurations"> 4 4 <ProjectConfiguration Include="Debug|Win32"> … … 30 30 <CharacterSet>Unicode</CharacterSet> 31 31 <UseOfAtl>Static</UseOfAtl> 32 <PlatformToolset>v140</PlatformToolset> 32 33 </PropertyGroup> 33 34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> … … 36 37 <CharacterSet>Unicode</CharacterSet> 37 38 <UseOfAtl>Static</UseOfAtl> 39 <PlatformToolset>v140</PlatformToolset> 38 40 </PropertyGroup> 39 41 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> … … 43 45 <CharacterSet>Unicode</CharacterSet> 44 46 <UseOfAtl>Static</UseOfAtl> 47 <PlatformToolset>v140</PlatformToolset> 45 48 </PropertyGroup> 46 49 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> … … 50 53 <CharacterSet>Unicode</CharacterSet> 51 54 <UseOfAtl>Static</UseOfAtl> 55 <PlatformToolset>v140</PlatformToolset> 52 56 </PropertyGroup> 53 57 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
Note: See TracChangeset
for help on using the changeset viewer.