Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
e2e29c62
Commit
e2e29c62
authored
May 21, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtspenc: Add RTP muxer options
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
6cf09bb7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
rtsp.h
libavformat/rtsp.h
+5
-0
rtspenc.c
libavformat/rtspenc.c
+2
-0
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/rtsp.h
View file @
e2e29c62
...
...
@@ -344,6 +344,11 @@ typedef struct RTSPState {
* Do not begin to play the stream immediately.
*/
int
initial_pause
;
/**
* Option flags for the chained RTP muxer.
*/
int
rtp_muxer_flags
;
}
RTSPState
;
/**
...
...
libavformat/rtspenc.c
View file @
e2e29c62
...
...
@@ -34,10 +34,12 @@
#include "libavutil/avstring.h"
#include "url.h"
#include "libavutil/opt.h"
#include "rtpenc.h"
#define SDP_MAX_SIZE 16384
static
const
AVOption
options
[]
=
{
FF_RTP_FLAG_OPTS
(
RTSPState
,
rtp_muxer_flags
),
{
NULL
},
};
...
...
libavformat/version.h
View file @
e2e29c62
...
...
@@ -25,7 +25,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 53
#define LIBAVFORMAT_VERSION_MINOR 1
#define LIBAVFORMAT_VERSION_MICRO
1
#define LIBAVFORMAT_VERSION_MICRO
2
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment