mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Add a comment about swapped numerator and denominator.
Originally committed as revision 7871 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
9b1a3ea0de
commit
013591c5f2
@ -92,6 +92,8 @@ static int encode_init(AVCodecContext* avc_context)
|
||||
t_info.frame_height = avc_context->height;
|
||||
t_info.offset_x = 0;
|
||||
t_info.offset_y = 0;
|
||||
/* Swap numerator and denominator as time_base in AVCodecContext gives the
|
||||
* time period between frames, but theora_info needs the framerate. */
|
||||
t_info.fps_numerator = avc_context->time_base.den;
|
||||
t_info.fps_denominator = avc_context->time_base.num;
|
||||
if (avc_context->sample_aspect_ratio.num != 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user