git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3c432e1
)
mxfenc: small typo fix
author
Clément Bœsch
<clement.boesch@smartjog.com>
Mon, 4 Jul 2011 08:19:47 +0000
(10:19 +0200)
committer
Diego Biurrun
<diego@biurrun.de>
Mon, 4 Jul 2011 10:54:26 +0000
(12:54 +0200)
Signed-off-by: Diego Biurrun <diego@biurrun.de>
libavformat/mxfenc.c
patch
|
blob
|
history
diff --git
a/libavformat/mxfenc.c
b/libavformat/mxfenc.c
index
c448e14
..
c87f233
100644
(file)
--- a/
libavformat/mxfenc.c
+++ b/
libavformat/mxfenc.c
@@
-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) << 8) | // units of minutes
(0 << 7) | // b1
- (0 << 6) | // b2 (NSC), field phase (PAL)
+ (0 << 6) | // b2 (N
T
SC), field phase (PAL)
((((frame / (fps * 3600) % 24)) / 10) << 4) | // tens of hours
( (frame / (fps * 3600) % 24)) % 10; // units of hours
}