Commit ff8cc24b authored by Michael Niedermayer's avatar Michael Niedermayer

init has_b_frames for stream copy

Originally committed as revision 4060 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d07355da
...@@ -1533,6 +1533,7 @@ static int av_encode(AVFormatContext **output_files, ...@@ -1533,6 +1533,7 @@ static int av_encode(AVFormatContext **output_files,
codec->frame_rate_base = icodec->frame_rate_base; codec->frame_rate_base = icodec->frame_rate_base;
codec->width = icodec->width; codec->width = icodec->width;
codec->height = icodec->height; codec->height = icodec->height;
codec->has_b_frames = icodec->has_b_frames;
break; break;
default: default:
av_abort(); av_abort();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment