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
91e3a25e
Commit
91e3a25e
authored
May 21, 2011
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: Add an AVClass for setting muxer specific options
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
9f5d4502
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
movenc.c
libavformat/movenc.c
+18
-0
movenc.h
libavformat/movenc.h
+1
-0
No files found.
libavformat/movenc.c
View file @
91e3a25e
...
@@ -32,10 +32,22 @@
...
@@ -32,10 +32,22 @@
#include "libavcodec/put_bits.h"
#include "libavcodec/put_bits.h"
#include "internal.h"
#include "internal.h"
#include "libavutil/avstring.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#undef NDEBUG
#undef NDEBUG
#include <assert.h>
#include <assert.h>
static
const
AVOption
options
[]
=
{
{
NULL
},
};
static
const
AVClass
mov_muxer_class
=
{
.
class_name
=
"MOV/3GP/MP4/3G2 muxer"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_INT
,
};
//FIXME support 64 bit variant with wide placeholders
//FIXME support 64 bit variant with wide placeholders
static
int64_t
updateSize
(
AVIOContext
*
pb
,
int64_t
pos
)
static
int64_t
updateSize
(
AVIOContext
*
pb
,
int64_t
pos
)
{
{
...
@@ -2285,6 +2297,7 @@ AVOutputFormat ff_mov_muxer = {
...
@@ -2285,6 +2297,7 @@ AVOutputFormat ff_mov_muxer = {
mov_write_trailer
,
mov_write_trailer
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_movvideo_tags
,
codec_movaudio_tags
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_movvideo_tags
,
codec_movaudio_tags
,
0
},
.
priv_class
=
&
mov_muxer_class
,
};
};
#endif
#endif
#if CONFIG_TGP_MUXER
#if CONFIG_TGP_MUXER
...
@@ -2301,6 +2314,7 @@ AVOutputFormat ff_tgp_muxer = {
...
@@ -2301,6 +2314,7 @@ AVOutputFormat ff_tgp_muxer = {
mov_write_trailer
,
mov_write_trailer
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_3gp_tags
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_3gp_tags
,
0
},
.
priv_class
=
&
mov_muxer_class
,
};
};
#endif
#endif
#if CONFIG_MP4_MUXER
#if CONFIG_MP4_MUXER
...
@@ -2317,6 +2331,7 @@ AVOutputFormat ff_mp4_muxer = {
...
@@ -2317,6 +2331,7 @@ AVOutputFormat ff_mp4_muxer = {
mov_write_trailer
,
mov_write_trailer
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_mp4_obj_type
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_mp4_obj_type
,
0
},
.
priv_class
=
&
mov_muxer_class
,
};
};
#endif
#endif
#if CONFIG_PSP_MUXER
#if CONFIG_PSP_MUXER
...
@@ -2333,6 +2348,7 @@ AVOutputFormat ff_psp_muxer = {
...
@@ -2333,6 +2348,7 @@ AVOutputFormat ff_psp_muxer = {
mov_write_trailer
,
mov_write_trailer
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_mp4_obj_type
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
ff_mp4_obj_type
,
0
},
.
priv_class
=
&
mov_muxer_class
,
};
};
#endif
#endif
#if CONFIG_TG2_MUXER
#if CONFIG_TG2_MUXER
...
@@ -2349,6 +2365,7 @@ AVOutputFormat ff_tg2_muxer = {
...
@@ -2349,6 +2365,7 @@ AVOutputFormat ff_tg2_muxer = {
mov_write_trailer
,
mov_write_trailer
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_3gp_tags
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_3gp_tags
,
0
},
.
priv_class
=
&
mov_muxer_class
,
};
};
#endif
#endif
#if CONFIG_IPOD_MUXER
#if CONFIG_IPOD_MUXER
...
@@ -2365,5 +2382,6 @@ AVOutputFormat ff_ipod_muxer = {
...
@@ -2365,5 +2382,6 @@ AVOutputFormat ff_ipod_muxer = {
mov_write_trailer
,
mov_write_trailer
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
flags
=
AVFMT_GLOBALHEADER
,
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_ipod_tags
,
0
},
.
codec_tag
=
(
const
AVCodecTag
*
const
[]){
codec_ipod_tags
,
0
},
.
priv_class
=
&
mov_muxer_class
,
};
};
#endif
#endif
libavformat/movenc.h
View file @
91e3a25e
...
@@ -101,6 +101,7 @@ typedef struct MOVIndex {
...
@@ -101,6 +101,7 @@ typedef struct MOVIndex {
}
MOVTrack
;
}
MOVTrack
;
typedef
struct
MOVMuxContext
{
typedef
struct
MOVMuxContext
{
const
AVClass
*
av_class
;
int
mode
;
int
mode
;
int64_t
time
;
int64_t
time
;
int
nb_streams
;
int
nb_streams
;
...
...
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