forked from FFmpeg/FFmpeg
mxfenc: small typo fix
Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
parent
3c432e1186
commit
19b6127365
1 changed files with 1 additions and 1 deletions
|
@ -1549,7 +1549,7 @@ static uint32_t ff_framenum_to_12m_time_code(unsigned frame, int drop, int fps)
|
||||||
((((frame / (fps * 60)) % 60) / 10) << 12) | // tens of minutes
|
((((frame / (fps * 60)) % 60) / 10) << 12) | // tens of minutes
|
||||||
((((frame / (fps * 60)) % 60) % 10) << 8) | // units of minutes
|
((((frame / (fps * 60)) % 60) % 10) << 8) | // units of minutes
|
||||||
(0 << 7) | // b1
|
(0 << 7) | // b1
|
||||||
(0 << 6) | // b2 (NSC), field phase (PAL)
|
(0 << 6) | // b2 (NTSC), field phase (PAL)
|
||||||
((((frame / (fps * 3600) % 24)) / 10) << 4) | // tens of hours
|
((((frame / (fps * 3600) % 24)) / 10) << 4) | // tens of hours
|
||||||
( (frame / (fps * 3600) % 24)) % 10; // units of hours
|
( (frame / (fps * 3600) % 24)) % 10; // units of hours
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue