mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
try to build srs-librtmp on vs2010, failed.
This commit is contained in:
parent
904a06cadf
commit
eb4e7aad69
6 changed files with 214 additions and 112 deletions
|
@ -72,6 +72,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
#define __STDC_FORMAT_MACROS
|
#define __STDC_FORMAT_MACROS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// for srs-librtmp, @see https://github.com/winlinvip/simple-rtmp-server/issues/213
|
||||||
|
#if defined(_WIN32)
|
||||||
|
#include <windows.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
// for srs-librtmp, @see https://github.com/winlinvip/simple-rtmp-server/issues/213
|
// for srs-librtmp, @see https://github.com/winlinvip/simple-rtmp-server/issues/213
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
|
|
@ -24,11 +24,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
#ifndef SRS_WIN_PORTING_H
|
#ifndef SRS_WIN_PORTING_H
|
||||||
#define SRS_WIN_PORTING_H
|
#define SRS_WIN_PORTING_H
|
||||||
|
|
||||||
// for srs-librtmp, @see https://github.com/winlinvip/simple-rtmp-server/issues/213
|
|
||||||
#if defined(_WIN32)
|
|
||||||
#include <windows.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* for linux like,
|
* for linux like,
|
||||||
* for example, not on windows or it's cygwin.
|
* for example, not on windows or it's cygwin.
|
||||||
|
|
|
@ -30,6 +30,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
typedef long int int64_t;
|
||||||
|
typedef unsigned int u_int32_t;
|
||||||
|
typedef int int32_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* srs-librtmp is a librtmp like library,
|
* srs-librtmp is a librtmp like library,
|
||||||
|
|
89
trunk/winbuild/srs_play.cpp
Normal file
89
trunk/winbuild/srs_play.cpp
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
/*
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2013-2014 winlin
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
gcc srs_play.c ../../objs/lib/srs_librtmp.a -g -O0 -lstdc++ -o srs_play
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "srs_librtmp.hpp"
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
printf("suck rtmp stream like rtmpdump\n");
|
||||||
|
printf("srs(simple-rtmp-server) client librtmp library.\n");
|
||||||
|
printf("version: %d.%d.%d\n", srs_version_major(), srs_version_minor(), srs_version_revision());
|
||||||
|
|
||||||
|
if (argc <= 1) {
|
||||||
|
printf("Usage: %s <rtmp_url>\n"
|
||||||
|
" rtmp_url RTMP stream url to play\n"
|
||||||
|
"For example:\n"
|
||||||
|
" %s rtmp://127.0.0.1:1935/live/livestream\n",
|
||||||
|
argv[0], argv[0]);
|
||||||
|
exit(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
srs_human_trace("rtmp url: %s", argv[1]);
|
||||||
|
srs_rtmp_t rtmp = srs_rtmp_create(argv[1]);
|
||||||
|
|
||||||
|
if (srs_rtmp_handshake(rtmp) != 0) {
|
||||||
|
srs_human_trace("simple handshake failed.");
|
||||||
|
goto rtmp_destroy;
|
||||||
|
}
|
||||||
|
srs_human_trace("simple handshake success");
|
||||||
|
|
||||||
|
if (srs_rtmp_connect_app(rtmp) != 0) {
|
||||||
|
srs_human_trace("connect vhost/app failed.");
|
||||||
|
goto rtmp_destroy;
|
||||||
|
}
|
||||||
|
srs_human_trace("connect vhost/app success");
|
||||||
|
|
||||||
|
if (srs_rtmp_play_stream(rtmp) != 0) {
|
||||||
|
srs_human_trace("play stream failed.");
|
||||||
|
goto rtmp_destroy;
|
||||||
|
}
|
||||||
|
srs_human_trace("play stream success");
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
int size;
|
||||||
|
char type;
|
||||||
|
char* data;
|
||||||
|
u_int32_t timestamp;
|
||||||
|
|
||||||
|
if (srs_rtmp_read_packet(rtmp, &type, ×tamp, &data, &size) != 0) {
|
||||||
|
goto rtmp_destroy;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (srs_human_print_rtmp_packet(type, timestamp, data, size) != 0) {
|
||||||
|
goto rtmp_destroy;
|
||||||
|
}
|
||||||
|
|
||||||
|
free(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
rtmp_destroy:
|
||||||
|
srs_rtmp_destroy(rtmp);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
5
trunk/winbuild/srs_play.vcxproj
Normal file → Executable file
5
trunk/winbuild/srs_play.vcxproj
Normal file → Executable file
|
@ -77,7 +77,10 @@
|
||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="srs_play.c" />
|
<ClCompile Include="srs_play.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="srs_auto_headers.hpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
|
7
trunk/winbuild/srs_play.vcxproj.filters
Normal file → Executable file
7
trunk/winbuild/srs_play.vcxproj.filters
Normal file → Executable file
|
@ -15,7 +15,12 @@
|
||||||
</Filter>
|
</Filter>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="srs_play.c">
|
<ClInclude Include="srs_auto_headers.hpp">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="srs_play.cpp">
|
||||||
<Filter>Source Files</Filter>
|
<Filter>Source Files</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue