diff options
author | Mark Reid <mindmark@gmail.com> | 2016-07-22 13:30:14 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-07-23 03:52:38 +0200 |
commit | 0a088dea3d3335dee885c6486424337649ca2dba (patch) | |
tree | ddb07b79ee7cc21c787b0c7e53fd46174060e2ce | |
parent | db8e8c97311ab2fe65cd54acee8731f8b126302b (diff) | |
download | ffmpeg-0a088dea3d3335dee885c6486424337649ca2dba.tar.gz |
ffmpeg.c: copy video profile when using stream_copy
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | ffmpeg.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3019,6 +3019,7 @@ static int transcode_init(void) enc_ctx->width = dec_ctx->width; enc_ctx->height = dec_ctx->height; enc_ctx->has_b_frames = dec_ctx->has_b_frames; + enc_ctx->profile = dec_ctx->profile; if (ost->frame_aspect_ratio.num) { // overridden by the -aspect cli option sar = av_mul_q(ost->frame_aspect_ratio, |