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
2f221b6a
Commit
2f221b6a
authored
Nov 02, 2014
by
Martin Storsjö
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: Define the flag bits using shifts instead of as decimal numbers
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
aae6b3b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
movenc.h
libavformat/movenc.h
+11
-11
No files found.
libavformat/movenc.h
View file @
2f221b6a
...
...
@@ -168,17 +168,17 @@ typedef struct MOVMuxContext {
AVFormatContext
*
fc
;
}
MOVMuxContext
;
#define FF_MOV_FLAG_RTP_HINT
1
#define FF_MOV_FLAG_FRAGMENT
2
#define FF_MOV_FLAG_EMPTY_MOOV
4
#define FF_MOV_FLAG_FRAG_KEYFRAME
8
#define FF_MOV_FLAG_SEPARATE_MOOF
16
#define FF_MOV_FLAG_FRAG_CUSTOM
32
#define FF_MOV_FLAG_ISML
64
#define FF_MOV_FLAG_FASTSTART
128
#define FF_MOV_FLAG_OMIT_TFHD_OFFSET
256
#define FF_MOV_FLAG_DISABLE_CHPL
512
#define FF_MOV_FLAG_DEFAULT_BASE_MOOF
1024
#define FF_MOV_FLAG_RTP_HINT
(1 << 0)
#define FF_MOV_FLAG_FRAGMENT
(1 << 1)
#define FF_MOV_FLAG_EMPTY_MOOV
(1 << 2)
#define FF_MOV_FLAG_FRAG_KEYFRAME
(1 << 3)
#define FF_MOV_FLAG_SEPARATE_MOOF
(1 << 4)
#define FF_MOV_FLAG_FRAG_CUSTOM
(1 << 5)
#define FF_MOV_FLAG_ISML
(1 << 6)
#define FF_MOV_FLAG_FASTSTART
(1 << 7)
#define FF_MOV_FLAG_OMIT_TFHD_OFFSET
(1 << 8)
#define FF_MOV_FLAG_DISABLE_CHPL
(1 << 9)
#define FF_MOV_FLAG_DEFAULT_BASE_MOOF
(1 << 10)
int
ff_mov_write_packet
(
AVFormatContext
*
s
,
AVPacket
*
pkt
);
...
...
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