This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
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
tags/v0.5
David Conrad
17 years ago
parent
9dbd3ed6c3
commit
d43b26ea13
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
ffmpeg.c
+ 2
- 0
ffmpeg.c
View File
@@ -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();
Write
Preview
Loading…
Cancel
Save