mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit 'a823d0948683bd97dd58556b5740e434166209a8'
* commit 'a823d0948683bd97dd58556b5740e434166209a8': matroskaenc: write private data in hvcC format for HEVC. Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
38aee6408a
|
@ -203,7 +203,7 @@ OBJS-$(CONFIG_M4V_MUXER) += rawenc.o
|
||||||
OBJS-$(CONFIG_MATROSKA_DEMUXER) += matroskadec.o matroska.o \
|
OBJS-$(CONFIG_MATROSKA_DEMUXER) += matroskadec.o matroska.o \
|
||||||
isom.o rmsipr.o
|
isom.o rmsipr.o
|
||||||
OBJS-$(CONFIG_MATROSKA_MUXER) += matroskaenc.o matroska.o \
|
OBJS-$(CONFIG_MATROSKA_MUXER) += matroskaenc.o matroska.o \
|
||||||
isom.o avc.o \
|
isom.o avc.o hevc.o \
|
||||||
flacenc_header.o avlanguage.o wv.o
|
flacenc_header.o avlanguage.o wv.o
|
||||||
OBJS-$(CONFIG_MD5_MUXER) += md5enc.o
|
OBJS-$(CONFIG_MD5_MUXER) += md5enc.o
|
||||||
OBJS-$(CONFIG_MGSTS_DEMUXER) += mgsts.o
|
OBJS-$(CONFIG_MGSTS_DEMUXER) += mgsts.o
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "avc.h"
|
#include "avc.h"
|
||||||
|
#include "hevc.h"
|
||||||
#include "avformat.h"
|
#include "avformat.h"
|
||||||
#include "avio_internal.h"
|
#include "avio_internal.h"
|
||||||
#include "avlanguage.h"
|
#include "avlanguage.h"
|
||||||
|
@ -532,6 +533,8 @@ static int mkv_write_codecprivate(AVFormatContext *s, AVIOContext *pb, AVCodecCo
|
||||||
ret = put_wv_codecpriv(dyn_cp, codec);
|
ret = put_wv_codecpriv(dyn_cp, codec);
|
||||||
else if (codec->codec_id == AV_CODEC_ID_H264)
|
else if (codec->codec_id == AV_CODEC_ID_H264)
|
||||||
ret = ff_isom_write_avcc(dyn_cp, codec->extradata, codec->extradata_size);
|
ret = ff_isom_write_avcc(dyn_cp, codec->extradata, codec->extradata_size);
|
||||||
|
else if (codec->codec_id == AV_CODEC_ID_HEVC)
|
||||||
|
ret = ff_isom_write_hvcc(dyn_cp, codec->extradata, codec->extradata_size, 0);
|
||||||
else if (codec->codec_id == AV_CODEC_ID_ALAC) {
|
else if (codec->codec_id == AV_CODEC_ID_ALAC) {
|
||||||
if (codec->extradata_size < 36) {
|
if (codec->extradata_size < 36) {
|
||||||
av_log(s, AV_LOG_ERROR,
|
av_log(s, AV_LOG_ERROR,
|
||||||
|
|
Loading…
Reference in New Issue