Re: [FFmpeg-devel] [PATCH] ivfenc: Add VPX codec tags.

2016-09-09 Thread Carl Eugen Hoyos
2016-09-09 17:11 GMT+02:00 Alex Converse :
> This fixes remuxing VPX from MP4 without manually overwriting the tag.

Please push anytime.

Carl Euigen
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH] ivfenc: Add VPX codec tags.

2016-09-09 Thread Alex Converse
This fixes remuxing VPX from MP4 without manually overwriting the tag.
---
 libavformat/ivfenc.c | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/libavformat/ivfenc.c b/libavformat/ivfenc.c
index 5dbcd97..f3ae4dc 100644
--- a/libavformat/ivfenc.c
+++ b/libavformat/ivfenc.c
@@ -97,6 +97,12 @@ static int ivf_check_bitstream(struct AVFormatContext *s, 
const AVPacket *pkt)
 return ret;
 }
 
+static const AVCodecTag codec_ivf_tags[] = {
+{ AV_CODEC_ID_VP8,  MKTAG('V', 'P', '8', '0') },
+{ AV_CODEC_ID_VP9,  MKTAG('V', 'P', '9', '0') },
+{ AV_CODEC_ID_NONE, 0 }
+};
+
 AVOutputFormat ff_ivf_muxer = {
 .priv_data_size = sizeof(IVFEncContext),
 .name = "ivf",
@@ -108,4 +114,5 @@ AVOutputFormat ff_ivf_muxer = {
 .write_packet = ivf_write_packet,
 .write_trailer = ivf_write_trailer,
 .check_bitstream = ivf_check_bitstream,
+.codec_tag= (const AVCodecTag* const []){ codec_ivf_tags, 0 },
 };
-- 
2.8.0.rc3.226.g39d4020

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel