2008-06-02 17:41:35 -04:00
|
|
|
/*
|
2019-08-02 23:10:55 -04:00
|
|
|
* Copyright (C) 2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
#define Timecode_IS_AROUND_ZERO(sm) (!(sm).frames && !(sm).seconds && !(sm).minutes && !(sm).hours)
|
|
|
|
#define Timecode_IS_ZERO(sm) (!(sm).frames && !(sm).seconds && !(sm).minutes && !(sm).hours && !(sm.subframes))
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-12-13 15:46:07 -05:00
|
|
|
#include <math.h>
|
2012-10-13 19:27:40 -04:00
|
|
|
#include <stdio.h>
|
2012-11-13 15:29:28 -05:00
|
|
|
#include <stdlib.h>
|
2010-12-13 15:46:07 -05:00
|
|
|
|
2017-09-24 12:03:54 -04:00
|
|
|
#include "temporal/time.h"
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
namespace Timecode {
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2012-11-09 02:48:06 -05:00
|
|
|
double Time::default_rate = 30.0;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/** Increment @a timecode by exactly one sample (keep subframes value).
|
2008-06-02 17:41:35 -04:00
|
|
|
* Realtime safe.
|
|
|
|
* @return true if seconds wrap.
|
|
|
|
*/
|
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
increment (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.negative) {
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_AROUND_ZERO (timecode) && timecode.subframes) {
|
2008-06-02 17:41:35 -04:00
|
|
|
// We have a zero transition involving only subframes
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes = subframes_per_frame - timecode.subframes;
|
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
return SECONDS;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = decrement (timecode, subframes_per_frame);
|
|
|
|
if (!Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
return wrap;
|
|
|
|
}
|
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
switch ((int)ceil (timecode.rate)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
case 24:
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.frames == 23) {
|
|
|
|
timecode.frames = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 25:
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.frames == 24) {
|
|
|
|
timecode.frames = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 30:
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.drop) {
|
|
|
|
if (timecode.frames == 29) {
|
|
|
|
if (((timecode.minutes + 1) % 10) && (timecode.seconds == 59)) {
|
|
|
|
timecode.frames = 2;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
timecode.frames = 0;
|
|
|
|
}
|
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.frames == 29) {
|
|
|
|
timecode.frames = 0;
|
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 60:
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.frames == 59) {
|
|
|
|
timecode.frames = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (wrap == SECONDS) {
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.seconds == 59) {
|
|
|
|
timecode.seconds = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = MINUTES;
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.minutes == 59) {
|
|
|
|
timecode.minutes = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = HOURS;
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.hours++;
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.minutes++;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.seconds++;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.frames++;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/** Decrement @a timecode by exactly one sample (keep subframes value)
|
2008-06-02 17:41:35 -04:00
|
|
|
* Realtime safe.
|
|
|
|
* @return true if seconds wrap. */
|
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
decrement (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.negative || Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment (timecode, subframes_per_frame);
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
2010-12-14 14:07:50 -05:00
|
|
|
} else if (Timecode_IS_AROUND_ZERO (timecode) && timecode.subframes) {
|
2008-06-02 17:41:35 -04:00
|
|
|
// We have a zero transition involving only subframes
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes = subframes_per_frame - timecode.subframes;
|
|
|
|
timecode.negative = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
return SECONDS;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
switch ((int)ceil (timecode.rate)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
case 24:
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.frames == 0) {
|
|
|
|
timecode.frames = 23;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 25:
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.frames == 0) {
|
|
|
|
timecode.frames = 24;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 30:
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.drop) {
|
|
|
|
if ((timecode.minutes % 10) && (timecode.seconds == 0)) {
|
|
|
|
if (timecode.frames <= 2) {
|
|
|
|
timecode.frames = 29;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
2009-10-26 10:38:58 -04:00
|
|
|
} else if (timecode.frames == 0) {
|
2010-12-14 14:07:50 -05:00
|
|
|
timecode.frames = 29;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.frames == 0) {
|
|
|
|
timecode.frames = 29;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 60:
|
2010-12-14 14:07:50 -05:00
|
|
|
if (timecode.frames == 0) {
|
|
|
|
timecode.frames = 59;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = SECONDS;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (wrap == SECONDS) {
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.seconds == 0) {
|
|
|
|
timecode.seconds = 59;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = MINUTES;
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.minutes == 0) {
|
|
|
|
timecode.minutes = 59;
|
2008-06-02 17:41:35 -04:00
|
|
|
wrap = HOURS;
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.hours--;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.minutes--;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.seconds--;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.frames--;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/** Go to lowest absolute subframe value in this sample (set to 0 :-)) */
|
2008-06-02 17:41:35 -04:00
|
|
|
void
|
2017-09-18 12:39:17 -04:00
|
|
|
frames_floot (Time& timecode)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes = 0;
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
/** Increment @a timecode by one subframe */
|
2008-06-02 17:41:35 -04:00
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
increment_subframes (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.negative) {
|
|
|
|
timecode.negative = false;
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = decrement_subframes (timecode, subframes_per_frame);
|
|
|
|
if (!Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
return wrap;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes++;
|
|
|
|
if (timecode.subframes >= subframes_per_frame) {
|
|
|
|
timecode.subframes = 0;
|
2010-12-14 14:07:50 -05:00
|
|
|
increment (timecode, subframes_per_frame);
|
2008-06-02 17:41:35 -04:00
|
|
|
return FRAMES;
|
|
|
|
}
|
|
|
|
return NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
/** Decrement @a timecode by one subframe */
|
2008-06-02 17:41:35 -04:00
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
decrement_subframes (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.negative) {
|
|
|
|
timecode.negative = false;
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment_subframes (timecode, subframes_per_frame);
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = true;
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.subframes <= 0) {
|
|
|
|
timecode.subframes = 0;
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = true;
|
|
|
|
timecode.subframes = 1;
|
2008-06-02 17:41:35 -04:00
|
|
|
return FRAMES;
|
|
|
|
} else {
|
2010-12-14 14:07:50 -05:00
|
|
|
decrement (timecode, subframes_per_frame);
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes = 79;
|
2008-06-02 17:41:35 -04:00
|
|
|
return FRAMES;
|
|
|
|
}
|
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes--;
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
return NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 13:19:12 -04:00
|
|
|
/** Go to next whole second (frames == 0 or frames == 2) */
|
2008-06-02 17:41:35 -04:00
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
increment_seconds (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
// Clear subframes
|
2017-09-18 12:39:17 -04:00
|
|
|
frames_floot (timecode);
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.negative) {
|
2008-06-02 17:41:35 -04:00
|
|
|
// Wrap second if on second boundary
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment (timecode, subframes_per_frame);
|
2017-09-18 13:19:12 -04:00
|
|
|
// Go to lowest absolute frame value
|
2010-12-14 14:07:50 -05:00
|
|
|
seconds_floor (timecode);
|
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
} else {
|
2017-09-18 13:19:12 -04:00
|
|
|
// Go to highest possible frame in this second
|
2010-12-14 14:07:50 -05:00
|
|
|
switch ((int)ceil (timecode.rate)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
case 24:
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.frames = 23;
|
2008-06-02 17:41:35 -04:00
|
|
|
break;
|
|
|
|
case 25:
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.frames = 24;
|
2008-06-02 17:41:35 -04:00
|
|
|
break;
|
|
|
|
case 30:
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.frames = 29;
|
2008-06-02 17:41:35 -04:00
|
|
|
break;
|
|
|
|
case 60:
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.frames = 59;
|
2008-06-02 17:41:35 -04:00
|
|
|
break;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2017-09-18 13:19:12 -04:00
|
|
|
// Increment by one frame
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment (timecode, subframes_per_frame);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 13:19:12 -04:00
|
|
|
/** Go to lowest (absolute) frame value in this second
|
2008-06-02 17:41:35 -04:00
|
|
|
* Doesn't care about positive/negative */
|
|
|
|
void
|
2010-12-14 14:07:50 -05:00
|
|
|
seconds_floor (Time& timecode)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
// Clear subframes
|
2017-09-18 12:39:17 -04:00
|
|
|
frames_floot (timecode);
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2017-09-18 13:19:12 -04:00
|
|
|
// Go to lowest possible frame in this second
|
2010-12-14 14:07:50 -05:00
|
|
|
switch ((int)ceil (timecode.rate)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
case 24:
|
|
|
|
case 25:
|
|
|
|
case 30:
|
|
|
|
case 60:
|
2010-12-14 14:07:50 -05:00
|
|
|
if (!(timecode.drop)) {
|
|
|
|
timecode.frames = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
2010-12-14 14:07:50 -05:00
|
|
|
if ((timecode.minutes % 10) && (timecode.seconds == 0)) {
|
|
|
|
timecode.frames = 2;
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
2010-12-14 14:07:50 -05:00
|
|
|
timecode.frames = 0;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 13:19:12 -04:00
|
|
|
/** Go to next whole minute (seconds == 0, frames == 0 or frames == 2) */
|
2008-06-02 17:41:35 -04:00
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
increment_minutes (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
// Clear subframes
|
2017-09-18 12:39:17 -04:00
|
|
|
frames_floot (timecode);
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.negative) {
|
2008-06-02 17:41:35 -04:00
|
|
|
// Wrap if on minute boundary
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment_seconds (timecode, subframes_per_frame);
|
2008-06-02 17:41:35 -04:00
|
|
|
// Go to lowest possible value in this minute
|
2010-12-14 14:07:50 -05:00
|
|
|
minutes_floor (timecode);
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
|
|
|
// Go to highest possible second
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.seconds = 59;
|
2008-06-02 17:41:35 -04:00
|
|
|
// Wrap minute by incrementing second
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment_seconds (timecode, subframes_per_frame);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Go to lowest absolute value in this minute */
|
|
|
|
void
|
2010-12-14 14:07:50 -05:00
|
|
|
minutes_floor (Time& timecode)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
// Go to lowest possible second
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.seconds = 0;
|
2017-09-18 13:19:12 -04:00
|
|
|
// Go to lowest possible frame
|
2010-12-14 14:07:50 -05:00
|
|
|
seconds_floor (timecode);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-18 13:19:12 -04:00
|
|
|
/** Go to next whole hour (minute = 0, second = 0, frame = 0) */
|
2008-06-02 17:41:35 -04:00
|
|
|
Wrap
|
2010-12-14 14:07:50 -05:00
|
|
|
increment_hours (Time& timecode, uint32_t subframes_per_frame)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
Wrap wrap = NONE;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
// Clear subframes
|
2017-09-18 12:39:17 -04:00
|
|
|
frames_floot (timecode);
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
if (timecode.negative) {
|
2008-06-02 17:41:35 -04:00
|
|
|
// Wrap if on hour boundary
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment_minutes (timecode, subframes_per_frame);
|
2008-06-02 17:41:35 -04:00
|
|
|
// Go to lowest possible value in this hour
|
2010-12-14 14:07:50 -05:00
|
|
|
hours_floor(timecode);
|
2008-06-02 17:41:35 -04:00
|
|
|
} else {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.minutes = 59;
|
2010-12-14 14:07:50 -05:00
|
|
|
wrap = increment_minutes (timecode, subframes_per_frame);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
return wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Go to lowest absolute value in this hour */
|
|
|
|
void
|
2010-12-14 14:07:50 -05:00
|
|
|
hours_floor(Time& timecode)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2010-12-14 14:07:50 -05:00
|
|
|
timecode.minutes = 0;
|
|
|
|
timecode.seconds = 0;
|
|
|
|
timecode.frames = 0;
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.subframes = 0;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2010-12-14 14:07:50 -05:00
|
|
|
if (Timecode_IS_ZERO (timecode)) {
|
2009-10-26 10:38:58 -04:00
|
|
|
timecode.negative = false;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-09 02:48:06 -05:00
|
|
|
double
|
2012-10-11 21:08:29 -04:00
|
|
|
timecode_to_frames_per_second(TimecodeFormat t)
|
|
|
|
{
|
|
|
|
switch (t) {
|
2017-09-18 13:24:04 -04:00
|
|
|
case timecode_23976:
|
|
|
|
return (24000.0/1001.0); //23.976;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_24:
|
|
|
|
return 24;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_24976:
|
|
|
|
return (25000.0/1001.0); //24.976;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_25:
|
|
|
|
return 25;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997:
|
|
|
|
return (30000.0/1001.0); //29.97;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997drop:
|
|
|
|
return (30000.0/1001.0); //29.97;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997000:
|
|
|
|
return 29.97;
|
2012-11-07 18:02:11 -05:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997000drop:
|
|
|
|
return 29.97;
|
2012-11-07 18:02:11 -05:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_30:
|
|
|
|
return 30;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_30drop:
|
|
|
|
return 30;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_5994:
|
|
|
|
return (60000.0/1001.0); //59.94;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_60:
|
|
|
|
return 60;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//std::cerr << "Editor received unexpected timecode type" << std::endl;
|
|
|
|
break;
|
2012-10-11 21:08:29 -04:00
|
|
|
}
|
|
|
|
return 30.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
timecode_has_drop_frames(TimecodeFormat t)
|
|
|
|
{
|
|
|
|
switch (t) {
|
2017-09-18 13:24:04 -04:00
|
|
|
case timecode_23976:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_24:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_24976:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_25:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997drop:
|
|
|
|
return true;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997000:
|
|
|
|
return false;
|
2012-11-07 18:02:11 -05:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997000drop:
|
|
|
|
return true;
|
2012-11-07 18:02:11 -05:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_30:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_30drop:
|
|
|
|
return true;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_5994:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_60:
|
|
|
|
return false;
|
2012-10-11 21:08:29 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
//error << "Editor received unexpected timecode type" << endmsg;
|
|
|
|
break;
|
2012-10-11 21:08:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2012-10-12 12:25:57 -04:00
|
|
|
std::string
|
|
|
|
timecode_format_name (TimecodeFormat const t)
|
|
|
|
{
|
|
|
|
switch (t) {
|
2017-09-18 13:24:04 -04:00
|
|
|
case timecode_23976:
|
|
|
|
return "23.98";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_24:
|
|
|
|
return "24";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_24976:
|
|
|
|
return "24.98";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_25:
|
|
|
|
return "25";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997000:
|
|
|
|
case timecode_2997:
|
|
|
|
return "29.97";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_2997000drop:
|
|
|
|
case timecode_2997drop:
|
|
|
|
return "29.97 drop";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_30:
|
|
|
|
return "30";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_30drop:
|
|
|
|
return "30 drop";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_5994:
|
|
|
|
return "59.94";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
case timecode_60:
|
|
|
|
return "60";
|
2012-10-12 12:25:57 -04:00
|
|
|
|
2017-09-18 13:24:04 -04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2012-10-12 12:25:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return "??";
|
|
|
|
}
|
|
|
|
|
2012-10-14 12:17:40 -04:00
|
|
|
std::string timecode_format_time (Timecode::Time TC)
|
2012-10-13 19:27:40 -04:00
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
if (TC.negative) {
|
2012-10-14 12:17:40 -04:00
|
|
|
snprintf (buf, sizeof (buf), "-%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 "%c%02" PRIu32,
|
2017-09-18 13:24:04 -04:00
|
|
|
TC.hours, TC.minutes, TC.seconds, TC.drop ? ';' : ':', TC.frames);
|
2012-10-13 19:27:40 -04:00
|
|
|
} else {
|
2012-10-14 12:17:40 -04:00
|
|
|
snprintf (buf, sizeof (buf), " %02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 "%c%02" PRIu32,
|
2017-09-18 13:24:04 -04:00
|
|
|
TC.hours, TC.minutes, TC.seconds, TC.drop ? ';' : ':', TC.frames);
|
2012-10-13 19:27:40 -04:00
|
|
|
}
|
|
|
|
return std::string(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string timecode_format_sampletime (
|
2017-09-18 13:24:04 -04:00
|
|
|
int64_t sample,
|
|
|
|
double sample_sample_rate,
|
|
|
|
double timecode_frames_per_second, bool timecode_drop_frames)
|
2012-10-13 19:27:40 -04:00
|
|
|
{
|
|
|
|
Time t;
|
|
|
|
sample_to_timecode(
|
2017-09-18 13:24:04 -04:00
|
|
|
sample, t, false, false,
|
|
|
|
timecode_frames_per_second, timecode_drop_frames,
|
|
|
|
sample_sample_rate,
|
|
|
|
80, false, 0);
|
2012-10-13 19:27:40 -04:00
|
|
|
return timecode_format_time(t);
|
|
|
|
}
|
|
|
|
|
2012-11-13 11:14:25 -05:00
|
|
|
bool parse_timecode_format(std::string tc, Timecode::Time &TC) {
|
|
|
|
char negative[2];
|
|
|
|
char ignored[2];
|
|
|
|
TC.subframes = 0;
|
|
|
|
if (sscanf (tc.c_str(), "%[- ]%" PRId32 ":%" PRId32 ":%" PRId32 "%[:;]%" PRId32,
|
2017-09-18 13:24:04 -04:00
|
|
|
negative, &TC.hours, &TC.minutes, &TC.seconds, ignored, &TC.frames) != 6) {
|
2012-11-13 11:14:25 -05:00
|
|
|
TC.hours = TC.minutes = TC.seconds = TC.frames = 0;
|
|
|
|
TC.negative = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (negative[0]=='-') {
|
|
|
|
TC.negative = true;
|
|
|
|
} else {
|
|
|
|
TC.negative = false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-10-13 19:27:40 -04:00
|
|
|
void
|
|
|
|
timecode_to_sample(
|
2019-09-30 15:00:29 -04:00
|
|
|
Timecode::Time const& timecode, int64_t& sample,
|
2017-09-18 13:24:04 -04:00
|
|
|
bool use_offset, bool use_subframes,
|
|
|
|
/* Note - framerate info is taken from Timecode::Time& */
|
|
|
|
double sample_sample_rate /**< may include pull up/down */,
|
|
|
|
uint32_t subframes_per_frame,
|
|
|
|
/* optional offset - can be improved: function pointer to lazily query this*/
|
|
|
|
bool offset_is_negative, int64_t offset_samples
|
|
|
|
)
|
2012-10-13 19:27:40 -04:00
|
|
|
{
|
2017-09-18 12:39:17 -04:00
|
|
|
const double samples_per_timecode_frame = (double) sample_sample_rate / (double) timecode.rate;
|
2012-10-13 19:27:40 -04:00
|
|
|
|
|
|
|
if (timecode.drop) {
|
2017-09-18 13:19:12 -04:00
|
|
|
// The drop frame format was created to better approximate the 30000/1001 = 29.97002997002997....
|
|
|
|
// framerate of NTSC color TV. The used frame rate of drop fra,e is 29.97, which drifts by about
|
|
|
|
// 0.108 frame per hour, or about 1.3 frames per 12 hours. This is not perfect, but a lot better
|
|
|
|
// than using 30 non drop, which will drift with about 1.8 frame per minute.
|
|
|
|
// Using 29.97, drop frame real time can be accurate only every 10th minute (10 minutes of 29.97 fps
|
|
|
|
// is exactly 17982 samples). One minute is 1798.2 samples, but we count 30 frames per second
|
2012-10-13 19:27:40 -04:00
|
|
|
// (30 * 60 = 1800). This means that at the first minute boundary (at the end of 0:0:59:29) we
|
2017-09-18 13:19:12 -04:00
|
|
|
// are 1.8 framess too late relative to real time. By dropping 2 frames (jumping to 0:1:0:2) we are
|
|
|
|
// approx. 0.2 frames too early. This adds up with 0.2 too early for each minute until we are 1.8
|
|
|
|
// samples too early at 0:9:0:2 (9 * 0.2 = 1.8). The 10th minute brings us 1.8 frames later again
|
2012-10-13 19:27:40 -04:00
|
|
|
// (at end of 0:9:59:29), which sums up to 0 (we are back to zero at 0:10:0:0 :-).
|
|
|
|
//
|
|
|
|
// In table form:
|
|
|
|
//
|
2017-09-18 13:19:12 -04:00
|
|
|
// Timecode value frames offset subframes offset seconds (rounded) 44100 sample (rounded)
|
2012-10-13 19:27:40 -04:00
|
|
|
// 0:00:00:00 0.0 0 0.000 0 (accurate)
|
|
|
|
// 0:00:59:29 1.8 144 60.027 2647177
|
|
|
|
// 0:01:00:02 -0.2 -16 60.060 2648648
|
|
|
|
// 0:01:59:29 1.6 128 120.020 5292883
|
|
|
|
// 0:02:00:02 -0.4 -32 120.053 5294354
|
|
|
|
// 0:02:59:29 1.4 112 180.013 7938588
|
|
|
|
// 0:03:00:02 -0.6 -48 180.047 7940060
|
|
|
|
// 0:03:59:29 1.2 96 240.007 10584294
|
|
|
|
// 0:04:00:02 -0.8 -64 240.040 10585766
|
|
|
|
// 0:04:59:29 1.0 80 300.000 13230000
|
|
|
|
// 0:05:00:02 -1.0 -80 300.033 13231471
|
|
|
|
// 0:05:59:29 0.8 64 359.993 15875706
|
|
|
|
// 0:06:00:02 -1.2 -96 360.027 15877177
|
|
|
|
// 0:06:59:29 0.6 48 419.987 18521411
|
|
|
|
// 0:07:00:02 -1.4 -112 420.020 18522883
|
|
|
|
// 0:07:59:29 0.4 32 478.980 21167117
|
|
|
|
// 0:08:00:02 -1.6 -128 480.013 21168589
|
|
|
|
// 0:08:59:29 0.2 16 539.973 23812823
|
|
|
|
// 0:09:00:02 -1.8 -144 540.007 23814294
|
|
|
|
// 0:09:59:29 0.0+ 0+ 599.967 26458529
|
|
|
|
// 0:10:00:00 0.0 0 600.000 26460000 (accurate)
|
|
|
|
//
|
|
|
|
// Per Sigmond <per@sigmond.no>
|
2012-11-12 21:00:49 -05:00
|
|
|
//
|
|
|
|
// This schma would compensate exactly for a frame-rate of 30 * 0.999. but the
|
|
|
|
// actual rate is 30000/1001 - which results in an offset of -3.6ms per hour or
|
|
|
|
// about -86ms over a 24-hour period. (SMPTE 12M-1999)
|
|
|
|
//
|
|
|
|
// Robin Gareus <robin@gareus.org>
|
|
|
|
|
|
|
|
const int64_t fps_i = ceil(timecode.rate);
|
|
|
|
int64_t totalMinutes = 60 * timecode.hours + timecode.minutes;
|
|
|
|
int64_t frameNumber = fps_i * 3600 * timecode.hours
|
|
|
|
+ fps_i * 60 * timecode.minutes
|
|
|
|
+ fps_i * timecode.seconds + timecode.frames
|
|
|
|
- 2 * (totalMinutes - totalMinutes / 10);
|
2017-09-18 12:39:17 -04:00
|
|
|
sample = frameNumber * sample_sample_rate / (double) timecode.rate;
|
2012-10-13 19:27:40 -04:00
|
|
|
} else {
|
|
|
|
/*
|
2017-09-18 13:24:04 -04:00
|
|
|
Non drop is easy.. just note the use of
|
|
|
|
rint(timecode.rate) * samples_per_timecode_frame
|
|
|
|
(frames per Timecode second), which is larger than
|
|
|
|
sample_rate() in the non-integer Timecode rate case.
|
2012-10-13 19:27:40 -04:00
|
|
|
*/
|
|
|
|
|
2014-07-06 16:43:53 -04:00
|
|
|
sample = (int64_t) rint(
|
2017-09-18 13:24:04 -04:00
|
|
|
(
|
|
|
|
((timecode.hours * 60 * 60) + (timecode.minutes * 60) + timecode.seconds)
|
|
|
|
*
|
|
|
|
(rint(timecode.rate) * samples_per_timecode_frame)
|
2014-07-06 16:43:53 -04:00
|
|
|
)
|
2017-09-18 13:24:04 -04:00
|
|
|
+ (timecode.frames * samples_per_timecode_frame)
|
2014-07-06 16:43:53 -04:00
|
|
|
);
|
2012-10-13 19:27:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (use_subframes) {
|
2016-12-08 06:26:41 -05:00
|
|
|
sample += (int64_t) rint(((double)timecode.subframes * samples_per_timecode_frame) / (double)subframes_per_frame);
|
2012-10-13 19:27:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (use_offset) {
|
|
|
|
if (offset_is_negative) {
|
|
|
|
if (sample >= offset_samples) {
|
|
|
|
sample -= offset_samples;
|
|
|
|
} else {
|
|
|
|
/* Prevent song-time from becoming negative */
|
|
|
|
sample = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (timecode.negative) {
|
|
|
|
if (sample <= offset_samples) {
|
|
|
|
sample = offset_samples - sample;
|
|
|
|
} else {
|
|
|
|
sample = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sample += offset_samples;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
sample_to_timecode (
|
2017-09-18 13:24:04 -04:00
|
|
|
int64_t sample, Timecode::Time& timecode,
|
|
|
|
bool use_offset, bool use_subframes,
|
|
|
|
/* framerate info */
|
|
|
|
double timecode_frames_per_second,
|
|
|
|
bool timecode_drop_frames,
|
|
|
|
double sample_sample_rate/**< can include pull up/down */,
|
|
|
|
uint32_t subframes_per_frame,
|
|
|
|
/* optional offset - can be improved: function pointer to lazily query this*/
|
|
|
|
bool offset_is_negative, int64_t offset_samples
|
|
|
|
)
|
2012-10-13 19:27:40 -04:00
|
|
|
{
|
|
|
|
int64_t offset_sample;
|
|
|
|
|
|
|
|
if (!use_offset) {
|
2012-11-13 15:29:28 -05:00
|
|
|
timecode.negative = (sample < 0);
|
2015-07-23 07:06:43 -04:00
|
|
|
offset_sample = ::llabs(sample);
|
2012-10-13 19:27:40 -04:00
|
|
|
} else {
|
|
|
|
if (offset_is_negative) {
|
|
|
|
offset_sample = sample + offset_samples;
|
|
|
|
timecode.negative = false;
|
|
|
|
} else {
|
|
|
|
if (sample < offset_samples) {
|
|
|
|
offset_sample = (offset_samples - sample);
|
|
|
|
timecode.negative = true;
|
|
|
|
} else {
|
|
|
|
offset_sample = sample - offset_samples;
|
|
|
|
timecode.negative = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-12 21:00:49 -05:00
|
|
|
if (timecode_drop_frames) {
|
2017-09-18 12:39:17 -04:00
|
|
|
int64_t frameNumber = floor( (double)offset_sample * timecode_frames_per_second / sample_sample_rate);
|
2012-10-13 19:27:40 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
/* there are 17982 samples in 10 min @ 29.97df */
|
2012-11-12 21:00:49 -05:00
|
|
|
const int64_t D = frameNumber / 17982;
|
|
|
|
const int64_t M = frameNumber % 17982;
|
2012-10-13 19:27:40 -04:00
|
|
|
|
2014-07-06 16:43:53 -04:00
|
|
|
timecode.subframes = rint(subframes_per_frame
|
2017-09-18 13:24:04 -04:00
|
|
|
* ((double)offset_sample * timecode_frames_per_second / sample_sample_rate - (double)frameNumber));
|
2012-10-13 19:27:40 -04:00
|
|
|
|
2012-11-18 04:53:11 -05:00
|
|
|
if (timecode.subframes == subframes_per_frame) {
|
|
|
|
timecode.subframes = 0;
|
|
|
|
frameNumber++;
|
|
|
|
}
|
|
|
|
|
2012-11-12 21:00:49 -05:00
|
|
|
frameNumber += 18*D + 2*((M - 2) / 1798);
|
2012-10-13 19:27:40 -04:00
|
|
|
|
2012-11-12 21:00:49 -05:00
|
|
|
timecode.frames = frameNumber % 30;
|
|
|
|
timecode.seconds = (frameNumber / 30) % 60;
|
|
|
|
timecode.minutes = ((frameNumber / 30) / 60) % 60;
|
|
|
|
timecode.hours = (((frameNumber / 30) / 60) / 60);
|
2012-10-13 19:27:40 -04:00
|
|
|
|
2012-11-12 21:00:49 -05:00
|
|
|
} else {
|
|
|
|
double timecode_frames_left_exact;
|
|
|
|
double timecode_frames_fraction;
|
|
|
|
int64_t timecode_frames_left;
|
2017-09-18 12:39:17 -04:00
|
|
|
const double samples_per_timecode_frame = sample_sample_rate / timecode_frames_per_second;
|
2016-12-08 06:26:41 -05:00
|
|
|
const int64_t frames_per_hour = (int64_t)(3600. * rint(timecode_frames_per_second) * samples_per_timecode_frame);
|
2012-10-13 19:27:40 -04:00
|
|
|
|
2012-11-12 21:00:49 -05:00
|
|
|
timecode.hours = offset_sample / frames_per_hour;
|
|
|
|
|
|
|
|
// Extract whole hours. Do this to prevent rounding errors with
|
|
|
|
// high sample numbers in the calculations that follow.
|
2016-12-08 06:26:41 -05:00
|
|
|
timecode_frames_left_exact = (double)(offset_sample % frames_per_hour) / samples_per_timecode_frame;
|
2012-11-12 21:00:49 -05:00
|
|
|
timecode_frames_fraction = timecode_frames_left_exact - floor( timecode_frames_left_exact );
|
|
|
|
|
2014-07-06 16:43:53 -04:00
|
|
|
timecode.subframes = (int32_t) rint(timecode_frames_fraction * subframes_per_frame);
|
2012-11-12 21:00:49 -05:00
|
|
|
timecode_frames_left = (int64_t) floor (timecode_frames_left_exact);
|
|
|
|
|
2013-08-04 10:22:00 -04:00
|
|
|
if (use_subframes && timecode.subframes == subframes_per_frame) {
|
2012-11-12 21:00:49 -05:00
|
|
|
timecode_frames_left++;
|
|
|
|
timecode.subframes = 0;
|
2012-10-13 19:27:40 -04:00
|
|
|
}
|
2012-11-12 21:00:49 -05:00
|
|
|
|
2014-01-13 09:26:19 -05:00
|
|
|
timecode.minutes = timecode_frames_left / ((int32_t) lrint (timecode_frames_per_second) * 60);
|
|
|
|
timecode_frames_left = timecode_frames_left % ((int32_t) lrint (timecode_frames_per_second) * 60);
|
|
|
|
timecode.seconds = timecode_frames_left / (int32_t) lrint(timecode_frames_per_second);
|
|
|
|
timecode.frames = timecode_frames_left % (int32_t) lrint(timecode_frames_per_second);
|
2012-10-13 19:27:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!use_subframes) {
|
|
|
|
timecode.subframes = 0;
|
|
|
|
}
|
2017-09-18 12:39:17 -04:00
|
|
|
/* set frame rate and drop sample */
|
2012-10-13 19:27:40 -04:00
|
|
|
timecode.rate = timecode_frames_per_second;
|
|
|
|
timecode.drop = timecode_drop_frames;
|
|
|
|
}
|
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
} // namespace Timecode
|
2009-11-29 17:06:51 -05:00
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
std::ostream&
|
|
|
|
operator<<(std::ostream& ostr, const Timecode::Time& t)
|
2009-11-29 17:06:51 -05:00
|
|
|
{
|
|
|
|
return t.print (ostr);
|
|
|
|
}
|