Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-29 Thread David Armstrong

Thanks.
Just let everyone know when it is put together.
So far, with my regular usage, all is going well.

cheers
David

On 28/09/11 23:29, Raffaella Traniello wrote:

On 09/23/2011 10:59 AM, David Armstrong wrote:

With all these patches flying around, can some-one advise if and when
they have been consolidated into the release candidate code?
I will then download, re-compile and re-test.


Thanks, David.

We are still oiling the brand new repo. We will soon be able to put 
all the patches in the same place for testing.


Ciao!
Raffaella


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-28 Thread Raffaella Traniello

On 09/23/2011 10:59 AM, David Armstrong wrote:

With all these patches flying around, can some-one advise if and when
they have been consolidated into the release candidate code?
I will then download, re-compile and re-test.


Thanks, David.

We are still oiling the brand new repo. We will soon be able to put all 
the patches in the same place for testing.


Ciao!
Raffaella


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-23 Thread Einar Rünkaru
On Thu, Sep 22, 2011 at 9:15 PM, Paul Taggart  wrote:
> Attached is an updated ffmpeg patch that supports both the included ffmpeg
> version and external ffmpeg. This patch also fixes issues with fileac3.C.
>
> This patch appears to work on both 2.1.5 and 2.2 versions of Cinelerra.
>

Anyone who sends patches!

Please start a new thread whith subject "[PATCH] Name of the patch".
In the mail describe what and why the patch is good.

Paul, version 2.2 of Cinelerra is not out yet, so you can't say that
it works with  2.2., but you have to mention with what versions of
ffmpeg your patch works.

At first glance the patch seems good. Missing: Name of the patch and
description.

Einar

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-23 Thread Octavio Alvarez
On Thu, 22 Sep 2011 14:53:55 -0700, E Chalaron   
wrote:


Seems to work like a charm  :'( tears of joy !!!

Although something failed in the patching (mind you I am not that
familiar with patching either)

wma.c got some stuff rejected ..; not sure what it means :-[


For a patch to apply you must have the version that the patch expects;
in Paul's case, it's the original version of the file.

However, you previously applied the Debian patch I sent, so the file
is not in its original version anymore.

You might want to reset your Git tree or reverse-apply the Debian
patch before applying Paul's patch.

However, if you already applied Paul's patch, you might have a mess
now. :-)


--
Octavio.

Twitter: @alvarezp2000 -- Identi.ca: @alvarezp

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-22 Thread Paul Taggart
You may need to edit quicktime/wma.c manually. I reset all of the files
in the patch to the 2.2 version from the repository and the patch fit
without errors or warnings. If you need help with the patch, send me a
copy of the file and I will patch it and send it back (send it to my
E-Mail, not this group).

Regards,
Paul

On Fri, 2011-09-23 at 09:53 +1200, E Chalaron wrote:

