mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
typo
Originally committed as revision 6934 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
80d617f5b4
commit
9d210bb42b
@ -362,7 +362,7 @@ static void mpeg1_encode_sequence_header(MpegEncContext *s)
|
||||
/* only works for NTSC 29.97 */
|
||||
int d = time_code / 17982;
|
||||
int m = time_code % 17982;
|
||||
//if (m < 2) m += 2; /* not needed since -2,-1 / 2 in C returns 0 */
|
||||
//if (m < 2) m += 2; /* not needed since -2,-1 / 1798 in C returns 0 */
|
||||
time_code += 18 * d + 2 * ((m - 2) / 1798);
|
||||
}
|
||||
put_bits(&s->pb, 5, (uint32_t)((time_code / (fps * 3600)) % 24));
|
||||
|
Loading…
Reference in New Issue
Block a user