lumiera_/tests/basics/time/time-quantisation-test.cpp
Ichthyostega 806db414dd Copyright: clarify and simplify the file headers
* Lumiera source code always was copyrighted by individual contributors
 * there is no entity "Lumiera.org" which holds any copyrights
 * Lumiera source code is provided under the GPL Version 2+

== Explanations ==
Lumiera as a whole is distributed under Copyleft, GNU General Public License Version 2 or above.
For this to become legally effective, the ''File COPYING in the root directory is sufficient.''

The licensing header in each file is not strictly necessary, yet considered good practice;
attaching a licence notice increases the likeliness that this information is retained
in case someone extracts individual code files. However, it is not by the presence of some
text, that legally binding licensing terms become effective; rather the fact matters that a
given piece of code was provably copyrighted and published under a license. Even reformatting
the code, renaming some variables or deleting parts of the code will not alter this legal
situation, but rather creates a derivative work, which is likewise covered by the GPL!

The most relevant information in the file header is the notice regarding the
time of the first individual copyright claim. By virtue of this initial copyright,
the first author is entitled to choose the terms of licensing. All further
modifications are permitted and covered by the License. The specific wording
or format of the copyright header is not legally relevant, as long as the
intention to publish under the GPL remains clear. The extended wording was
based on a recommendation by the FSF. It can be shortened, because the full terms
of the license are provided alongside the distribution, in the file COPYING.
2024-11-17 23:42:55 +01:00

166 lines
5.1 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
TimeQuantisation(Test) - handling of virtually grid aligned time values
Copyright (C)
2010, Hermann Vosseler <Ichthyostega@web.de>
  **Lumiera** 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. See the file COPYING for further details.
* *****************************************************************/
/** @file time-quantisation-test.cpp
** unit test \ref TimeQuantisation_test
*/
#include "lib/test/run.hpp"
#include "lib/test/test-helper.hpp"
#include "steam/asset/meta/time-grid.hpp"
#include "lib/time/timequant.hpp"
#include "lib/format-cout.hpp"
#include "lib/util.hpp"
#include <boost/lexical_cast.hpp>
using boost::lexical_cast;
using util::isnil;
using util::contains;
namespace lib {
namespace time{
namespace test{
using steam::asset::meta::TimeGrid;
/****************************************************//**
* @test verify handling of quantised time values.
* - the simple usage, just referring to an
* predefined grid by name
* - explicitly defining an quantiser
* - converting these quantised values into
* various timecode formats
* - error detection
*/
class TimeQuantisation_test : public Test
{
int
random_or_get (Arg arg)
{
if (isnil(arg))
{// use random time value for all tests
seedRand();
return 1 + rani(10000);
}
else
return lexical_cast<int> (arg[1]);
}
virtual void
run (Arg arg)
{
Time ref (0,random_or_get(arg),0,0);
CHECK (TimeValue(0) < ref);
checkSimpleUsage (ref);
check_theFullStory (ref);
checkMultipleGrids (ref);
checkGridBinding (ref);
}
void
checkSimpleUsage (TimeValue org)
{
TimeGrid::build("my_simple_grid", 25); // "someone" has defined a time grid
QuTime qVal (org, "my_simple_grid"); // create time quantised to this grid
FrameNr count(qVal); // materialise this quantised time into..
int n = count; // frame count, accessible as plain number
CHECK (Time(FSecs(n-1, 25)) <= org); // verify quantisation: the original time
CHECK (org < Time(FSecs(n+1, 25))); // is properly bracketed by (n-1, n+1)
}
void
check_theFullStory (TimeValue org)
{
PQuant fixQ (new FixedFrameQuantiser(25));
QuTime qVal (org, fixQ);
CHECK ( qVal.supports<format::Frames>());
CHECK ( qVal.supports<format::Smpte>());
SmpteTC smpteTCode = qVal.formatAs<format::Smpte>();
showTimeCode (smpteTCode);
HmsTC pureTimeCode = qVal.formatAs<format::Hms>();
showTimeCode (pureTimeCode);
FrameNr frameTCode = qVal.formatAs<format::Frames>();
showTimeCode (frameTCode);
Secs seconds = qVal.formatAs<format::Seconds>();
showTimeCode (seconds);
}
template<class TC>
void
showTimeCode (TC timecodeValue)
{
cout << timecodeValue.describe()
<< " time = "<< timecodeValue.getTime()
<< " code = "<< timecodeValue
<< endl;
}
void
checkMultipleGrids (TimeValue org)
{
TimeGrid::build("my_alternate_grid", FrameRate::NTSC);
QuTime palVal (org, "my_simple_grid");
QuTime ntscVal (org, "my_alternate_grid");
CHECK (org == palVal);
CHECK (org == ntscVal);
FrameNr palNr (palVal);
FrameNr ntscNr(ntscVal);
CHECK (palNr <= ntscNr);
}
void
checkGridBinding (TimeValue org)
{
// refer to a grid not yet defined
VERIFY_ERROR (UNKNOWN_GRID, QuTime weird(org, "special_funny_grid"));
TimeGrid::build("special_funny_grid", 1); // provide the grid's definition (1 frame per second)
QuTime funny (org, "special_funny_grid"); // now OK, grid is known
int cnt = funny.formatAs<format::Frames>();
// and now performing quantisation is OK
SmpteTC smpte (funny); // also converting into SMPTE (which implies frame quantisation)
CHECK (0 == smpte.frames); // we have 1fps, thus the frame part is always zero!
CHECK (cnt % 60 == smpte.secs); // and the seconds part will be in sync with the frame count
}
};
/** Register this test class... */
LAUNCHER (TimeQuantisation_test, "unit common");
}}} // namespace lib::time::test