Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
d16cccac
Commit
d16cccac
authored
May 21, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: Add RTP muxer/hinter options
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
f3f82296
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
movenc.c
libavformat/movenc.c
+2
-0
movenc.h
libavformat/movenc.h
+1
-0
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/movenc.c
View file @
d16cccac
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "libavutil/opt.h"
#include "libavutil/dict.h"
#include "libavutil/dict.h"
#include "rtpenc.h"
#undef NDEBUG
#undef NDEBUG
#include <assert.h>
#include <assert.h>
...
@@ -41,6 +42,7 @@
...
@@ -41,6 +42,7 @@
static
const
AVOption
options
[]
=
{
static
const
AVOption
options
[]
=
{
{
"movflags"
,
"MOV muxer flags"
,
offsetof
(
MOVMuxContext
,
flags
),
FF_OPT_TYPE_FLAGS
,
{.
dbl
=
0
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
,
"movflags"
},
{
"movflags"
,
"MOV muxer flags"
,
offsetof
(
MOVMuxContext
,
flags
),
FF_OPT_TYPE_FLAGS
,
{.
dbl
=
0
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
,
"movflags"
},
{
"rtphint"
,
"Add RTP hint tracks"
,
0
,
FF_OPT_TYPE_CONST
,
{.
dbl
=
FF_MOV_FLAG_RTP_HINT
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
,
"movflags"
},
{
"rtphint"
,
"Add RTP hint tracks"
,
0
,
FF_OPT_TYPE_CONST
,
{.
dbl
=
FF_MOV_FLAG_RTP_HINT
},
INT_MIN
,
INT_MAX
,
AV_OPT_FLAG_ENCODING_PARAM
,
"movflags"
},
FF_RTP_FLAG_OPTS
(
MOVMuxContext
,
rtp_flags
),
{
NULL
},
{
NULL
},
};
};
...
...
libavformat/movenc.h
View file @
d16cccac
...
@@ -111,6 +111,7 @@ typedef struct MOVMuxContext {
...
@@ -111,6 +111,7 @@ typedef struct MOVMuxContext {
MOVTrack
*
tracks
;
MOVTrack
*
tracks
;
int
flags
;
int
flags
;
int
rtp_flags
;
}
MOVMuxContext
;
}
MOVMuxContext
;
#define FF_MOV_FLAG_RTP_HINT 1
#define FF_MOV_FLAG_RTP_HINT 1
...
...
libavformat/version.h
View file @
d16cccac
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
#define LIBAVFORMAT_VERSION_MAJOR 53
#define LIBAVFORMAT_VERSION_MAJOR 53
#define LIBAVFORMAT_VERSION_MINOR 1
#define LIBAVFORMAT_VERSION_MINOR 1
#define LIBAVFORMAT_VERSION_MICRO
2
#define LIBAVFORMAT_VERSION_MICRO
3
#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, \
...
...
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