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
1a193c43
Commit
1a193c43
authored
Jan 19, 2014
by
wm4
Committed by
Michael Niedermayer
Jan 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf: add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
fde2afd9
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
1 deletion
+21
-1
APIchanges
doc/APIchanges
+3
-0
avformat.h
libavformat/avformat.h
+8
-0
isom.c
libavformat/isom.c
+9
-0
version.h
libavformat/version.h
+1
-1
No files found.
doc/APIchanges
View file @
1a193c43
...
@@ -15,6 +15,9 @@ libavutil: 2012-10-22
...
@@ -15,6 +15,9 @@ libavutil: 2012-10-22
API changes, most recent first:
API changes, most recent first:
2014-01-19 - xxxxxxx - lavf 55.25.100 - avformat.h
Add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags().
2014-01-19 - xxxxxxx - lavu 52.63.100 - rational.h
2014-01-19 - xxxxxxx - lavu 52.63.100 - rational.h
Add av_make_q() function.
Add av_make_q() function.
...
...
libavformat/avformat.h
View file @
1a193c43
...
@@ -2188,6 +2188,14 @@ const struct AVCodecTag *avformat_get_riff_video_tags(void);
...
@@ -2188,6 +2188,14 @@ const struct AVCodecTag *avformat_get_riff_video_tags(void);
* @return the table mapping RIFF FourCCs for audio to AVCodecID.
* @return the table mapping RIFF FourCCs for audio to AVCodecID.
*/
*/
const
struct
AVCodecTag
*
avformat_get_riff_audio_tags
(
void
);
const
struct
AVCodecTag
*
avformat_get_riff_audio_tags
(
void
);
/**
* @return the table mapping MOV FourCCs for video to libavcodec AVCodecID.
*/
const
struct
AVCodecTag
*
avformat_get_mov_video_tags
(
void
);
/**
* @return the table mapping MOV FourCCs for audio to AVCodecID.
*/
const
struct
AVCodecTag
*
avformat_get_mov_audio_tags
(
void
);
/**
/**
* @}
* @}
...
...
libavformat/isom.c
View file @
1a193c43
...
@@ -574,3 +574,12 @@ void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout)
...
@@ -574,3 +574,12 @@ void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout)
avio_wb32
(
pb
,
0
);
// mNumberChannelDescriptions
avio_wb32
(
pb
,
0
);
// mNumberChannelDescriptions
}
}
const
struct
AVCodecTag
*
avformat_get_mov_video_tags
(
void
)
{
return
ff_codec_movvideo_tags
;
}
const
struct
AVCodecTag
*
avformat_get_mov_audio_tags
(
void
)
{
return
ff_codec_movaudio_tags
;
}
libavformat/version.h
View file @
1a193c43
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#include "libavutil/version.h"
#include "libavutil/version.h"
#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MAJOR 55
#define LIBAVFORMAT_VERSION_MINOR 2
4
#define LIBAVFORMAT_VERSION_MINOR 2
5
#define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_MICRO 100
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
...
...
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