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
65dd9320
Commit
65dd9320
authored
Aug 02, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
movenc: make uuids static const
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
bc2187cf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
movenc.c
libavformat/movenc.c
+3
-3
No files found.
libavformat/movenc.c
View file @
65dd9320
...
...
@@ -2416,7 +2416,7 @@ static int mov_write_isml_manifest(AVIOContext *pb, MOVMuxContext *mov)
{
int64_t
pos
=
avio_tell
(
pb
);
int
i
;
const
uint8_t
uuid
[]
=
{
static
const
uint8_t
uuid
[]
=
{
0xa5
,
0xd4
,
0x0b
,
0x30
,
0xe8
,
0x14
,
0x11
,
0xdd
,
0xba
,
0x2f
,
0x08
,
0x00
,
0x20
,
0x0c
,
0x9a
,
0x66
};
...
...
@@ -2609,7 +2609,7 @@ static int mov_write_trun_tag(AVIOContext *pb, MOVTrack *track)
static
int
mov_write_tfxd_tag
(
AVIOContext
*
pb
,
MOVTrack
*
track
)
{
int64_t
pos
=
avio_tell
(
pb
);
const
uint8_t
uuid
[]
=
{
static
const
uint8_t
uuid
[]
=
{
0x6d
,
0x1d
,
0x9b
,
0x05
,
0x42
,
0xd5
,
0x44
,
0xe6
,
0x80
,
0xe2
,
0x14
,
0x1d
,
0xaf
,
0xf7
,
0x57
,
0xb2
};
...
...
@@ -2631,7 +2631,7 @@ static int mov_write_tfrf_tag(AVIOContext *pb, MOVMuxContext *mov,
{
int
n
=
track
->
nb_frag_info
-
1
-
entry
,
i
;
int
size
=
8
+
16
+
4
+
1
+
16
*
n
;
const
uint8_t
uuid
[]
=
{
static
const
uint8_t
uuid
[]
=
{
0xd4
,
0x80
,
0x7e
,
0xf2
,
0xca
,
0x39
,
0x46
,
0x95
,
0x8e
,
0x54
,
0x26
,
0xcb
,
0x9e
,
0x46
,
0xa7
,
0x9f
};
...
...
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