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
58b619c8
Commit
58b619c8
authored
Oct 16, 2012
by
Victor Vasiliev
Committed by
Anton Khirnov
Oct 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wav muxer: write metadata
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
0bca0283
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
Changelog
Changelog
+1
-0
version.h
libavformat/version.h
+1
-1
wav.c
libavformat/wav.c
+3
-0
No files found.
Changelog
View file @
58b619c8
...
...
@@ -2,6 +2,7 @@ Entries are sorted chronologically from oldest to youngest within each release,
releases are sorted from youngest to oldest.
version <next>:
- metadata (INFO tag) support in WAV muxer
version 9_beta1:
...
...
libavformat/version.h
View file @
58b619c8
...
...
@@ -30,7 +30,7 @@
#include "libavutil/avutil.h"
#define LIBAVFORMAT_VERSION_MAJOR 54
#define LIBAVFORMAT_VERSION_MINOR 1
8
#define LIBAVFORMAT_VERSION_MINOR 1
9
#define LIBAVFORMAT_VERSION_MICRO 0
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
...
...
libavformat/wav.c
View file @
58b619c8
...
...
@@ -135,6 +135,9 @@ static int wav_write_header(AVFormatContext *s)
wav
->
maxpts
=
wav
->
last_duration
=
0
;
wav
->
minpts
=
INT64_MAX
;
/* info header */
ff_riff_write_info
(
s
);
/* data header */
wav
->
data
=
ff_start_tag
(
pb
,
"data"
);
...
...
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