# Maintainer: goodguy <lists.cinelerra-gg.org>
pkgname=cin
pkgver=5.1
-pkgrel=20190331
+pkgrel=20190430
pkgdesc="Cinelerra git://git.cinelerra-gg.org/goodguy/cinelerra.git ($pkgrel)"
arch=('x86_64')
url="https://www.cinelerra-gg.org"
-%define ver 20190331
+%define ver 20190430
%define cin cinelerra
Summary: Multimedia Editing and construction
BuildRequires: texinfo
BuildRequires: udftools
BuildRequires: gtk2-devel
-BuildRequires: va-devel
-BuildRequires: vdpau-devel
+BuildRequires: libva-devel
+BuildRequires: libvdpau-devel
%{?rhat:BuildRequires: alsa-lib-devel}
%{?rhat:BuildRequires: bzip2-devel}
%{?rhat:BuildRequires: xorg-x11-fonts-cyrillic}
-cin (1:5.1.20190331) unstable; urgency=low
+cin (1:5.1.20190430) unstable; urgency=low
[ guy goode ]
Source: cin
Section: video
Priority: optional
-Standards-Version: 5.1.20190331
+Standards-Version: 5.1.20190430
Maintainer: mailing list <cin@lists.cinelerra-gg.org>
Homepage: https://www.cinelerra-gg.org/
Build-Depends: nasm, yasm, g++, gdb, build-essential, e2fsprogs,
void ColorBoxButton::set_color(int color)
{
- this->color = color;
+ this->color = (color & 0xffffff);
+ this->alpha = (~color>>24) & 0xff;
int r = (color>>16) & 0xff;
int g = (color>> 8) & 0xff;
int b = (color>> 0) & 0xff;
void ColorCircleButton::set_color(int color)
{
- this->color = color;
+ this->color = (color & 0xffffff);
+ this->alpha = (~color>>24);
int r = (color>>16) & 0xff;
int g = (color>>8) & 0xff;
int b = (color>>0) & 0xff;
Neophyte theme selected in Preferences by Olaf Wolff (CC BY 4.0,
https://creativecommons.org/licenses/by/4.0/)
.
+April 2019 New Features of note:
+ GPU usage for MPEG/H.264 formats with vdpau/vaapi for decode.
+ New Tracer plugin to outline objects available.
+ A Clear button for 15 plugins sliders eases usage.
+ Camera and Projector slight improvements with yellow line.
+ Enhanced ffmpeg error reporting.
March 2019 New Features of note:
Mixers, multiple cameras, now has Audio Alignment.
Additional options for Preview mode in Resources window.
jobs:=-j$(shell echo $$(($(cpus) + $(cpus)/2 +2)))
#opencv4 breaks SIFT/SURF findobj
-CFLAGS += -I$(opencv_prefix)/include/opencv4
-#CFLAGS += -I$(opencv_prefix)/include
+#CFLAGS += -I$(opencv_prefix)/include/opencv4
+CFLAGS += -I$(opencv_prefix)/include
ifeq ($(src),git)
$(opencv).src:
LFLAGS += -Wl,--start-group
LFLAGS += $(shell find $(opencv_prefix)/lib* -name "libopencv_*.a" 2> /dev/null)
#opencv4 breaks SIFT/SURF findobj
-LFLAGS += $(shell find $(opencv_prefix)/lib64/opencv4/3rdparty/lib* -name "lib*.a" 2> /dev/null)
-#LFLAGS += $(shell find $(opencv_prefix)/share/OpenCV/3rdparty/lib* -name "lib*.a" 2> /dev/null)
+#LFLAGS += $(shell find $(opencv_prefix)/lib64/opencv4/3rdparty/lib* -name "lib*.a" 2> /dev/null)
+LFLAGS += $(shell find $(opencv_prefix)/share/OpenCV/3rdparty/lib* -name "lib*.a" 2> /dev/null)
LFLAGS += -Wl,--end-group
else ifeq ($(bld),dyn)
$(opencv)/build: $(opencv).src
void SketcherWindow::done_event(int result)
{
+ curve_color->close_picker();
ungrab(plugin->server->mwindow->cwindow->gui);
}
int SketcherCurveList::selection_changed()
{
+ gui->curve_color->close_picker();
handle_event();
return 1;
}
void TitleWindow::done_event(int result)
{
+ color_button->close_picker();
+ outline_button->close_picker();
drag->drag_deactivate();
delete color_popup; color_popup = 0;
delete png_popup; png_popup = 0;