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
98d12b09
Commit
98d12b09
authored
Apr 19, 2006
by
Baptiste Coudurier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move declaration to mov.h
Originally committed as revision 5299 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f42635f5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
4 deletions
+1
-4
mov.c
libavformat/mov.c
+0
-1
mov.h
libavformat/mov.h
+1
-0
movenc.c
libavformat/movenc.c
+0
-3
No files found.
libavformat/mov.c
View file @
98d12b09
...
@@ -382,7 +382,6 @@ static int ff_mov_lang_to_iso639(int code, char *to)
...
@@ -382,7 +382,6 @@ static int ff_mov_lang_to_iso639(int code, char *to)
return
1
;
return
1
;
}
}
extern
int
ff_mov_iso639_to_lang
(
const
char
*
lang
,
int
mp4
);
/* for movenc.c */
int
ff_mov_iso639_to_lang
(
const
char
*
lang
,
int
mp4
)
int
ff_mov_iso639_to_lang
(
const
char
*
lang
,
int
mp4
)
{
{
int
i
,
code
=
0
;
int
i
,
code
=
0
;
...
...
libavformat/mov.h
View file @
98d12b09
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
/* mov.c */
/* mov.c */
extern
const
CodecTag
ff_mov_obj_type
[];
extern
const
CodecTag
ff_mov_obj_type
[];
extern
int
ff_mov_iso639_to_lang
(
const
char
*
lang
,
int
mp4
);
typedef
struct
Time2Sample
{
typedef
struct
Time2Sample
{
int
count
;
int
count
;
...
...
libavformat/movenc.c
View file @
98d12b09
...
@@ -76,9 +76,6 @@ typedef struct MOVContext {
...
@@ -76,9 +76,6 @@ typedef struct MOVContext {
static
int
mov_write_esds_tag
(
ByteIOContext
*
pb
,
MOVTrack
*
track
);
static
int
mov_write_esds_tag
(
ByteIOContext
*
pb
,
MOVTrack
*
track
);
/* output language code from iso639 language name */
extern
int
ff_mov_iso639_to_lang
(
const
char
*
lang
,
int
mp4
);
//FIXME supprt 64bit varaint with wide placeholders
//FIXME supprt 64bit varaint with wide placeholders
static
offset_t
updateSize
(
ByteIOContext
*
pb
,
offset_t
pos
)
static
offset_t
updateSize
(
ByteIOContext
*
pb
,
offset_t
pos
)
{
{
...
...
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