Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-12-20 15:55:40 +0300
committerMichael Niedermayer <michaelni@gmx.at>2004-12-20 15:55:40 +0300
commitc13449112b587e04f298d05340546d994f795e96 (patch)
tree959038247a91df1f29d5222afa35e6bca908d443
parent650cec0c8c9b07943d4dbfdbbe56fb8f5d99d7ee (diff)
stream copy block_align
Originally committed as revision 3766 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--ffmpeg.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index d020b468b3..85633ee2c9 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1519,6 +1519,7 @@ static int av_encode(AVFormatContext **output_files,
codec->sample_rate = icodec->sample_rate;
codec->channels = icodec->channels;
codec->frame_size = icodec->frame_size;
+ codec->block_align= icodec->block_align;
break;
case CODEC_TYPE_VIDEO:
codec->frame_rate = icodec->frame_rate;