validate v0.2 on OSX.

This commit is contained in:
brunoherbelin
2020-07-31 00:12:19 +02:00
parent cc42e5581a
commit fcb4819341
3 changed files with 5 additions and 8 deletions

View File

@@ -383,8 +383,7 @@ SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.md")
SET(CPACK_PACKAGE_CONTACT "bruno.herbelin@gmail.com")
SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING.txt")
SET(CPACK_PACKAGE_VERSION_MAJOR "0")
SET(CPACK_PACKAGE_VERSION_MINOR "1")
#SET(CPACK_PACKAGE_VERSION_PATCH "${GLMIXER_WC_REVISION}")
SET(CPACK_PACKAGE_VERSION_MINOR "2")
SET(CPACK_PACKAGE_VENDOR "Bruno Herbelin")
SET(CPACK_SOURCE_IGNORE_FILES
"/\\\\.git/"

View File

@@ -161,8 +161,6 @@ void MediaPlayer::execute_open()
// setup appsink
GstElement *sink = gst_bin_get_by_name (GST_BIN (pipeline_), "sink");
GstBaseSink *s = GST_BASE_SINK(sink);
s->eos;
if (sink) {
// instruct the sink to send samples synched in time

View File

@@ -1,4 +1,4 @@
#include <cstring>
#include <cstring>
#include <thread>
#include <mutex>
#include <chrono>
@@ -616,7 +616,7 @@ bool RenderingWindow::init(int id, GLFWwindow *share)
// if not main window
if ( master_ != NULL ) {
// Disable vsync
// Enable vsync on output window
glfwSwapInterval(Settings::application.render.vsync);
// no need for multisampling
glDisable(GL_MULTISAMPLE);
@@ -626,9 +626,9 @@ bool RenderingWindow::init(int id, GLFWwindow *share)
glfwMakeContextCurrent(master_);
}
else {
// Enable vsync on main window
// Disable vsync on main window
glfwSwapInterval(0);
// enable Antialiasing multisampling
// Enable Antialiasing multisampling
if (Settings::application.render.multisampling > 0) {
glEnable(GL_MULTISAMPLE);
glHint(GL_MULTISAMPLE_FILTER_HINT_NV, GL_NICEST);