> 
> 
> Seems to work like a charm  :'(  tears of joy !!!
> 
> Although something failed in the patching (mind you I am not that
> familiar with patching either)
> 
> wma.c got some stuff rejected ..; not sure what it means :-[ 
> 
> --- wma.c2011-09-06 12:00:29.0 -0400
> +++ wma.c2011-08-30 13:49:41.0 -0400
> @@ -187,19 +187,22 @@
>  
>  // Decode chunk into work buffer.
>  pthread_mutex_lock(&ffmpeg_lock);
> -#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
> -result = avcodec_decode_audio(codec->decoder_context, 
> -(int16_t*)(codec->work_buffer + codec->output_size *
> sample_size), 
> -&bytes_decoded,
> -codec->packet_buffer,
> -chunk_size);
> -#else
>  bytes_decoded = AVCODEC_MAX_AUDIO_FRAME_SIZE;
> +#if LIBAVCODEC_VERSION_INT < ((52<<16)+(26<<8)+0)
>  result = avcodec_decode_audio2(codec->decoder_context,
>  (int16_t*)(codec->work_buffer + codec->output_size *
> sample_size),
>  &bytes_decoded,
>  codec->packet_buffer,
>  chunk_size);
> +#else
> +AVPacket pkt;
> +av_init_packet( &pkt );
> +pkt.data = codec->packet_buffer;
> +pkt.size = chunk_size;
> +result = avcodec_decode_audio3(codec->decoder_context,
> +(int16_t*)(codec->work_buffer + codec->output_size *
> sample_size),
> +&bytes_decoded,
> +&pkt);
>  #endif
>  
>  pthread_mutex_unlock(&ffmpeg_lock);
> 
> 
> cheers
> E
> 
> 
> 
> On 09/23/2011 08:54 AM, E Chalaron wrote: 
> 
> > ho WOW  Thanks heaps for that .
> > Will test now 
> > 
> > Cheers
> > E
> > 
> > On 09/23/2011 06:15 AM, Paul Taggart wrote: 
> > 
> > > Attached is an updated ffmpeg patch that supports both the
> > > included ffmpeg version and external ffmpeg. This patch also fixes
> > > issues with fileac3.C.
> > > 
> > > This patch appears to work on both 2.1.5 and 2.2 versions of
> > > Cinelerra.
> > > 
> > > Regards,
> > > Paul
> > > 
> > > 




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-22 Thread E Chalaron



Seems to work like a charm  :'( tears of joy !!!

Although something failed in the patching (mind you I am not that 
familiar with patching either)


wma.c got some stuff rejected ..; not sure what it means :-[

--- wma.c2011-09-06 12:00:29.0 -0400
+++ wma.c2011-08-30 13:49:41.0 -0400
@@ -187,19 +187,22 @@

 // Decode chunk into work buffer.
 pthread_mutex_lock(&ffmpeg_lock);
-#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
-result = avcodec_decode_audio(codec->decoder_context,
-(int16_t*)(codec->work_buffer + codec->output_size * 
sample_size),

- &bytes_decoded,
-codec->packet_buffer,
-chunk_size);
-#else
 bytes_decoded = AVCODEC_MAX_AUDIO_FRAME_SIZE;
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(26<<8)+0)
 result = avcodec_decode_audio2(codec->decoder_context,
 (int16_t*)(codec->work_buffer + codec->output_size * 
sample_size),

&bytes_decoded,
 codec->packet_buffer,
 chunk_size);
+#else
+AVPacket pkt;
+av_init_packet( &pkt );
+pkt.data = codec->packet_buffer;
+pkt.size = chunk_size;
+result = avcodec_decode_audio3(codec->decoder_context,
+(int16_t*)(codec->work_buffer + codec->output_size * 
sample_size),

+ &bytes_decoded,
+ &pkt);
 #endif

 pthread_mutex_unlock(&ffmpeg_lock);


cheers
E



On 09/23/2011 08:54 AM, E Chalaron wrote:

ho WOW  Thanks heaps for that .
Will test now 

Cheers
E

On 09/23/2011 06:15 AM, Paul Taggart wrote:
Attached is an updated ffmpeg patch that supports both the included 
ffmpeg version and external ffmpeg. This patch also fixes issues with 
fileac3.C.


This patch appears to work on both 2.1.5 and 2.2 versions of Cinelerra.

Regards,
Paul




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-22 Thread E Chalaron

ho WOW  Thanks heaps for that .
Will test now 

Cheers
E

On 09/23/2011 06:15 AM, Paul Taggart wrote:
Attached is an updated ffmpeg patch that supports both the included 
ffmpeg version and external ffmpeg. This patch also fixes issues with 
fileac3.C.


This patch appears to work on both 2.1.5 and 2.2 versions of Cinelerra.

Regards,
Paul




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-22 Thread Octavio Alvarez
On Thu, 22 Sep 2011 11:15:02 -0700, Paul Taggart   
wrote:



Attached is an updated ffmpeg patch that supports both the included
ffmpeg version and external ffmpeg. This patch also fixes issues with
fileac3.C.

This patch appears to work on both 2.1.5 and 2.2 versions of Cinelerra.


Nice! That covers another patch from Debian regarding STDC macros.
I will test it ASAP.


--
Octavio.

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-22 Thread Paul Taggart
Attached is an updated ffmpeg patch that supports both the included
ffmpeg version and external ffmpeg. This patch also fixes issues with
fileac3.C.

This patch appears to work on both 2.1.5 and 2.2 versions of Cinelerra.

Regards,
Paul

On Thu, 2011-09-22 at 14:04 +1200, E Chalaron wrote: 

> The patch leads now to  the AC3 problem.
> 
> fileac3.C:255:3: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C: In member function ‘void AC3ConfigAudio::create_objects()’:
> fileac3.C:265:47: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C: In member function ‘void 
> AC3ConfigAudioBitrate::create_objects()’:
> fileac3.C:308:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:308:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:309:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:309:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:310:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:310:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:311:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:311:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:312:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:312:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:313:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:313:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:314:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:314:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:315:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:315:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:316:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:316:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:317:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:317:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:318:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:318:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:319:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:319:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:320:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:320:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:321:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:321:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:322:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:322:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:323:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:323:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:324:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:324:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:325:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:325:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:326:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:326:32: warning: deprecated conversion from string constant to 
> ‘char*’
> make[3]: *** [fileac3.o] Error 1
> mv -f .deps/dcraw.Tpo .deps/dcraw.Po
> make[3]: Leaving directory `/home/edouard/Desktop/CinelerraCV/cinelerra'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/home/edouard/Desktop/CinelerraCV/cinelerra'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/home/edouard/Desktop/CinelerraCV'
> make: *** [all] Error 2
> 
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


diff -ur cinelerra-cv_orig/cinelerra/ffmpeg.C cinelerra-cv_fixed/cinelerra/ffmpeg.C
--- cinelerra-cv_orig/cinelerra/ffmpeg.C	2011-09-06 12:00:27.0 -0400
+++ cinelerra-cv_fixed/cinelerra/ffmpeg.C	2011-09-05 10:52:57.0 -0400
@@ -364,12 +364,24 @@
 
 	// NOTE: frame must already have data space allocated
 	
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
 	got_picture = 0;
 	int length = avcodec_decode_video(context,
 	  picture,
 	  &got_picture,
 	  data,
 

Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-22 Thread Paul Taggart
I'm in the process of updating the patch for ffmpeg so that it will work
with both internal and external ffmpeg and include the fix for
fileac3.C. I should have it ready in about 2 hours.

Regards,
Paul

On Thu, 2011-09-22 at 14:04 +1200, E Chalaron wrote: 

> The patch leads now to  the AC3 problem.
> 
> fileac3.C:255:3: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C: In member function ‘void AC3ConfigAudio::create_objects()’:
> fileac3.C:265:47: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C: In member function ‘void 
> AC3ConfigAudioBitrate::create_objects()’:
> fileac3.C:308:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:308:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:309:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:309:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:310:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:310:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:311:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:311:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:312:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:312:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:313:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:313:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:314:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:314:31: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:315:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:315:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:316:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:316:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:317:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:317:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:318:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:318:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:319:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:319:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:320:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:320:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:321:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:321:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:322:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:322:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:323:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:323:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:324:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:324:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:325:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:325:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:326:32: warning: deprecated conversion from string constant to 
> ‘char*’
> fileac3.C:326:32: warning: deprecated conversion from string constant to 
> ‘char*’
> make[3]: *** [fileac3.o] Error 1
> mv -f .deps/dcraw.Tpo .deps/dcraw.Po
> make[3]: Leaving directory `/home/edouard/Desktop/CinelerraCV/cinelerra'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/home/edouard/Desktop/CinelerraCV/cinelerra'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/home/edouard/Desktop/CinelerraCV'
> make: *** [all] Error 2
> 
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-21 Thread E Chalaron

The patch leads now to  the AC3 problem.

fileac3.C:255:3: warning: deprecated conversion from string constant to 
‘char*’

fileac3.C: In member function ‘void AC3ConfigAudio::create_objects()’:
fileac3.C:265:47: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C: In member function ‘void 
AC3ConfigAudioBitrate::create_objects()’:
fileac3.C:308:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:308:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:309:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:309:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:310:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:310:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:311:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:311:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:312:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:312:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:313:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:313:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:314:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:314:31: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:315:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:315:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:316:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:316:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:317:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:317:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:318:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:318:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:319:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:319:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:320:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:320:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:321:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:321:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:322:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:322:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:323:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:323:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:324:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:324:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:325:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:325:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:326:32: warning: deprecated conversion from string constant to 
‘char*’
fileac3.C:326:32: warning: deprecated conversion from string constant to 
‘char*’

make[3]: *** [fileac3.o] Error 1
mv -f .deps/dcraw.Tpo .deps/dcraw.Po
make[3]: Leaving directory `/home/edouard/Desktop/CinelerraCV/cinelerra'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/edouard/Desktop/CinelerraCV/cinelerra'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/edouard/Desktop/CinelerraCV'
make: *** [all] Error 2



___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-21 Thread E Chalaron

Hi Octavio
That is cool, will try asap, thanks a lot
cheers
E



On 09/22/2011 12:51 PM, Octavio Alvarez wrote:
On Wed, 21 Sep 2011 16:29:38 -0700, E Chalaron  
wrote:



Lucky man ... I can't even compile it :-D . (AMD 64 Open suse 11.4)

./configure --with-external-ffmpeg --enable-opengl --disable-mmx

/home/edouard/Desktop/CinelerraCV/quicktime/qtffmpeg.c:192: undefined 
reference to `avcodec_decode_video'

.libs/wma.o: In function `decode':
/home/edouard/Desktop/CinelerraCV/quicktime/wma.c:198: undefined 
reference to `avcodec_decode_audio2'

collect2: ld returned 1 exit status
make[3]: *** [libquicktimehv.la] Error 1
make[3]: Leaving directory `/home/edouard/Desktop/CinelerraCV/quicktime'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/edouard/Desktop/CinelerraCV/quicktime'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/edouard/Desktop/CinelerraCV'
make: *** [all] Error 2


There's a patch that changes these to more recent ffmpeg functions. It's
not written by me; I found it on the Debian package. I could not trace 
the

author back, sorry. I don't know who the author is.




___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-21 Thread Octavio Alvarez
On Wed, 21 Sep 2011 16:29:38 -0700, E Chalaron   
wrote:



Lucky man ... I can't even compile it :-D . (AMD 64 Open suse 11.4)

./configure --with-external-ffmpeg --enable-opengl --disable-mmx

/home/edouard/Desktop/CinelerraCV/quicktime/qtffmpeg.c:192: undefined  
reference to `avcodec_decode_video'

.libs/wma.o: In function `decode':
/home/edouard/Desktop/CinelerraCV/quicktime/wma.c:198: undefined  
reference to `avcodec_decode_audio2'

collect2: ld returned 1 exit status
make[3]: *** [libquicktimehv.la] Error 1
make[3]: Leaving directory `/home/edouard/Desktop/CinelerraCV/quicktime'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/edouard/Desktop/CinelerraCV/quicktime'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/edouard/Desktop/CinelerraCV'
make: *** [all] Error 2


There's a patch that changes these to more recent ffmpeg functions. It's
not written by me; I found it on the Debian package. I could not trace the
author back, sorry. I don't know who the author is.


--
Octavio.

04_ffmpeg-0.8.diff
Description: Binary data


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-21 Thread E Chalaron




Whenever I try Cinelerra using external ffmpeg on my x86_64 machine, rendered
mpeg (via yuv stream) is totally garbled. However, it works OK with internal
ffmpeg.


Lucky man ... I can't even compile it :-D . (AMD 64 Open suse 11.4)

./configure --with-external-ffmpeg --enable-opengl --disable-mmx


libtool: link: gcc -shared  .libs/atom.o .libs/avcc.o .libs/avi_hdrl.o 
.libs/avi_idx1.o .libs/avi_movi.o .libs/avi_strl.o .libs/avi_odml.o 
.libs/avi_ix.o .libs/avi_indx.o .libs/avi_riff.o .libs/cmodel_default.o 
.libs/cmodel_float.o .libs/cmodel_yuv420p.o .libs/cmodel_yuv422.o 
.libs/codecs.o .libs/colormodels.o .libs/ctab.o .libs/dinf.o 
.libs/dref.o .libs/edts.o .libs/elst.o .libs/esds.o .libs/graphics.o 
.libs/hdlr.o .libs/ima4.o .libs/interlacemodes.o .libs/jpeg.o 
.libs/libdv.o .libs/libmjpeg.o .libs/matrix.o .libs/mdat.o .libs/mdhd.o 
.libs/mdia.o .libs/minf.o .libs/moov.o .libs/mp4a.o .libs/mvhd.o 
.libs/plugin.o .libs/qtcache.o .libs/qtdv.o .libs/qtffmpeg.o 
.libs/qth264.o .libs/qtpng.o .libs/qtmp3.o .libs/quicktime.o .libs/raw.o 
.libs/rawaudio.o .libs/rle.o .libs/smhd.o .libs/sowt.o .libs/stbl.o 
.libs/stco.o .libs/stsc.o .libs/stsd.o .libs/stsdtable.o .libs/stss.o 
.libs/stsz.o .libs/stts.o .libs/tkhd.o .libs/trak.o .libs/twos.o 
.libs/udta.o .libs/ulaw.o .libs/util.o .libs/v308.o .libs/v408.o 
.libs/v410.o .libs/vmhd.o .libs/vbraudio.o .libs/vorbis.o 
.libs/workarounds.o .libs/yuv2.o .libs/yuv4.o .libs/yv12.o .libs/wmx2.o 
.libs/wma.o .libs/mpeg4.o  -Wl,--whole-archive 
encore50/.libs/libencore.a -Wl,--no-whole-archive  -Wl,-rpath 
-Wl,/home/edouard/Desktop/CinelerraCV/libmpeg3/.libs -lavcodec 
-lpostproc -lswscale -lvorbis -lvorbisenc -lvorbisfile -ltheora -logg 
/usr/lib64/libmp3lame.so -lfaad -lfaac ../libmpeg3/.libs/libmpeg3hv.so 
-la52 -lx264 -ldv -ljpeg -lpng -lz -lm -ldl -lpthread  
-Wl,--no-undefined   -Wl,-soname -Wl,libquicktimehv-1.6.0.so.1 -o 
.libs/libquicktimehv-1.6.0.so.1.0.0

.libs/qtffmpeg.o: In function `decode_wrapper':
/home/edouard/Desktop/CinelerraCV/quicktime/qtffmpeg.c:192: undefined 
reference to `avcodec_decode_video'

.libs/wma.o: In function `decode':
/home/edouard/Desktop/CinelerraCV/quicktime/wma.c:198: undefined 
reference to `avcodec_decode_audio2'

collect2: ld returned 1 exit status
make[3]: *** [libquicktimehv.la] Error 1
make[3]: Leaving directory `/home/edouard/Desktop/CinelerraCV/quicktime'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/edouard/Desktop/CinelerraCV/quicktime'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/edouard/Desktop/CinelerraCV'
make: *** [all] Error 2







I already posted about (see archives) considering one specific patch has
created the problem.


Sincerely,
Gour




___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-21 Thread E Chalaron

Ciao Raffaella

Well, to be honest... I always kept a current git, and every so often 
git pull, make etc ...

nothing wrong, HD_DNX was working fine
I installed the 2.2 candidate and could not upload DNX.
Got rid of it ... rinstalled the current git .. and to my horror can't 
load  the DNX anymore, athough tested Ok with other machines also AMD 
64bits, opensuse..

Only diff. is that this one is 11.4 and the other ones 11.3

I'll try the packman package and see what happens

Ciao
E



On 09/21/2011 08:12 PM, Raffaella Traniello wrote:

Ciao Edouard!


It seems that 2.2 and official git 2.15 are crashing on importing DNX_HD
files.


Are you saying that the bug is not created by the changes of 2.2 and 
it is an older bug?


Ciao!
Raffaella

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-21 Thread Raffaella Traniello

Ciao Edouard!


It seems that 2.2 and official git 2.15 are crashing on importing DNX_HD
files.


Are you saying that the bug is not created by the changes of 2.2 and it 
is an older bug?


Ciao!
Raffaella

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-20 Thread Einar Rünkaru
On Tue, Sep 20, 2011 at 1:46 AM, Paul Taggart  wrote:
> Einar,
>
> I'm not suggesting changing the editing engine. Ffmpeg is a good tool for
> transcoding and rendering audio and video (especially for DVD or Bluray).
> Transcode and Mjpegtools have not kept up with technology. All the editing
> functionality in the world is useless if you can't create a finished
> product. The current ffmpeg interface is so far out of date that it doesn't
> allow 1/10th of ffmeg's current functionality forcing extra steps in
> rendering, often times with loss of audio or video quality.
>
I am not against adding support for newer ffmpeg versinons.

I like the idea to drop internal ffmpeg and use only external. But
this means that cinelerra has to support several versions of ffmpeg -
both gpl and non-gpl.

Cinelerra needs a infrastructure for selection of decoder and encoder.


> Some functions that would be nice to have are: Pre-defined surround sound
> audio configs (the angle configuration make no sense for the lfe channel (an
> lfe plugin would also be nice)) and simultaneous audio and video rendering.
>

It is nice to have more developers.

Einar

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-20 Thread Gour-Gadadhara Dasa
On Mon, 19 Sep 2011 23:32:52 +0300
Einar Rünkaru  wrote:

> I have impression that ffmpeg is not very good in frame exact seeking
> and this is not the goal of ffmpeg. Cinelerra needs exact seeking.

What do you think about this:

C++, object-oriented design
Cross-platform build system (CMake)
Multi-threaded, dynamically scales to # of processors (OpenMP)
Video, Audio, and Image Encoding / Decoding (FFmpeg)
Frame accurate seeking
Unlimited curve-based key-frame system (Bézier, Linear, and Constant)
Time Remapping (Curve-based speed and direction of video)
Powerful image manipulation and compositing (ImageMagick++)
Audio mixing, filters, waveform generation (Juce)
Python support, including exception handling from C++
Simple & elegant API (from C++ and Python)
Capability to support different encoding / decoding back-ends (Currently 
only FFmpeg is supported)
150+ unit tests already (UnitTest++)
Documentation for all public API classes / methods (Doxygen)
Source code and details will be released soon on LaunchPad

It's from new OpenShotannouncement which is leaving MLT and embracing their own
video library... (see
http://www.openshotvideo.com/2011/09/version-14-sweeties-and-future.html#comments)


Sincerely,
Gour

-- 
“In the material world, conceptions of good and bad are
all mental speculations…” (Sri Caitanya Mahaprabhu)

http://atmarama.net | Hlapicina (Croatia) | GPG: 52B5C810




signature.asc
Description: PGP signature


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-20 Thread Gour-Gadadhara Dasa
On Mon, 19 Sep 2011 16:29:12 -0400
Paul Taggart  wrote:

> I normally use the yuv stream piped to ffmpeg for video. The biggest
> problem I have is that the default ffmpeg options included on the
> render sub-window no longer exist (I can send you the options that
> work for me). 

Yes, please...although I use settings from the manual.

When I need some scaling for old hi8 material I use:

yuvscaler -v 1 -I ACTIVE_700x560+8+8 | y4mshift -v -n 2 | ffmpeg -f 
yuv4mpegpipe -i - -y -target pal-dvd -aspect 4:3 mpeg2video $1


Otoh, in my old message I said the following:

"By superficially looking at git's log output (not familiar with git at
all) I suspect the problem might be with the following patch:

commit 954a91e72bba1ed1ce641b5faee7d4c5f318c074
Author: David Arendt 
Date:   Sat Dec 27 12:02:20 2008 +0100

Add support for the dnxhd codec.

In  order to use dnxhd, a recent ffmpeg should be intalled and cinelerra
must be compiled with ./configure --with-external-ffmpeg (cinelerra can
also be compiled with builtin ffmpeg only dnxhd can't be decoded)

Only decoding is handled by this patch. Encoding dnxhd can be done using
YUV4MPEG Stream and using the following pipe: ffmpeg -f yuv4mpegpipe -i
- -vcodec dnxhd -b 115Mbps %. Remember that dnxhd can not handle every
resolution. All tests have been done with 1080p50.
"
about my problems to render via yuv stream with --enable-external-ffmpeg, but I
never got any confirmation about it.


Sincerely,
Gour

-- 
“In the material world, conceptions of good and bad are
all mental speculations…” (Sri Caitanya Mahaprabhu)

http://atmarama.net | Hlapicina (Croatia) | GPG: 52B5C810




signature.asc
Description: PGP signature


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread E Chalaron

Gosh yes .

On 09/20/2011 10:46 AM, Paul Taggart wrote:
Some functions that would be nice to have are: Pre-defined surround 
sound audio configs (the angle configuration make no sense for the lfe 
channel (an lfe plugin would also be nice)) and simultaneous audio and 
video rendering.


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread Paul Taggart
Einar,

I'm not suggesting changing the editing engine. Ffmpeg is a good tool
for transcoding and rendering audio and video (especially for DVD or
Bluray). Transcode and Mjpegtools have not kept up with technology. All
the editing functionality in the world is useless if you can't create a
finished product. The current ffmpeg interface is so far out of date
that it doesn't allow 1/10th of ffmeg's current functionality forcing
extra steps in rendering, often times with loss of audio or video
quality.

Some functions that would be nice to have are: Pre-defined surround
sound audio configs (the angle configuration make no sense for the lfe
channel (an lfe plugin would also be nice)) and simultaneous audio and
video rendering.

Regards,
Paul
On Mon, 2011-09-19 at 23:32 +0300, Einar Rünkaru wrote: 

> Hi.
> 
> On Mon, Sep 19, 2011 at 9:43 PM, Paul Taggart  wrote:
> > I'm a bit confused, why release an new release of Cinelerra with a version
> > of ffmpeg that's 3 or 4 releases out of date? Version 0.4.9 is so far away
> > from the current 0.8.2 that most of the ffmpeg functions no longer exist. I
> > will build a new patch to work with 0.8.x but a decision needs to be made to
> > either abandon or upgrade the internal ffmpeg because the amount of changes
> > make supporting both obsolete and current versions impractical.
> >
> 
> Cinelerra must support multiple versions of ffmpeg at least through
> conditional compiling. FFmpeg is 'solution to record, convert and
> stream audio and video' (from homepage). It is not optimized for
> editing. It is possible with certain amount of work to use it in an
> editor.
> 
> I want an answer to question what is better for cinelerra in newer
> versions of ffmpeg. Cinelerra does not use very much of ffmpeg - do
> the improvements in ffmpeg affect cinelerra?
> 
> I have never been a great fan of upgrading to newer version. Recently
> I had a major crash at work just because of upgrade.
> 
> I have impression that ffmpeg is not very good in frame exact seeking
> and this is not the goal of ffmpeg. Cinelerra needs exact seeking.
> 
> If you have time to look at the cinelerra-ffmpeg relationships, please do it
> 
> Einar
> 
> Einar




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread yosepkey
It's true.

Now Cinelerra can not open many files, audio and video properly.

If used cinelerra ffmpeg could open new files like Webm or videos from my
camera, that cinelerra can not play the audio (uncompressed)

I do not know because they do not use external ffmpeg, as does mlt. But I think
it would be a good thing.



Yosepkey



2011/9/19 Paul Taggart 

> **
> Gour,
>
> I normally use the yuv stream piped to ffmpeg for video. The biggest
> problem I have is that the default ffmpeg options included on the render
> sub-window no longer exist (I can send you the options that work for me).
>
> Audio, on the other hand is a real mess because I need to use 5.1 AC3
> (Dolby Digital Surround Sound). My first priority is to get fileac3.C
> updated to properly use the current versions of libavcodec including options
> for different sample formats (U8, S16, S32, float, and double) and channel
> layouts(libavutil supports 16 different layouts). Once I get fileac3.C
> functioning as I want it, I will send the updates to this mailing list and
> then see if I can build a direct rendering methodology using ffmpeg, the
> current versions function calls provide much better functionality and
> flexibility than what's bundled with Cinelerra.
>
> Until I submit the upgrades, there are patches available for 2.1.5 to work
> with current versions of ffmpeg without any new functionality. I will verify
> that they work with 2.2 and submit an updated patch.
>
> Regards,
> Paul
>
>
> On Mon, 2011-09-19 at 21:23 +0200, Gour-Gadadhara Dasa wrote:
>
> On Mon, 19 Sep 2011 14:43:59 -0400
> Paul Taggart  wrote:
>
> > I'm a bit confused, why release an new release of Cinelerra with a
> > version of ffmpeg that's 3 or 4 releases out of date? Version 0.4.9 is
> > so far away from the current 0.8.2 that most of the ffmpeg functions
> > no longer exist. I will build a new patch to work with 0.8.x but a
> > decision needs to be made to either abandon or upgrade the internal
> > ffmpeg because the amount of changes make supporting both obsolete
> > and current versions impractical.
>
> Whenever I try Cinelerra using external ffmpeg on my x86_64 machine, rendered
> mpeg (via yuv stream) is totally garbled. However, it works OK with internal
> ffmpeg.
>
> I already posted about (see archives) considering one specific patch has
> created the problem.
>
>
> Sincerely,
> Gour
>
>
>
>
>


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread Einar Rünkaru
Hi.

On Mon, Sep 19, 2011 at 9:43 PM, Paul Taggart  wrote:
> I'm a bit confused, why release an new release of Cinelerra with a version
> of ffmpeg that's 3 or 4 releases out of date? Version 0.4.9 is so far away
> from the current 0.8.2 that most of the ffmpeg functions no longer exist. I
> will build a new patch to work with 0.8.x but a decision needs to be made to
> either abandon or upgrade the internal ffmpeg because the amount of changes
> make supporting both obsolete and current versions impractical.
>

Cinelerra must support multiple versions of ffmpeg at least through
conditional compiling. FFmpeg is 'solution to record, convert and
stream audio and video' (from homepage). It is not optimized for
editing. It is possible with certain amount of work to use it in an
editor.

I want an answer to question what is better for cinelerra in newer
versions of ffmpeg. Cinelerra does not use very much of ffmpeg - do
the improvements in ffmpeg affect cinelerra?

I have never been a great fan of upgrading to newer version. Recently
I had a major crash at work just because of upgrade.

I have impression that ffmpeg is not very good in frame exact seeking
and this is not the goal of ffmpeg. Cinelerra needs exact seeking.

If you have time to look at the cinelerra-ffmpeg relationships, please do it

Einar

Einar

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread Paul Taggart
Gour,

I normally use the yuv stream piped to ffmpeg for video. The biggest
problem I have is that the default ffmpeg options included on the render
sub-window no longer exist (I can send you the options that work for
me). 

Audio, on the other hand is a real mess because I need to use 5.1 AC3
(Dolby Digital Surround Sound). My first priority is to get fileac3.C
updated to properly use the current versions of libavcodec including
options for different sample formats (U8, S16, S32, float, and double)
and channel layouts(libavutil supports 16 different layouts). Once I get
fileac3.C functioning as I want it, I will send the updates to this
mailing list and then see if I can build a direct rendering methodology
using ffmpeg, the current versions function calls provide much better
functionality and flexibility than what's bundled with Cinelerra.

Until I submit the upgrades, there are patches available for 2.1.5 to
work with current versions of ffmpeg without any new functionality. I
will verify that they work with 2.2 and submit an updated patch.

Regards,
Paul

On Mon, 2011-09-19 at 21:23 +0200, Gour-Gadadhara Dasa wrote: 

> On Mon, 19 Sep 2011 14:43:59 -0400
> Paul Taggart  wrote:
> 
> > I'm a bit confused, why release an new release of Cinelerra with a
> > version of ffmpeg that's 3 or 4 releases out of date? Version 0.4.9 is
> > so far away from the current 0.8.2 that most of the ffmpeg functions
> > no longer exist. I will build a new patch to work with 0.8.x but a
> > decision needs to be made to either abandon or upgrade the internal
> > ffmpeg because the amount of changes make supporting both obsolete
> > and current versions impractical.
> 
> Whenever I try Cinelerra using external ffmpeg on my x86_64 machine, rendered
> mpeg (via yuv stream) is totally garbled. However, it works OK with internal
> ffmpeg.
> 
> I already posted about (see archives) considering one specific patch has
> created the problem.
> 
> 
> Sincerely,
> Gour
> 
> 




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread Gour-Gadadhara Dasa
On Mon, 19 Sep 2011 14:43:59 -0400
Paul Taggart  wrote:

> I'm a bit confused, why release an new release of Cinelerra with a
> version of ffmpeg that's 3 or 4 releases out of date? Version 0.4.9 is
> so far away from the current 0.8.2 that most of the ffmpeg functions
> no longer exist. I will build a new patch to work with 0.8.x but a
> decision needs to be made to either abandon or upgrade the internal
> ffmpeg because the amount of changes make supporting both obsolete
> and current versions impractical.

Whenever I try Cinelerra using external ffmpeg on my x86_64 machine, rendered
mpeg (via yuv stream) is totally garbled. However, it works OK with internal
ffmpeg.

I already posted about (see archives) considering one specific patch has
created the problem.


Sincerely,
Gour


-- 
“In the material world, conceptions of good and bad are
all mental speculations…” (Sri Caitanya Mahaprabhu)

http://atmarama.net | Hlapicina (Croatia) | GPG: 52B5C810




signature.asc
Description: PGP signature


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-19 Thread Paul Taggart
I'm a bit confused, why release an new release of Cinelerra with a
version of ffmpeg that's 3 or 4 releases out of date? Version 0.4.9 is
so far away from the current 0.8.2 that most of the ffmpeg functions no
longer exist. I will build a new patch to work with 0.8.x but a decision
needs to be made to either abandon or upgrade the internal ffmpeg
because the amount of changes make supporting both obsolete and current
versions impractical.

Regards,
Paul

On Sun, 2011-09-18 at 14:13 +0200, Raffaella Traniello wrote: 

> Hi!
> 
> Last dev meetings focussed on the imminent new release of CinelerraCV: 
> version 2.2, planned for October 2.
> 
> The new version will be compilable also on newer kernels and will 
> include the famous Bezier patch by Herman Vosseler (ichthyo).
> Einar is finishing working on improved default settings and standard 
> presets.
> 
> For details see the milestone tickets in Trac:
> http://bugs.cinelerra.org/query?group=status&milestone=Release+of+2.2
> 
> 
>   Please, help CinelerraCV  by testing her!
> 
> 2 weeks left to the release.
> We ask all friends of CinelerraCV (devs and users) to test the changes 
> and report bugs related to those changes.
> Please, report back to this mailing list.
> 
> 
>   To test compilation on new kernels and the Bezier patch:
> 
> http://git.cinelerra.org/gitweb?p=CinelerraCV.git;a=snapshot;h=77f464b5dafd2c441ccc55282a9489250b83306f;sf=tgz
> 
> Download the source from the above link and compile as usual.
> (Grandmas using Ubuntu might find useful compilation instructions at:
> http://www.g-raffa.eu/Cinelerra/HOWTO/compilation.html )
> 
> For a detailed description of the changes see the commit messages of the 
> last commits of the /construction_site brach:
> http://git.cinelerra.org/gitweb?p=CinelerraCV.git;a=shortlog;h=refs/heads/construction_site
> 
> 
>   To test improved default settings and standard presets:
> 
> Please wait. The source will be available shortly.
> 
> 
> Thank you!
> 
> Ciao
> Raffaella
> 
> PS:
> Remember: only 2 weeks left! It might be your last opportunity! :-)
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra




Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-18 Thread E Chalaron

It did not take too long 

It seems that 2.2 and official git 2.15 are crashing on importing DNX_HD 
files.


More if needed, but for now I have to leave.
Cheers
E

signal_entry: got SIGSEGV my pid=1518 execution table size=16:
mwindowgui.C: create_objects: 257
mwindowgui.C: create_objects: 261
mwindowgui.C: create_objects: 268
mwindowgui.C: create_objects: 271
mwindow.C: create_objects: 1338
mwindow.C: create_objects: 1347
mwindow.C: create_objects: 1353
mwindow.C: create_objects: 1357
mwindow.C: create_objects: 1359
mwindow.C: create_objects: 1361
mwindow.C: create_objects: 1363
mwindow.C: create_objects: 1365
mwindow.C: create_objects: 1372
mwindow.C: create_objects: 1375
mwindow.C: load_filenames: 829
mwindow.C: load_filenames: 887
signal_entry: lock table size=8
0x7f58fc1d0950 BC_WindowBase::event_condition BC_WindowBase::get_event
0x7f58fc30f170 MainIndexes::input_lock MainIndexes::run 1
0x1bb9330 RotateEngine::input_lock RotateEngine::run
0x1bd3490 RotateEngine::input_lock RotateEngine::run
0x7f58fc3974a0 ResourceThread::draw_lock ResourceThread::run
0x7f58fc30fd60 Cinelerra: Program main *
0x7f58fc23dfa0 TransportQue::output_lock PlaybackEngine::run
0x7f58fc30e6e0 TransportQue::output_lock PlaybackEngine::run
BC_Signals::dump_buffers: buffer table size=0
BC_Signals::delete_temps: deleting 0 temp files
SigHandler::signal_handler total files=0
Aborted


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCV] CinCV 2.2 testing fortnight - call for volunteers

2011-09-18 Thread E Chalaron

Here we go on Open suse 11.4
AMD 64 bits

Not tried extensively but ...
still need the --disable-mmx --enable-opengl to get the config right.

Few warnings (see below) and various Log attached as bz2 files to 
Raffaela and Herman directly.

If other developers need it just let me know

cheers
Edouard


./configure --disable-mmx --enable-opengl > LOG_CONFIGURE
/bin/sh: ./config.rpath: No such file or directory
ln: `/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/Makefile' and 
`Makefile' are the same file
ln: `/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/common.mak' and 
`common.mak' are the same file
ln: `/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/subdir.mak' and 
`subdir.mak' are the same file
ln: `/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/doc/texi2pod.pl' 
and `doc/texi2pod.pl' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libavcodec/Makefile' 
and `libavcodec/Makefile' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libavdevice/Makefile' and 
`libavdevice/Makefile' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libavfilter/Makefile' and 
`libavfilter/Makefile' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libavformat/Makefile' and 
`libavformat/Makefile' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libavutil/Makefile' 
and `libavutil/Makefile' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libpostproc/Makefile' and 
`libpostproc/Makefile' are the same file
ln: 
`/home/edouard/Desktop/CinelerraCV/quicktime/ffmpeg/libswscale/Makefile' 
and `libswscale/Makefile' are the same file
BFD: BFD (GNU Binutils; openSUSE 11.4) 2.21 assertion fail 
../../bfd/plugin.c:453

objdump: plugin: Bad value
BFD: BFD (GNU Binutils; openSUSE 11.4) 2.21 assertion fail 
../../bfd/plugin.c:453

objdump: plugin: Bad value
config.status: WARNING:  'po/Makefile.in.in' seems to ignore the 
--datarootdir setting








On 09/19/2011 12:13 AM, Raffaella Traniello wrote:

Hi!

Last dev meetings focussed on the imminent new release of CinelerraCV: 
version 2.2, planned for October 2.


The new version will be compilable also on newer kernels and will 
include the famous Bezier patch by Herman Vosseler (ichthyo).
Einar is finishing working on improved default settings and standard 
presets.


For details see the milestone tickets in Trac:
http://bugs.cinelerra.org/query?group=status&milestone=Release+of+2.2


Please, help CinelerraCV  by testing her!

2 weeks left to the release.
We ask all friends of CinelerraCV (devs and users) to test the changes 
and report bugs related to those changes.

Please, report back to this mailing list.


To test compilation on new kernels and the Bezier patch:

http://git.cinelerra.org/gitweb?p=CinelerraCV.git;a=snapshot;h=77f464b5dafd2c441ccc55282a9489250b83306f;sf=tgz 



Download the source from the above link and compile as usual.
(Grandmas using Ubuntu might find useful compilation instructions at:
http://www.g-raffa.eu/Cinelerra/HOWTO/compilation.html )

For a detailed description of the changes see the commit messages of 
the last commits of the /construction_site brach:
http://git.cinelerra.org/gitweb?p=CinelerraCV.git;a=shortlog;h=refs/heads/construction_site 




To test improved default settings and standard presets:

Please wait. The source will be available shortly.


Thank you!

Ciao
Raffaella

PS:
Remember: only 2 weeks left! It might be your last opportunity! :-)


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra



___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra