mirror of https://git.ffmpeg.org/ffmpeg.git
Use the isom avcc formatting for h264 extradata in matroska.
Originally committed as revision 11499 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1bd2d763d4
commit
aacc5f227a
|
@ -24,6 +24,7 @@
|
|||
#include "riff.h"
|
||||
#include "xiph.h"
|
||||
#include "matroska.h"
|
||||
#include "avc.h"
|
||||
|
||||
typedef struct ebml_master {
|
||||
offset_t pos; ///< absolute offset in the file where the master's elements start
|
||||
|
@ -479,6 +480,8 @@ static int mkv_write_codecprivate(AVFormatContext *s, ByteIOContext *pb, AVCodec
|
|||
ret = put_xiph_codecpriv(s, dyn_cp, codec);
|
||||
else if (codec->codec_id == CODEC_ID_FLAC)
|
||||
ret = put_flac_codecpriv(s, dyn_cp, codec);
|
||||
else if (codec->codec_id == CODEC_ID_H264)
|
||||
ret = isom_write_avcc(dyn_cp, codec->extradata, codec->extradata_size);
|
||||
else if (codec->extradata_size)
|
||||
put_buffer(dyn_cp, codec->extradata, codec->extradata_size);
|
||||
} else if (codec->codec_type == CODEC_TYPE_VIDEO) {
|
||||
|
|
Loading…
Reference in New Issue