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
508998f7
Commit
508998f7
authored
Jun 15, 2013
by
Luca Barbato
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avf: move riff tags accessors where they belong
parent
ec7c51c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
riff.c
libavformat/riff.c
+10
-0
utils.c
libavformat/utils.c
+0
-9
No files found.
libavformat/riff.c
View file @
508998f7
...
...
@@ -411,6 +411,16 @@ enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
return
AV_CODEC_ID_NONE
;
}
const
struct
AVCodecTag
*
avformat_get_riff_video_tags
(
void
)
{
return
ff_codec_bmp_tags
;
}
const
struct
AVCodecTag
*
avformat_get_riff_audio_tags
(
void
)
{
return
ff_codec_wav_tags
;
}
#if CONFIG_MUXERS
int64_t
ff_start_tag
(
AVIOContext
*
pb
,
const
char
*
tag
)
{
...
...
libavformat/utils.c
View file @
508998f7
...
...
@@ -3398,12 +3398,3 @@ int ff_add_param_change(AVPacket *pkt, int32_t channels,
}
return
0
;
}
const
struct
AVCodecTag
*
avformat_get_riff_video_tags
(
void
)
{
return
ff_codec_bmp_tags
;
}
const
struct
AVCodecTag
*
avformat_get_riff_audio_tags
(
void
)
{
return
ff_codec_wav_tags
;
}
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