Commit 73bb20eb authored by michael's avatar michael

pass frame_size for stream copy


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2943 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c92e5906
...@@ -1202,6 +1202,7 @@ static int av_encode(AVFormatContext **output_files, ...@@ -1202,6 +1202,7 @@ static int av_encode(AVFormatContext **output_files,
case CODEC_TYPE_AUDIO: case CODEC_TYPE_AUDIO:
codec->sample_rate = icodec->sample_rate; codec->sample_rate = icodec->sample_rate;
codec->channels = icodec->channels; codec->channels = icodec->channels;
codec->frame_size = icodec->frame_size;
break; break;
case CODEC_TYPE_VIDEO: case CODEC_TYPE_VIDEO:
codec->frame_rate = icodec->frame_rate; codec->frame_rate = icodec->frame_rate;
......
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