Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2014-11-27 18:20:13 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
eb4e7aad69eab76c7a759ed69d8cf59fccf25f4a
eb4e7aad
1 parent
904a06ca
try to build srs-librtmp on vs2010, failed.
显示空白字符变更
内嵌
并排对比
正在显示
6 个修改的文件
包含
109 行增加
和
7 行删除
trunk/src/core/srs_core.hpp
trunk/src/core/srs_platform.hpp
trunk/src/libs/srs_librtmp.hpp
trunk/winbuild/srs_play.cpp
trunk/winbuild/srs_play.vcxproj
trunk/winbuild/srs_play.vcxproj.filters
trunk/src/core/srs_core.hpp
查看文件 @
eb4e7aa
...
...
@@ -73,6 +73,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#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
#ifndef _WIN32
#include <inttypes.h>
#endif
...
...
trunk/src/core/srs_platform.hpp
查看文件 @
eb4e7aa
...
...
@@ -24,11 +24,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#ifndef 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 example, not on windows or it's cygwin.
...
...
trunk/src/libs/srs_librtmp.hpp
查看文件 @
eb4e7aa
...
...
@@ -30,6 +30,11 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#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,
...
...
trunk/winbuild/srs_play.cpp
0 → 100644
查看文件 @
eb4e7aa
/*
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
,
&
timestamp
,
&
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
;
}
...
...
trunk/winbuild/srs_play.vcxproj
100644 → 100755
查看文件 @
eb4e7aa
...
...
@@ -77,7 +77,10 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="srs_play.c" />
<ClCompile Include="srs_play.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="srs_auto_headers.hpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
...
...
trunk/winbuild/srs_play.vcxproj.filters
100644 → 100755
查看文件 @
eb4e7aa
...
...
@@ -15,7 +15,12 @@
</Filter>
</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>
</ClCompile>
</ItemGroup>
...
...
请
注册
或
登录
后发表评论