Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
e5f2731c
Commit
e5f2731c
authored
12 years ago
by
Jordi Ortiz
Committed by
Martin Storsjö
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
rtmp: Add support for receiving incoming streams
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
7ebe3962
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
doc/protocols.texi
+5
-0
5 additions, 0 deletions
doc/protocols.texi
libavformat/rtmpproto.c
+508
-5
508 additions, 5 deletions
libavformat/rtmpproto.c
libavformat/version.h
+2
-2
2 additions, 2 deletions
libavformat/version.h
with
515 additions
and
7 deletions
doc/protocols.texi
+
5
−
0
View file @
e5f2731c
...
@@ -188,6 +188,11 @@ application specified in @var{app}, may be prefixed by "mp4:". You
...
@@ -188,6 +188,11 @@ application specified in @var{app}, may be prefixed by "mp4:". You
can override the value parsed from the URI through the @code{rtmp_playpath}
can override the value parsed from the URI through the @code{rtmp_playpath}
option, too.
option, too.
@item listen
Act as a server, listening for an incoming connection.
@item timeout
Maximum time to wait for the incoming connection. Implies listen.
@end table
@end table
Additionally, the following parameters can be set via command line options
Additionally, the following parameters can be set via command line options
...
...
This diff is collapsed.
Click to expand it.
libavformat/rtmpproto.c
+
508
−
5
View file @
e5f2731c
This diff is collapsed.
Click to expand it.
libavformat/version.h
+
2
−
2
View file @
e5f2731c
...
@@ -30,8 +30,8 @@
...
@@ -30,8 +30,8 @@
#include
"libavutil/avutil.h"
#include
"libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 1
3
#define LIBAVFORMAT_VERSION_MINOR 1
4
#define LIBAVFORMAT_VERSION_MICRO
4
#define LIBAVFORMAT_VERSION_MICRO
0
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment