it even fails with attached patch? jittering playhead may indicate problems in sound output (pulseaudio/alsa setup)?
On Wednesday, November 10, 2021, mnieuw--- via Cin < [email protected]> wrote: > However, if I modify bld.sh to use --without_dv, it builds fine, > and no crash on starting, and this is on a newly installed OS. > > I do see a (new for me) problem when playing a 1280x720p25 video, > the sound takes some seconds to start, and the play line (vertical bar) > jitters a bit. After that, sound is OK. Happens every time after a stop. > But this is a new build platform for me, must retry on my usual Mint 20.2 . > > MatN > > On Wed, 10 Nov 2021 13:42:23 +0100 > <[email protected]> wrote: > > > I cannot even build it currently, let alone test the crash. > > I created a separated Fedora 35 partition to test builds there, pulled > > source down from the git, did blds/bld.prepare.sh (which installed > > a LOT of stuff), then did ./bld.sh. It fails on a missing definition > > of dv_t in file plugins/livevideo/livevideo.C line 156. That is > > enabled if HAVE_DV is set, which is the default, but I never had > > compile problems with that before. > > > > MatN > > > > > > On Wed, 10 Nov 2021 10:07:54 +0100 > > Andrea paz via Cin <[email protected]> wrote: > > > > > I tried to make a build from git: the compilation happens without > > > errors (see cin5.log), but when I start CinGG I get a crash. No > > > dumps are formed. At the terminal I have only these lines: > > > > > > build ladspa plugin index for: > > > /home/paz/cinelerra5/cinelerra-5.1/bin/ladspa > > > MWindow::init_ladspa_plugins: can't create ladspa plugin index: > > > /home/paz/.bcast6/ladspa_plugins._home_paz_cinelerra5_ > cinelerra-5.1_bin_ladspa > > > MWindow::init_theme: prefered theme Cakewalk not found. > > > MWindow::init_theme: theme_plugin not found. unjoined tids / owner 1 > > > 00007feefd7fa640 / 00007fef46622fc0 12BC_Clipboard > > > > > > I had no problems with the November 1 version. > > > > -- > Cin mailing list > [email protected] > https://lists.cinelerra-gg.org/mailman/listinfo/cin >
From fed23dc2fc80d3a60dfdb67f09cbcccee5a6a449 Mon Sep 17 00:00:00 2001 From: Andrew Randrianasulu <[email protected]> Date: Mon, 26 Jul 2021 20:21:44 +0300 Subject: [PATCH 51/72] fix typos in libdv ifdefs in livevideo --- cinelerra-5.1/plugins/livevideo/livevideo.C | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/cinelerra-5.1/plugins/livevideo/livevideo.C b/cinelerra-5.1/plugins/livevideo/livevideo.C index c30034ab..f9304a9d 100644 --- a/cinelerra-5.1/plugins/livevideo/livevideo.C +++ b/cinelerra-5.1/plugins/livevideo/livevideo.C @@ -152,7 +152,7 @@ public: int prev_channel; int w, h; // Decompressors for different video drivers -#if HAVE_DV +#if HAVE_LIBDV dv_t *dv; #endif mjpeg_t *mjpeg; @@ -354,7 +354,7 @@ LiveVideo::LiveVideo(PluginServer *server) w = xS(320); h = yS(640); prev_channel = 0; -#if HAVE_DV +#if HAVE_LIBDV dv = 0; #endif mjpeg = 0; @@ -376,7 +376,7 @@ LiveVideo::~LiveVideo() delete channeldb; delete temp; -#if HAVE_DV +#if HAVE_LIBDV if(dv) dv_delete(dv); #endif if(mjpeg) mjpeg_delete(mjpeg); @@ -507,7 +507,7 @@ int LiveVideo::process_buffer(VFrame *frame, { switch(session->vconfig_in->driver) { -#if HAVE_DV +#if HAVE_LIBDV case CAPTURE_FIREWIRE: case CAPTURE_IEC61883: // Decompress a DV frame from the driver @@ -648,8 +648,3 @@ void LiveVideo::update_gui() } } } - - - - - -- 2.33.1
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

