diff options
author | David Conrad <lessen42@gmail.com> | 2009-01-17 23:54:27 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-01-17 23:54:27 +0000 |
commit | d43b26ea13b4dd3d386f83ad938876608acd6876 (patch) | |
tree | 9f4d1c5e29b0755d480ab5d33c1e417207fe8034 /ffmpeg.c | |
parent | 9dbd3ed6c37d6df1a8846c558c504aa4578d92ae (diff) | |
download | ffmpeg-d43b26ea13b4dd3d386f83ad938876608acd6876.tar.gz |
Copy width/height for subtitle streams (needed for scodec copy of mov/mp4
timed text)
Originally committed as revision 16662 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1779,6 +1779,8 @@ static int av_encode(AVFormatContext **output_files, codec->has_b_frames = icodec->has_b_frames; break; case CODEC_TYPE_SUBTITLE: + codec->width = icodec->width; + codec->height = icodec->height; break; default: abort(); |