Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
34aa1454
Commit
34aa1454
authored
Oct 11, 2016
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/aiffenc: Write extradata also for qcelp.
Fixes ticket #4009.
parent
4147d8ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
aiffenc.c
libavformat/aiffenc.c
+2
-1
version.h
libavformat/version.h
+1
-1
No files found.
libavformat/aiffenc.c
View file @
34aa1454
...
...
@@ -185,7 +185,8 @@ static int aiff_write_header(AVFormatContext *s)
avio_wb16
(
pb
,
0
);
}
if
(
par
->
codec_tag
==
MKTAG
(
'Q'
,
'D'
,
'M'
,
'2'
)
&&
par
->
extradata_size
)
{
if
(
(
par
->
codec_tag
==
MKTAG
(
'Q'
,
'D'
,
'M'
,
'2'
)
||
par
->
codec_tag
==
MKTAG
(
'Q'
,
'c'
,
'l'
,
'p'
))
&&
par
->
extradata_size
)
{
ffio_wfourcc
(
pb
,
"wave"
);
avio_wb32
(
pb
,
par
->
extradata_size
);
avio_write
(
pb
,
par
->
extradata
,
par
->
extradata_size
);
...
...
libavformat/version.h
View file @
34aa1454
...
...
@@ -33,7 +33,7 @@
// Also please add any ticket numbers that you believe might be affected here
#define LIBAVFORMAT_VERSION_MAJOR 57
#define LIBAVFORMAT_VERSION_MINOR 51
#define LIBAVFORMAT_VERSION_MICRO 10
4
#define LIBAVFORMAT_VERSION_MICRO 10
5
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
LIBAVFORMAT_VERSION_MINOR, \
...
...
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