2013-09-12 23:41:49 -05:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Unit tests for openshot::FrameMapper
|
|
|
|
|
* @author Jonathan Thomas <jonathan@openshot.org>
|
|
|
|
|
*
|
2019-06-09 08:31:04 -04:00
|
|
|
* @ref License
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* LICENSE
|
2013-09-12 23:41:49 -05:00
|
|
|
*
|
2019-06-11 06:48:32 -04:00
|
|
|
* Copyright (c) 2008-2019 OpenShot Studios, LLC
|
2014-03-29 18:49:22 -05:00
|
|
|
* <http://www.openshotstudios.com/>. This file is part of
|
|
|
|
|
* OpenShot Library (libopenshot), an open-source project dedicated to
|
|
|
|
|
* delivering high quality video editing and animation solutions to the
|
|
|
|
|
* world. For more information visit <http://www.openshot.org/>.
|
2013-09-12 23:41:49 -05:00
|
|
|
*
|
2014-03-29 18:49:22 -05:00
|
|
|
* OpenShot Library (libopenshot) is free software: you can redistribute it
|
2014-07-11 16:52:14 -05:00
|
|
|
* and/or modify it under the terms of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* as published by the Free Software Foundation, either version 3 of the
|
|
|
|
|
* License, or (at your option) any later version.
|
2013-09-12 23:41:49 -05:00
|
|
|
*
|
2014-03-29 18:49:22 -05:00
|
|
|
* OpenShot Library (libopenshot) 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
|
2014-07-11 16:52:14 -05:00
|
|
|
* GNU Lesser General Public License for more details.
|
2013-09-12 23:41:49 -05:00
|
|
|
*
|
2014-07-11 16:52:14 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2014-03-29 18:49:22 -05:00
|
|
|
* along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
2013-09-12 23:41:49 -05:00
|
|
|
*/
|
|
|
|
|
|
2011-10-11 08:44:27 -05:00
|
|
|
#include "UnitTest++.h"
|
2019-10-27 03:54:36 -04:00
|
|
|
// Prevent name clashes with juce::UnitTest
|
|
|
|
|
#define DONT_SET_USING_JUCE_NAMESPACE 1
|
2011-10-11 08:44:27 -05:00
|
|
|
#include "../include/OpenShot.h"
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace openshot;
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_Get_Valid_Frame)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2014-01-05 23:12:56 -06:00
|
|
|
DummyReader r(Fraction(24,1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2011-10-11 08:44:27 -05:00
|
|
|
// Create mapping between 24 fps and 29.97 fps using classic pulldown
|
2015-02-26 17:33:09 -06:00
|
|
|
FrameMapper mapping(&r, Fraction(30000, 1001), PULLDOWN_CLASSIC, 22000, 2, LAYOUT_STEREO);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
// Should find this frame
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame f = mapping.GetMappedFrame(125);
|
2011-10-11 08:44:27 -05:00
|
|
|
CHECK(true); // success
|
|
|
|
|
}
|
|
|
|
|
catch (OutOfBoundsFrame &e)
|
|
|
|
|
{
|
|
|
|
|
// Unexpected failure to find frame
|
|
|
|
|
CHECK(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_Invalid_Frame_Too_Small)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2014-01-05 23:12:56 -06:00
|
|
|
DummyReader r(Fraction(24,1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2011-10-11 08:44:27 -05:00
|
|
|
// Create mapping 24 fps and 29.97 fps
|
2015-02-26 17:33:09 -06:00
|
|
|
FrameMapper mapping(&r, Fraction(30000, 1001), PULLDOWN_CLASSIC, 22000, 2, LAYOUT_STEREO);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check invalid frame number
|
2012-10-17 09:57:02 -05:00
|
|
|
CHECK_THROW(mapping.GetMappedFrame(0), OutOfBoundsFrame);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_24_fps_to_30_fps_Pulldown_Classic)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2014-01-05 23:12:56 -06:00
|
|
|
DummyReader r(Fraction(24,1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2016-07-27 13:18:55 -05:00
|
|
|
// Create mapping 24 fps and 30 fps
|
|
|
|
|
FrameMapper mapping(&r, Fraction(30, 1), PULLDOWN_CLASSIC, 22000, 2, LAYOUT_STEREO);
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame frame2 = mapping.GetMappedFrame(2);
|
|
|
|
|
MappedFrame frame3 = mapping.GetMappedFrame(3);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check for 3 fields of frame 2
|
|
|
|
|
CHECK_EQUAL(2, frame2.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(2, frame2.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(2, frame3.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(3, frame3.Even.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_24_fps_to_30_fps_Pulldown_Advanced)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2014-01-05 23:12:56 -06:00
|
|
|
DummyReader r(Fraction(24,1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2016-07-27 13:18:55 -05:00
|
|
|
// Create mapping 24 fps and 30 fps
|
|
|
|
|
FrameMapper mapping(&r, Fraction(30, 1), PULLDOWN_ADVANCED, 22000, 2, LAYOUT_STEREO);
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame frame2 = mapping.GetMappedFrame(2);
|
|
|
|
|
MappedFrame frame3 = mapping.GetMappedFrame(3);
|
|
|
|
|
MappedFrame frame4 = mapping.GetMappedFrame(4);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check for advanced pulldown (only 1 fake frame)
|
|
|
|
|
CHECK_EQUAL(2, frame2.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(2, frame2.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(2, frame3.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(3, frame3.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(3, frame4.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(3, frame4.Even.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_24_fps_to_30_fps_Pulldown_None)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2014-01-05 23:12:56 -06:00
|
|
|
DummyReader r(Fraction(24,1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2016-07-27 13:18:55 -05:00
|
|
|
// Create mapping 24 fps and 30 fps
|
|
|
|
|
FrameMapper mapping(&r, Fraction(30, 1), PULLDOWN_NONE, 22000, 2, LAYOUT_STEREO);
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame frame4 = mapping.GetMappedFrame(4);
|
|
|
|
|
MappedFrame frame5 = mapping.GetMappedFrame(5);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check for advanced pulldown (only 1 fake frame)
|
|
|
|
|
CHECK_EQUAL(4, frame4.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame4.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame5.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame5.Even.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_30_fps_to_24_fps_Pulldown_Classic)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2016-07-27 13:18:55 -05:00
|
|
|
DummyReader r(Fraction(30, 1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2016-07-27 13:18:55 -05:00
|
|
|
// Create mapping between 30 fps and 24 fps
|
2015-02-26 17:33:09 -06:00
|
|
|
FrameMapper mapping(&r, Fraction(24, 1), PULLDOWN_CLASSIC, 22000, 2, LAYOUT_STEREO);
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame frame3 = mapping.GetMappedFrame(3);
|
|
|
|
|
MappedFrame frame4 = mapping.GetMappedFrame(4);
|
|
|
|
|
MappedFrame frame5 = mapping.GetMappedFrame(5);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check for advanced pulldown (only 1 fake frame)
|
|
|
|
|
CHECK_EQUAL(4, frame3.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(3, frame3.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(5, frame4.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame4.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(6, frame5.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(6, frame5.Even.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_30_fps_to_24_fps_Pulldown_Advanced)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2016-07-27 13:18:55 -05:00
|
|
|
DummyReader r(Fraction(30, 1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2016-07-27 13:18:55 -05:00
|
|
|
// Create mapping between 30 fps and 24 fps
|
2015-02-26 17:33:09 -06:00
|
|
|
FrameMapper mapping(&r, Fraction(24, 1), PULLDOWN_ADVANCED, 22000, 2, LAYOUT_STEREO);
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame frame2 = mapping.GetMappedFrame(2);
|
|
|
|
|
MappedFrame frame3 = mapping.GetMappedFrame(3);
|
|
|
|
|
MappedFrame frame4 = mapping.GetMappedFrame(4);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check for advanced pulldown (only 1 fake frame)
|
|
|
|
|
CHECK_EQUAL(2, frame2.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(2, frame2.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame3.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame3.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(5, frame4.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(5, frame4.Even.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST(FrameMapper_30_fps_to_24_fps_Pulldown_None)
|
|
|
|
|
{
|
2012-10-14 23:24:27 -05:00
|
|
|
// Create a reader
|
2016-07-27 13:18:55 -05:00
|
|
|
DummyReader r(Fraction(30, 1), 720, 480, 22000, 2, 5.0);
|
2012-10-14 23:24:27 -05:00
|
|
|
|
2016-07-27 13:18:55 -05:00
|
|
|
// Create mapping between 30 fps and 24 fps
|
2015-02-26 17:33:09 -06:00
|
|
|
FrameMapper mapping(&r, Fraction(24, 1), PULLDOWN_NONE, 22000, 2, LAYOUT_STEREO);
|
2012-10-17 09:57:02 -05:00
|
|
|
MappedFrame frame4 = mapping.GetMappedFrame(4);
|
|
|
|
|
MappedFrame frame5 = mapping.GetMappedFrame(5);
|
2011-10-11 08:44:27 -05:00
|
|
|
|
|
|
|
|
// Check for advanced pulldown (only 1 fake frame)
|
|
|
|
|
CHECK_EQUAL(4, frame4.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(4, frame4.Even.Frame);
|
|
|
|
|
CHECK_EQUAL(6, frame5.Odd.Frame);
|
|
|
|
|
CHECK_EQUAL(6, frame5.Even.Frame);
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-04 21:33:29 -06:00
|
|
|
TEST(FrameMapper_resample_audio_48000_to_41000)
|
|
|
|
|
{
|
|
|
|
|
// Create a reader: 24 fps, 2 channels, 48000 sample rate
|
2015-09-28 22:05:50 -05:00
|
|
|
stringstream path;
|
|
|
|
|
path << TEST_MEDIA_PATH << "sintel_trailer-720p.mp4";
|
|
|
|
|
FFmpegReader r(path.str());
|
2015-03-04 21:33:29 -06:00
|
|
|
|
|
|
|
|
// Map to 30 fps, 3 channels surround, 44100 sample rate
|
|
|
|
|
FrameMapper map(&r, Fraction(30,1), PULLDOWN_NONE, 44100, 3, LAYOUT_SURROUND);
|
|
|
|
|
map.Open();
|
|
|
|
|
|
|
|
|
|
// Check details
|
|
|
|
|
CHECK_EQUAL(3, map.GetFrame(1)->GetAudioChannelsCount());
|
2017-01-07 20:29:42 -05:00
|
|
|
CHECK_EQUAL(1470, map.GetFrame(1)->GetAudioSamplesCount());
|
2015-03-08 22:24:12 -05:00
|
|
|
CHECK_EQUAL(1470, map.GetFrame(2)->GetAudioSamplesCount());
|
|
|
|
|
CHECK_EQUAL(1470, map.GetFrame(50)->GetAudioSamplesCount());
|
2015-03-04 21:33:29 -06:00
|
|
|
|
|
|
|
|
// Change mapping data
|
|
|
|
|
map.ChangeMapping(Fraction(25,1), PULLDOWN_NONE, 22050, 1, LAYOUT_MONO);
|
|
|
|
|
|
|
|
|
|
// Check details
|
|
|
|
|
CHECK_EQUAL(1, map.GetFrame(1)->GetAudioChannelsCount());
|
2018-09-11 00:40:31 -05:00
|
|
|
CHECK_CLOSE(882, map.GetFrame(1)->GetAudioSamplesCount(), 10.0);
|
|
|
|
|
CHECK_CLOSE(882, map.GetFrame(2)->GetAudioSamplesCount(), 10.0);
|
|
|
|
|
CHECK_CLOSE(882, map.GetFrame(50)->GetAudioSamplesCount(), 10.0);
|
2015-03-04 21:33:29 -06:00
|
|
|
|
|
|
|
|
// Close mapper
|
|
|
|
|
map.Close();
|
|
|
|
|
}
|