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
f0737640
Commit
f0737640
authored
May 22, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avformat/mxfenc: Add mxf muxer avclass
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
802cca59
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
mxfenc.c
libavformat/mxfenc.c
+12
-0
No files found.
libavformat/mxfenc.c
View file @
f0737640
...
...
@@ -2627,6 +2627,17 @@ static int mxf_interleave(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int
mxf_interleave_get_packet
,
mxf_compare_timestamps
);
}
static
const
AVOption
mxf_options
[]
=
{
{
NULL
},
};
static
const
AVClass
mxf_muxer_class
=
{
.
class_name
=
"MXF muxer"
,
.
item_name
=
av_default_item_name
,
.
option
=
mxf_options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
static
const
AVOption
d10_options
[]
=
{
{
"d10_channelcount"
,
"Force/set channelcount in generic sound essence descriptor"
,
offsetof
(
MXFContext
,
channel_count
),
AV_OPT_TYPE_INT
,
{.
i64
=
-
1
},
-
1
,
8
,
AV_OPT_FLAG_ENCODING_PARAM
},
...
...
@@ -2666,6 +2677,7 @@ AVOutputFormat ff_mxf_muxer = {
.
write_trailer
=
mxf_write_footer
,
.
flags
=
AVFMT_NOTIMESTAMPS
,
.
interleave_packet
=
mxf_interleave
,
.
priv_class
=
&
mxf_muxer_class
,
};
AVOutputFormat
ff_mxf_d10_muxer
=
{
...
...
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