You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(17) |
Feb
(10) |
Mar
(17) |
Apr
(17) |
May
|
Jun
(2) |
Jul
(11) |
Aug
(12) |
Sep
(13) |
Oct
(1) |
Nov
|
Dec
(6) |
| 2003 |
Jan
(32) |
Feb
(14) |
Mar
(4) |
Apr
|
May
(6) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
| 2004 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
(4) |
Jun
(2) |
Jul
(10) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(9) |
| 2007 |
Jan
(5) |
Feb
(9) |
Mar
(1) |
Apr
(4) |
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2008 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
(1) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
(5) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2016 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Martin M. <mmo...@na...> - 2003-01-24 23:49:34
|
Hi,
could someone please have a look at this?
cc -O2 -arch ev56 -I/scratch/OpenQuicktime/include -o oqtencoder
oqtencoder.c -lopenquicktime -O2 -arch ev56
cc: Error: oqtencoder.c, line 40: Missing ";". (nosemi)
static int64_t framenumber = -1;
---------------^
cc: Error: oqtencoder.c, line 47: Missing ";". (nosemi)
static quicktime_t *qtout = NULL;
-------------------^
cc: Error: oqtencoder.c, line 132: Invalid expression. (badexpr)
*(int32_t*)videocodec = *(int32_t*)optarg;
----------------^
cc: Info: oqtencoder.c, line 74: In this statement, the return type for
intrinsic "strlen" is being changed from "size_t" to "int".
(intrinsicint)
while(string[i] != '=' && i < strlen(string)) {
--------------------------------^
cc: Error: oqtencoder.c, line 86: In this statement, "qtout" is not
declared. (undeclared)
if(qtout)
-----^
cc: Error: oqtencoder.c, line 135: In this statement, "framenumber" is
not declared. (undeclared)
framenumber = atoi(optarg);
------^
cc: Error: oqtencoder.c, line 180: In this statement, "qtout" is not
declared. (undeclared)
if(qtout == NULL) {
-------^
cc: Error: oqtencoder.c, line 203: In this statement,
"QUICKTIME_INTEGER_PARAMETER" is not declared. (undeclared)
case QUICKTIME_INTEGER_PARAMETER:
-------------^
cc: Error: oqtencoder.c, line 207: In this statement,
"QUICKTIME_UNSIGNED_INTEGER_PARAMETER" is not declared. (undeclared)
case QUICKTIME_UNSIGNED_INTEGER_PARAMETER:
-------------^
cc: Error: oqtencoder.c, line 211: In this statement,
"QUICKTIME_BOOLEAN_PARAMETER" is not declared. (undeclared)
case QUICKTIME_BOOLEAN_PARAMETER:
-------------^
cc: Error: oqtencoder.c, line 219: In this statement,
"QUICKTIME_STRING_PARAMETER" is not declared. (undeclared)
case QUICKTIME_STRING_PARAMETER:
-------------^
cc: Error: oqtencoder.c, line 222: In this statement,
"QUICKTIME_DOUBLE_PARAMETER" is not declared. (undeclared)
case QUICKTIME_DOUBLE_PARAMETER:
-------------^
cc: Error: oqtencoder.c, line 226: In this statement,
"QUICKTIME_UNKNOWN_PARAMETER" is not declared. (undeclared)
case QUICKTIME_UNKNOWN_PARAMETER:
-------------^
cc: Error: oqtencoder.c, line 279: In this statement, "qtout" is not
declared. (undeclared)
quicktime_close(qtout);
------------------^
When I try to use -std1 CFLAGS, the compile breaks as the source code
contain C++ style comments, although it is a a C file. ;-)
Similarly, I have a problem with the OQTPlayer-0.5, which BTW has also
some C++ style comment lines in the code:
cc -O2 -arch ev56 -I/afs/gsf.de/sources/ev56/OpenQuicktime/include
-I/software/@sys/usr/include/SDL -o oqtplayer oqtplayer.c
-lopenquicktime
cc: Error: oqtplayer.c, line 51: Missing ";". (nosemi)
quicktime_t* qtfile;
-----------^
cc: Error: oqtplayer.c, line 344: In this declaration, "longest" must
specify a type. (badparsedecl)
longest pos = quicktime_audio_position (qtfile,n_audio);
------^
cc: Error: oqtplayer.c, line 235: In this statement, "qtfile" is not
declared. (undeclared)
quicktime_set_video_position (qtfile, frame_computed, n_video);
------------------------------------^
cc: Error: oqtplayer.c, line 256: In this statement, "qtfile" is not
declared. (undeclared)
quicktime_decode_video (qtfile,
--------------------------------^
cc: Error: oqtplayer.c, line 324: In this statement, "qtfile" is not
declared. (undeclared)
quicktime_set_audio_position (qtfile, chunk_computed*SAMPLES,
n_audio);
------------------------------------^
cc: Error: oqtplayer.c, line 335: In this statement, "qtfile" is not
declared. (undeclared)
quicktime_decode_audio(qtfile,chunks[computed%NCHUNKS].stream,
---------------------------------^
cc: Error: oqtplayer.c, line 346: In this statement, "qtfile" is not
declared. (undeclared)
quicktime_decode_audio(qtfile,l,NULL,SAMPLES,2*n_audio)) {
---------------------------------^
cc: Error: oqtplayer.c, line 349: In this statement, "pos" is not
declared. (undeclared)
quicktime_set_audio_position(qtfile,pos,n_audio);
--------------------------------------------^
cc: Error: oqtplayer.c, line 530: In this statement, "qtfile" is not
declared. (undeclared)
key = quicktime_get_keyframe_after(qtfile, key, n_video);
-----------------------------------------^
cc: Error: oqtplayer.c, line 749: In this statement, "qtfile" is not
declared. (undeclared)
else frame_computed = quicktime_get_keyframe_before(qtfile, frame,
n_video);
------------------------------------------------------^
cc: Error: oqtplayer.c, line 844: In this statement, "qtfile" is not
declared. (undeclared)
qtfile = quicktime_open(filename, 1, 0);
--^
|
|
From: Martin M. <mmo...@na...> - 2003-01-24 22:24:51
|
Hi, I had a look for the problem with jpeg not detected and I think I found that: As I've Unix version of jpeg, there is 'jpeg_create_compress' instead of 'jpeg_CreateCompress'! When I've modified the configure's sample C program to check for this function in lowercase, it found it. I think you should spend few minutes with some linux box and check that all those functions from graphical libs are in expected case letters. /bin/bash ../../libtool --mode=link cc -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 23:13:42 MET 2003" -lpthread -o oqt_codec_jpeg.la -rpath /software/@sys/usr/lib/openquicktime -module -avoid-version codec_jpeg.lo -ljpeg -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm /usr/bin/ld -shared -expect_unresolved \* .libs/codec_jpeg.o -lpthread -ljpeg -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm -lc -msym -soname oqt_codec_jpeg.so `test -n "" && echo -set_version ` -update_registry .libs/so_locations -o .libs/oqt_codec_jpeg.so /usr/bin/ld: Can't locate file for: -ljpeg make[2]: *** [oqt_codec_jpeg.la] Error 1 make[2]: Leaving directory `/usr/local/scratch/OpenQuicktime/videoplugins/photo_jpeg' /bin/bash ../../libtool --mode=link cc -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 23:13:42 MET 2003" -lpthread -o oqt_codec_png_.la -rpath /software/@sys/usr/lib/openquicktime -module -avoid-version codec_png.lo -lpng -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm /usr/bin/ld -shared -expect_unresolved \* .libs/codec_png.o -lpthread -lpng -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm -lc -msym -soname oqt_codec_png_.so `test -n "" && echo -set_version ` -update_registry .libs/so_locations -o .libs/oqt_codec_png_.so /usr/bin/ld: Can't locate file for: -lpng make[2]: *** [oqt_codec_png_.la] Error 1 make[2]: Leaving directory `/usr/local/scratch/OpenQuicktime/videoplugins/png' I believe when you spend some time cleaning up the configuyre script, the resulting config.status will have in proper shape LDFLAGS, LIBS, CFLAGS, not having "-lm" in LDFLAGS and vice versa. All the errors above I "fixed" just by reordering the link command lines. And yes, -pthread in CFLAGS for cc and cxx on Tru64 as well for audioplugins/mp3: /bin/bash ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../../include/openquicktime -I../../include -I/software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 23:13:42 MET 2003" -c -o codec_MP3.lo `test -f 'codec_MP3.c' || echo './'`codec_MP3.c mkdir .libs cc -DHAVE_CONFIG_H -I. -I. -I../../include/openquicktime -I../../include -I/software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 "-DBUILDDATE=Fri Jan 24 23:13:42 MET 2003" -c -MD codec_MP3.c -DPIC -o .libs/codec_MP3.o cc: Error: /usr/include/pthread.h, line 312: #error "Please compile the module including pthread.h with -pthread" (errormessage) # error "Please compile the module including pthread.h with -pthread" ---^ make[3]: *** [codec_MP3.lo] Error 1 make[3]: Leaving directory `/usr/local/scratch/OpenQuicktime/audioplugins/mp3' Hope this helps |
|
From: Martin M. <mmo...@na...> - 2003-01-24 22:10:15
|
Hi, the current cvs isn't nuch better for my Tru64Unix box. The configure doesn't find my libjpeg, the libtiff is found, but the order of libraries and -Ldir is wrong on the link commandline. /bin/bash ../../libtool --mode=link cc -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 22:36:31 MET 2003" -lpthread -o oqt_codec_tiff.la -rpath /software/@sys/usr/lib/openquicktime -module -avoid-version codec_tiff.lo -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm /usr/bin/ld -shared -expect_unresolved \* .libs/codec_tiff.o -lpthread -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm -lc -msym -soname oqt_codec_tiff.so `test -n "" && echo -set_version ` -update_registry .libs/so_locations -o .libs/oqt_codec_tiff.so /usr/bin/ld: Can't locate file for: -ltiff make[2]: *** [oqt_codec_tiff.la] Error 1 make[2]: Leaving directory `/usr/local/scratch/OpenQuicktime/videoplugins/tiff' source='codec_MP3.c' object='codec_MP3.lo' libtool=yes \ depfile='.deps/codec_MP3.Plo' tmpdepfile='.deps/codec_MP3.TPlo' \ depmode=tru64 /bin/bash ../../build/depcomp \ /bin/bash ../../libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I../../include/openquicktime -I../../include -I/software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 22:36:31 MET 2003" -c -o codec_MP3.lo `test -f 'codec_MP3.c' || echo './'`codec_MP3.c mkdir .libs cc -DHAVE_CONFIG_H -I. -I. -I../../include/openquicktime -I../../include -I/software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 "-DBUILDDATE=Fri Jan 24 22:36:31 MET 2003" -c -MD codec_MP3.c -DPIC -o .libs/codec_MP3.o cc: Error: /usr/include/pthread.h, line 312: #error "Please compile the module including pthread.h with -pthread" (errormessage) # error "Please compile the module including pthread.h with -pthread" ---^ make[3]: *** [codec_MP3.lo] Error 1 make[3]: Leaving directory `/usr/local/scratch/OpenQuicktime/audioplugins/mp3' So I had to add -pthread to CFLAGS and CXXFLAGS manually. Here is a summary of my changes. I hope you will figure out backwards how to modify the Makele.* files to get proper order of libs. diff -u -w config.status config.status.ori --- config.status 2003-01-24 22:59:29.000000000 +0100 +++ config.status.ori 2003-01-24 22:54:16.000000000 +0100 @@ -508,7 +508,7 @@ s,@ECHO_C@,,;t t s,@ECHO_N@,-n,;t t s,@ECHO_T@,,;t t -s,@LIBS@,-lz -lm -lpthread,;t t +s,@LIBS@,-lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm,;t t s,@build@,alphaev67-dec-osf5.1,;t t s,@build_cpu@,alphaev67,;t t s,@build_vendor@,dec,;t t @@ -537,8 +537,8 @@ s,@SET_MAKE@,,;t t s,@LN_S@,ln -s,;t t s,@CC@,cc,;t t -s,@CFLAGS@, -O2 -arch ev56 -pthread -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 22:36:31 MET 2003" ,;t t -s,@LDFLAGS@,-L/software/@sys/usr/lib -L/usr/local/lib -L/software/@sys/usr/openssl/lib,;t t +s,@CFLAGS@, -O2 -arch ev56 -O2 -DUSECURL -DUSEIPV6 -DBUILDDATE="Fri Jan 24 22:36:31 MET 2003" ,;t t +s,@LDFLAGS@,-lpthread ,;t t s,@CPPFLAGS@,-I/software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/include,;t t s,@ac_ct_CC@,cc,;t t s,@EXEEXT@,,;t t @@ -558,7 +558,7 @@ s,@ac_ct_RANLIB@,ranlib,;t t s,@CPP@,cc -E,;t t s,@CXX@,cxx,;t t -s,@CXXFLAGS@,-O2 -arch ev56 -pthread,;t t +s,@CXXFLAGS@,-O2 -arch ev56,;t t s,@ac_ct_CXX@,,;t t s,@CXXDEPMODE@,depmode=tru64,;t t s,@am__fastdepCXX_TRUE@,#,;t t |
|
From: Capt. S. *-J. <st...@3i...> - 2003-01-24 09:55:03
|
On Friday, January 24, 2003, at 04:31 AM, Nick Humfrey wrote: > I am having even greater problems with variable types - as the IRIX cc=20= > I am using does not equate oqt_int8 and char as being the same thing.=20= > Maybe there is a flag to fix this ? - although consistency in the code=20= > would be even better ! try "signed char" -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation." |
|
From: <mmo...@na...> - 2003-01-23 17:41:51
|
On Thu, 23 Jan 2003, Nick Humfrey wrote: Hi, sorry if I wasn't clear. Actually, I compiled on Tru64Uniux, formerly ComapqUnix or DigitalUnix or OSF1. I've only mentioned Irix in the text with hope that order of LIBS and LDFLAGS matters as on Irix systems. Sorr= y for confusion. I can rerty on Irix too, if you want. ;-) Anyway, thanks for the fix, I'll retry and repost tommorow. > Hi, > > I have just gained access to a mips-sgi-irix6.5 machine. > > The configure stage seems to go fine for me - and detects libjpeg > fine. It is very odd the way your system detects libtiff when you > don't have it. > > The -g flag is an option for gcc which enables debugging with > debuggers such as gdb - as OQT is in development we have it on by > default, to disable debugging use: > > ./configure --enable-debug=3Dno Ah, couldn't that be disabled for non-gcc users at least? ;) > > > Not very sure about your problem with the order of LIBS and LDFLAGS - > this is not something we do ourselves - may be a problem with > autoconf/automake ? Anyone ? > > > I have fixed the variable type problem you were having with codec_ulaw.= c. > > > I am having even greater problems with variable types - as the IRIX > cc I am using does not equate oqt_int8 and char as being the same > thing. Maybe there is a flag to fix this ? - although consistency in > the code would be even better ! > > > Cheers, > > nick. > > > > > >Ah, the order of LIBS and LDFLAGS is wrong. This would also break on > >SGI Irix boxes > > > > >On Wed, 22 Jan 2003, Nicholas Humfrey wrote: > > > >> OpenQuicktime 1.0 is very old now, a lot of work has been done sinc= e > >> then and hopefully we will have a 2.0 release available soon. > >> > >> If you would like to try what we have done so far please try > >> downloading the CVS version as described on the download page: > >> http://www.openquicktime.org/download.php > >> > >> > >> You have said nothing about the system and environment you were try= ing > >> to compile it on, hopefully most of the errors you were having will= not > >> be a problem in CVS version. > > > >Hi, > > so I've tried current cvs, few notes: > > > >checking for inflate in -lz... yes > >checking for library containing dlopen... none required > >checking for library containing gethostbyname... none required > >checking for library containing connect... none required > >checking for curl >=3D 7.9.7... 7.10.2 > >checking for getipnodebyname... yes > >Streaming using IPv6. > >checking for shout_init_connection in -lshout... no > >configure: WARNING: library libshout not found > >Command used to compile C files ............... cc -c -O2 -arch ev56 > >-g -DDEBUG > >Command used to assemble files ................ as > >additionnal library linked .................... -lz -L/usr/local/lib > >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm > >MMX support is disabled. > >Pentium assembly optimization is disabled. > >checking for lame_encode_buffer in -lmp3lame... no > >configure: WARNING: library liblame not found > >checking for sdl-config program... FAILED > >configure: WARNING: sdl-config was not found > >No SDL found =3D> not building the player. > >checking for afOpenFile in -laudiofile... no > >configure: WARNING: library libaudiofile not found > >No libaudiofile found =3D> not building the encoder or extractaudio. > >checking for ogg_stream_init in -logg... no > >configure: WARNING: library libogg not found > >checking for vorbis_info_init in -lvorbis... no > >configure: WARNING: library libvorbis not found > >checking for jpeg_CreateCompress in -ljpeg... no > >configure: WARNING: library libjpeg not found > > > >I don't believe I don't have libjpeg installed: > > > > > >checking for TIFFClientOpen in -ltiff... yes > >checking for png_create_read_struct in -lpng... yes > >checking for dv_init in -ldv... no > >configure: WARNING: libdv not found (dv_init) > >checking for decore in -ldivxdecore... no > >configure: WARNING: DivX 5 not found (libdivxdecore) > >checking for encore in -ldivxencore... no > >configure: WARNING: DivX 5 not found (libdivxencore) > >checking for xvid_encore in -lxvidcore... no > >configure: WARNING: XviD not found (libxvidcore) > >Building applications ....... broadcaster > >Building audio plugins ...... simple agsm mp3 > >Building video plugins ...... simple cinepak rle roadpizza smc > >sorenson tga tiff png > >C warnings .......... > >C defines ............ -DUSECURL -DUSEIPV6 > >[...] > > > >Few snippets from config.log: > > > >configure:21563: checking malloc.h usability > >configure:21572: cc -c -O2 -arch ev56 -g -DDEBUG > >-I/software/@sys/usr/include -I/usr/local/include > >-I/usr/local/openssl > >/include conftest.c >&5 > >cc: Info: File not optimized; use -g3 if both optimization and debug > >wanted. (suppressoptlvl) > >configure:21575: $? =3D 0 > >configure:21578: test -s conftest.o > >configure:21581: $? =3D 0 > >configure:21590: result: yes > > > >Why is the -g flag included? > > > > > > > > > >configure:22660: checking for jpeg_CreateCompress in -ljpeg > >configure:22687: cc -o conftest -O2 -arch ev56 -g -DDEBUG > >-I/software/@sys/usr/include -I/usr/local/include -I/usr/loca > >l/openssl/include conftest.c -ljpeg -lz -L/usr/local/lib > >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib > >-lm >&5 > >cc: Info: File not optimized; use -g3 if both optimization and debug > >wanted. (suppressoptlvl) > >ld: > >Unresolved: > >jpeg_CreateCompress > >configure:22690: $? =3D 1 > >configure: failed program was: > >#line 22667 "configure" > >#include "confdefs.h" > > > >/* Override any gcc2 internal prototype to avoid an error. */ > >#ifdef __cplusplus > >extern "C" > >#endif > >/* We use char because int might match the return type of a gcc2 > > builtin and then its argument prototype would still apply. */ > >char jpeg_CreateCompress (); > >int > >main () > >{ > >jpeg_CreateCompress (); > > ; > > return 0; > >} > >configure:22707: result: no > >configure:22712: WARNING: library libjpeg not found > > > >Do you require any special version of jpeg? I believe I've installed: > >jpegsrc.v6b.tar.gz > > > > > >But here it did not matter? > >configure:22717: checking for TIFFClientOpen in -ltiff > >configure:22744: cc -o conftest -O2 -arch ev56 -g -DDEBUG > >-I/software/@sys/usr/include -I/usr/local/include -I/usr/loca > >l/openssl/include conftest.c -ltiff -lz -L/usr/local/lib > >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib > >-lm >&5 > >cc: Info: File not optimized; use -g3 if both optimization and debug > >wanted. (suppressoptlvl) > >configure:22747: $? =3D 0 > >configure:22750: test -s conftest > >configure:22753: $? =3D 0 > >configure:22764: result: yes > >configure:22774: checking for png_create_read_struct in -lpng > >configure:22801: cc -o conftest -O2 -arch ev56 -g -DDEBUG > >-I/software/@sys/usr/include -I/usr/local/include -I/usr/loca > >l/openssl/include conftest.c -lpng -lz -L/usr/local/lib > >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib - > >lm >&5 > >cc: Info: File not optimized; use -g3 if both optimization and debug > >wanted. (suppressoptlvl) > >configure:22804: $? =3D 0 > >configure:22807: test -s conftest > >configure:22810: $? =3D 0 > >configure:22821: result: yes > > > > > > > > > > > >/bin/bash ../../libtool --mode=3Dlink cc -O2 -arch ev56 -g -DDEBUG > >-DUSECURL -DUSEIPV6 -DBUILDDATE=3D"Thu Jan 23 14:46:07 MET 2003" > >-lpthread -o oqqt_codec_tiff.la -rpath > >/software/@sys/usr/lib/openquicktime -module -avoid-version > >codec_tiff.lo -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib > >-L/usr/local/openssl/lib -L/usr/lib -lm > >/usr/bin/ld -shared -expect_unresolved \* .libs/codec_tiff.o > >-lpthread -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib > >-L/usr/local/openssl/lib -L/usr/lib -lm -lc -msym -soname > >oqt_codec_tiff.so `test -n "" && echo -set_version ` > >-update_registry .libs/so_locations -o .libs/oqt_codec_tiff.so > >/usr/bin/ld: > >Can't locate file for: -ltiff > >make[2]: *** [oqt_codec_tiff.la] Error 1 > >make[2]: Leaving directory > >`/usr/local/scratch/OpenQuicktime/videoplugins/tiff' > >$ ls -la /software/@sys/usr/lib/libti* > >-r--r--r-- 1 cron daemon 553234 Jan 14 15:20 > >/software/@sys/usr/lib/libtiff.a > >$ > > > >Ah, the order of LIBS and LDFLAGS is wrong. This would also break on > >SGI Irix boxes > >with native cc/CC/ld, because the linker there complies with POSIX, > >i.e. is a single-pass linker, as I was told recently. > > > > > >When I've reconfigured with LDFLAGS appended to CC variable, I got up = to here: > > > >/bin/bash ../../libtool --mode=3Dcompile cc -O2 -arch ev56 > >-L/software/@sys/usr/lib -I/software/@sys/usr/include > >-DHAVE_CONFIG_H -I. -I. -I../../includee/openquicktime > >-I../../include -I/software/@sys/usr/include -I/usr/local/include > >-I/usr/local/openssl/include -O2 -arch ev56 -g -DDEBUG -DUSECURL > >-DUSEIPV6 -DBUILDDATE=3D"Thu Jan 23 14:59:31 MET 2003" -c -o > >codec_ulaw.lo `test -f 'codec_ulaw.c' || echo './'`codec_ulaw.c > > cc -O2 -arch ev56 -L/software/@sys/usr/lib > >-I/software/@sys/usr/include -DHAVE_CONFIG_H -I. -I. > >-I../../include/openquicktime -I../../include > >-I/software/@sys/usr/include -I/usr/local/include > >-I/usr/local/openssl/include -O2 -arch ev56 -g -DDEBUG -DUSECURL > >-DUSEIPV6 "-DBUILDDATE=3DThu Jan 23 14:59:31 MET 2003" -c -MD > >codec_ulaw.c -DPIC -o .libs/codec_ulaw.o > >cc: Info: File not optimized; use -g3 if both optimization and debug > >wanted. (suppressoptlvl) > >cc: Error: codec_ulaw.c, line 50: Missing type specifier or type > >qualifier. (missingtype) > > int16_t *ulawtoint16_table; > >--------^ > >cc: Error: codec_ulaw.c, line 51: Missing type specifier or type > >qualifier. (missingtype) > > int16_t *ulawtoint16_ptr; > >--------^ > >cc: Error: codec_ulaw.c, line 69: In this statement, "int16_t" is > >not declared. (undeclared) > > p->ulawtoint16_table =3D malloc(sizeof(int16_t) * 256= ); > >-----------------------------------------------------^ > >make[2]: *** [codec_ulaw.lo] Error 1 > >make[2]: Leaving directory > >`/usr/local/scratch/OpenQuicktime/audioplugins/simple' > > > > > >Please Cc: me in replies. > >-- > >Martin Mokrejs <mmo...@na...>, <m.m...@gs...> > >PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs > >MIPS / Institute for Bioinformatics <http://mips.gsf.de> > >GSF - National Research Center for Environment and Health > >Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany > >tel.: +49-89-3187 3683 , fax: +49-89-3187 3585 > > > > > >------------------------------------------------------- > >This SF.NET email is sponsored by: > >SourceForge Enterprise Edition + IBM + LinuxWorld http://www.vasoftwar= e.com > >_______________________________________________ > >Openquicktime-devel mailing list > >Ope...@li... > >https://lists.sourceforge.net/lists/listinfo/openquicktime-devel > --=20 Martin Mokrejs <mmo...@na...>, <m.m...@gs...> PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs MIPS / Institute for Bioinformatics <http://mips.gsf.de> GSF - National Research Center for Environment and Health Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany tel.: +49-89-3187 3683 , fax:=A0+49-89-3187 3585 |
|
From: Nick H. <nj...@ec...> - 2003-01-23 17:32:26
|
Hi, I have just gained access to a mips-sgi-irix6.5 machine. The configure stage seems to go fine for me - and detects libjpeg fine. It is very odd the way your system detects libtiff when you don't have it. The -g flag is an option for gcc which enables debugging with debuggers such as gdb - as OQT is in development we have it on by default, to disable debugging use: ./configure --enable-debug=no Not very sure about your problem with the order of LIBS and LDFLAGS - this is not something we do ourselves - may be a problem with autoconf/automake ? Anyone ? I have fixed the variable type problem you were having with codec_ulaw.c. I am having even greater problems with variable types - as the IRIX cc I am using does not equate oqt_int8 and char as being the same thing. Maybe there is a flag to fix this ? - although consistency in the code would be even better ! Cheers, nick. >Ah, the order of LIBS and LDFLAGS is wrong. This would also break on >SGI Irix boxes >On Wed, 22 Jan 2003, Nicholas Humfrey wrote: > >> OpenQuicktime 1.0 is very old now, a lot of work has been done since >> then and hopefully we will have a 2.0 release available soon. >> >> If you would like to try what we have done so far please try >> downloading the CVS version as described on the download page: >> http://www.openquicktime.org/download.php >> >> >> You have said nothing about the system and environment you were trying >> to compile it on, hopefully most of the errors you were having will not >> be a problem in CVS version. > >Hi, > so I've tried current cvs, few notes: > >checking for inflate in -lz... yes >checking for library containing dlopen... none required >checking for library containing gethostbyname... none required >checking for library containing connect... none required >checking for curl >= 7.9.7... 7.10.2 >checking for getipnodebyname... yes >Streaming using IPv6. >checking for shout_init_connection in -lshout... no >configure: WARNING: library libshout not found >Command used to compile C files ............... cc -c -O2 -arch ev56 >-g -DDEBUG >Command used to assemble files ................ as >additionnal library linked .................... -lz -L/usr/local/lib >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm >MMX support is disabled. >Pentium assembly optimization is disabled. >checking for lame_encode_buffer in -lmp3lame... no >configure: WARNING: library liblame not found >checking for sdl-config program... FAILED >configure: WARNING: sdl-config was not found >No SDL found => not building the player. >checking for afOpenFile in -laudiofile... no >configure: WARNING: library libaudiofile not found >No libaudiofile found => not building the encoder or extractaudio. >checking for ogg_stream_init in -logg... no >configure: WARNING: library libogg not found >checking for vorbis_info_init in -lvorbis... no >configure: WARNING: library libvorbis not found >checking for jpeg_CreateCompress in -ljpeg... no >configure: WARNING: library libjpeg not found > >I don't believe I don't have libjpeg installed: > > >checking for TIFFClientOpen in -ltiff... yes >checking for png_create_read_struct in -lpng... yes >checking for dv_init in -ldv... no >configure: WARNING: libdv not found (dv_init) >checking for decore in -ldivxdecore... no >configure: WARNING: DivX 5 not found (libdivxdecore) >checking for encore in -ldivxencore... no >configure: WARNING: DivX 5 not found (libdivxencore) >checking for xvid_encore in -lxvidcore... no >configure: WARNING: XviD not found (libxvidcore) >Building applications ....... broadcaster >Building audio plugins ...... simple agsm mp3 >Building video plugins ...... simple cinepak rle roadpizza smc >sorenson tga tiff png >C warnings .......... >C defines ............ -DUSECURL -DUSEIPV6 >[...] > >Few snippets from config.log: > >configure:21563: checking malloc.h usability >configure:21572: cc -c -O2 -arch ev56 -g -DDEBUG >-I/software/@sys/usr/include -I/usr/local/include >-I/usr/local/openssl >/include conftest.c >&5 >cc: Info: File not optimized; use -g3 if both optimization and debug >wanted. (suppressoptlvl) >configure:21575: $? = 0 >configure:21578: test -s conftest.o >configure:21581: $? = 0 >configure:21590: result: yes > >Why is the -g flag included? > > > > >configure:22660: checking for jpeg_CreateCompress in -ljpeg >configure:22687: cc -o conftest -O2 -arch ev56 -g -DDEBUG >-I/software/@sys/usr/include -I/usr/local/include -I/usr/loca >l/openssl/include conftest.c -ljpeg -lz -L/usr/local/lib >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib >-lm >&5 >cc: Info: File not optimized; use -g3 if both optimization and debug >wanted. (suppressoptlvl) >ld: >Unresolved: >jpeg_CreateCompress >configure:22690: $? = 1 >configure: failed program was: >#line 22667 "configure" >#include "confdefs.h" > >/* Override any gcc2 internal prototype to avoid an error. */ >#ifdef __cplusplus >extern "C" >#endif >/* We use char because int might match the return type of a gcc2 > builtin and then its argument prototype would still apply. */ >char jpeg_CreateCompress (); >int >main () >{ >jpeg_CreateCompress (); > ; > return 0; >} >configure:22707: result: no >configure:22712: WARNING: library libjpeg not found > >Do you require any special version of jpeg? I believe I've installed: >jpegsrc.v6b.tar.gz > > >But here it did not matter? >configure:22717: checking for TIFFClientOpen in -ltiff >configure:22744: cc -o conftest -O2 -arch ev56 -g -DDEBUG >-I/software/@sys/usr/include -I/usr/local/include -I/usr/loca >l/openssl/include conftest.c -ltiff -lz -L/usr/local/lib >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib >-lm >&5 >cc: Info: File not optimized; use -g3 if both optimization and debug >wanted. (suppressoptlvl) >configure:22747: $? = 0 >configure:22750: test -s conftest >configure:22753: $? = 0 >configure:22764: result: yes >configure:22774: checking for png_create_read_struct in -lpng >configure:22801: cc -o conftest -O2 -arch ev56 -g -DDEBUG >-I/software/@sys/usr/include -I/usr/local/include -I/usr/loca >l/openssl/include conftest.c -lpng -lz -L/usr/local/lib >-L/software/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib - >lm >&5 >cc: Info: File not optimized; use -g3 if both optimization and debug >wanted. (suppressoptlvl) >configure:22804: $? = 0 >configure:22807: test -s conftest >configure:22810: $? = 0 >configure:22821: result: yes > > > > > >/bin/bash ../../libtool --mode=link cc -O2 -arch ev56 -g -DDEBUG >-DUSECURL -DUSEIPV6 -DBUILDDATE="Thu Jan 23 14:46:07 MET 2003" >-lpthread -o oqqt_codec_tiff.la -rpath >/software/@sys/usr/lib/openquicktime -module -avoid-version >codec_tiff.lo -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib >-L/usr/local/openssl/lib -L/usr/lib -lm >/usr/bin/ld -shared -expect_unresolved \* .libs/codec_tiff.o >-lpthread -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib >-L/usr/local/openssl/lib -L/usr/lib -lm -lc -msym -soname >oqt_codec_tiff.so `test -n "" && echo -set_version ` >-update_registry .libs/so_locations -o .libs/oqt_codec_tiff.so >/usr/bin/ld: >Can't locate file for: -ltiff >make[2]: *** [oqt_codec_tiff.la] Error 1 >make[2]: Leaving directory >`/usr/local/scratch/OpenQuicktime/videoplugins/tiff' >$ ls -la /software/@sys/usr/lib/libti* >-r--r--r-- 1 cron daemon 553234 Jan 14 15:20 >/software/@sys/usr/lib/libtiff.a >$ > >Ah, the order of LIBS and LDFLAGS is wrong. This would also break on >SGI Irix boxes >with native cc/CC/ld, because the linker there complies with POSIX, >i.e. is a single-pass linker, as I was told recently. > > >When I've reconfigured with LDFLAGS appended to CC variable, I got up to here: > >/bin/bash ../../libtool --mode=compile cc -O2 -arch ev56 >-L/software/@sys/usr/lib -I/software/@sys/usr/include >-DHAVE_CONFIG_H -I. -I. -I../../includee/openquicktime >-I../../include -I/software/@sys/usr/include -I/usr/local/include >-I/usr/local/openssl/include -O2 -arch ev56 -g -DDEBUG -DUSECURL >-DUSEIPV6 -DBUILDDATE="Thu Jan 23 14:59:31 MET 2003" -c -o >codec_ulaw.lo `test -f 'codec_ulaw.c' || echo './'`codec_ulaw.c > cc -O2 -arch ev56 -L/software/@sys/usr/lib >-I/software/@sys/usr/include -DHAVE_CONFIG_H -I. -I. >-I../../include/openquicktime -I../../include >-I/software/@sys/usr/include -I/usr/local/include >-I/usr/local/openssl/include -O2 -arch ev56 -g -DDEBUG -DUSECURL >-DUSEIPV6 "-DBUILDDATE=Thu Jan 23 14:59:31 MET 2003" -c -MD >codec_ulaw.c -DPIC -o .libs/codec_ulaw.o >cc: Info: File not optimized; use -g3 if both optimization and debug >wanted. (suppressoptlvl) >cc: Error: codec_ulaw.c, line 50: Missing type specifier or type >qualifier. (missingtype) > int16_t *ulawtoint16_table; >--------^ >cc: Error: codec_ulaw.c, line 51: Missing type specifier or type >qualifier. (missingtype) > int16_t *ulawtoint16_ptr; >--------^ >cc: Error: codec_ulaw.c, line 69: In this statement, "int16_t" is >not declared. (undeclared) > p->ulawtoint16_table = malloc(sizeof(int16_t) * 256); >-----------------------------------------------------^ >make[2]: *** [codec_ulaw.lo] Error 1 >make[2]: Leaving directory >`/usr/local/scratch/OpenQuicktime/audioplugins/simple' > > >Please Cc: me in replies. >-- >Martin Mokrejs <mmo...@na...>, <m.m...@gs...> >PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs >MIPS / Institute for Bioinformatics <http://mips.gsf.de> >GSF - National Research Center for Environment and Health >Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany >tel.: +49-89-3187 3683 , fax: +49-89-3187 3585 > > >------------------------------------------------------- >This SF.NET email is sponsored by: >SourceForge Enterprise Edition + IBM + LinuxWorld http://www.vasoftware.com >_______________________________________________ >Openquicktime-devel mailing list >Ope...@li... >https://lists.sourceforge.net/lists/listinfo/openquicktime-devel |
|
From: <mmo...@na...> - 2003-01-23 14:06:37
|
On Wed, 22 Jan 2003, Nicholas Humfrey wrote: > OpenQuicktime 1.0 is very old now, a lot of work has been done since > then and hopefully we will have a 2.0 release available soon. > > If you would like to try what we have done so far please try > downloading the CVS version as described on the download page: > http://www.openquicktime.org/download.php > > > You have said nothing about the system and environment you were trying > to compile it on, hopefully most of the errors you were having will not > be a problem in CVS version. Hi, so I've tried current cvs, few notes: checking for inflate in -lz... yes checking for library containing dlopen... none required checking for library containing gethostbyname... none required checking for library containing connect... none required checking for curl >=3D 7.9.7... 7.10.2 checking for getipnodebyname... yes Streaming using IPv6. checking for shout_init_connection in -lshout... no configure: WARNING: library libshout not found Command used to compile C files ............... cc -c -O2 -arch ev56 -g = -DDEBUG Command used to assemble files ................ as additionnal library linked .................... -lz -L/usr/local/lib -L/s= oftware/@sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm MMX support is disabled. Pentium assembly optimization is disabled. checking for lame_encode_buffer in -lmp3lame... no configure: WARNING: library liblame not found checking for sdl-config program... FAILED configure: WARNING: sdl-config was not found No SDL found =3D> not building the player. checking for afOpenFile in -laudiofile... no configure: WARNING: library libaudiofile not found No libaudiofile found =3D> not building the encoder or extractaudio. checking for ogg_stream_init in -logg... no configure: WARNING: library libogg not found checking for vorbis_info_init in -lvorbis... no configure: WARNING: library libvorbis not found checking for jpeg_CreateCompress in -ljpeg... no configure: WARNING: library libjpeg not found I don't believe I don't have libjpeg installed: checking for TIFFClientOpen in -ltiff... yes checking for png_create_read_struct in -lpng... yes checking for dv_init in -ldv... no configure: WARNING: libdv not found (dv_init) checking for decore in -ldivxdecore... no configure: WARNING: DivX 5 not found (libdivxdecore) checking for encore in -ldivxencore... no configure: WARNING: DivX 5 not found (libdivxencore) checking for xvid_encore in -lxvidcore... no configure: WARNING: XviD not found (libxvidcore) Building applications ....... broadcaster Building audio plugins ...... simple agsm mp3 Building video plugins ...... simple cinepak rle roadpizza smc sorenson t= ga tiff png C warnings .......... C defines ............ -DUSECURL -DUSEIPV6 [...] Few snippets from config.log: configure:21563: checking malloc.h usability configure:21572: cc -c -O2 -arch ev56 -g -DDEBUG -I/software/@sys/usr/in= clude -I/usr/local/include -I/usr/local/openssl /include conftest.c >&5 cc: Info: File not optimized; use -g3 if both optimization and debug want= ed. (suppressoptlvl) configure:21575: $? =3D 0 configure:21578: test -s conftest.o configure:21581: $? =3D 0 configure:21590: result: yes Why is the -g flag included? configure:22660: checking for jpeg_CreateCompress in -ljpeg configure:22687: cc -o conftest -O2 -arch ev56 -g -DDEBUG -I/software/@s= ys/usr/include -I/usr/local/include -I/usr/loca l/openssl/include conftest.c -ljpeg -lz -L/usr/local/lib -L/software/@s= ys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm >&5 cc: Info: File not optimized; use -g3 if both optimization and debug want= ed. (suppressoptlvl) ld: Unresolved: jpeg_CreateCompress configure:22690: $? =3D 1 configure: failed program was: #line 22667 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char jpeg_CreateCompress (); int main () { jpeg_CreateCompress (); ; return 0; } configure:22707: result: no configure:22712: WARNING: library libjpeg not found Do you require any special version of jpeg? I believe I've installed: jpegsrc.v6b.tar.gz But here it did not matter? configure:22717: checking for TIFFClientOpen in -ltiff configure:22744: cc -o conftest -O2 -arch ev56 -g -DDEBUG -I/software/@s= ys/usr/include -I/usr/local/include -I/usr/loca l/openssl/include conftest.c -ltiff -lz -L/usr/local/lib -L/software/@s= ys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm >&5 cc: Info: File not optimized; use -g3 if both optimization and debug want= ed. (suppressoptlvl) configure:22747: $? =3D 0 configure:22750: test -s conftest configure:22753: $? =3D 0 configure:22764: result: yes configure:22774: checking for png_create_read_struct in -lpng configure:22801: cc -o conftest -O2 -arch ev56 -g -DDEBUG -I/software/@s= ys/usr/include -I/usr/local/include -I/usr/loca l/openssl/include conftest.c -lpng -lz -L/usr/local/lib -L/software/@sy= s/usr/lib -L/usr/local/openssl/lib -L/usr/lib - lm >&5 cc: Info: File not optimized; use -g3 if both optimization and debug want= ed. (suppressoptlvl) configure:22804: $? =3D 0 configure:22807: test -s conftest configure:22810: $? =3D 0 configure:22821: result: yes /bin/bash ../../libtool --mode=3Dlink cc -O2 -arch ev56 -g -DDEBUG -DU= SECURL -DUSEIPV6 -DBUILDDATE=3D"Thu Jan 23 14:46:07 MET 2003" -lpthrea= d -o oqqt_codec_tiff.la -rpath /software/@sys/usr/lib/openquicktime -mod= ule -avoid-version codec_tiff.lo -ltiff -lz -L/usr/local/lib -L/software/= @sys/usr/lib -L/usr/local/openssl/lib -L/usr/lib -lm /usr/bin/ld -shared -expect_unresolved \* .libs/codec_tiff.o -lpthread = -ltiff -lz -L/usr/local/lib -L/software/@sys/usr/lib -L/usr/local/openssl= /lib -L/usr/lib -lm -lc -msym -soname oqt_codec_tiff.so `test -n "" && e= cho -set_version ` -update_registry .libs/so_locations -o .libs/oqt_codec= _tiff.so /usr/bin/ld: Can't locate file for: -ltiff make[2]: *** [oqt_codec_tiff.la] Error 1 make[2]: Leaving directory `/usr/local/scratch/OpenQuicktime/videoplugins= /tiff' $ ls -la /software/@sys/usr/lib/libti* -r--r--r-- 1 cron daemon 553234 Jan 14 15:20 /software/@sys/us= r/lib/libtiff.a $ Ah, the order of LIBS and LDFLAGS is wrong. This would also break on SGI = Irix boxes with native cc/CC/ld, because the linker there complies with POSIX, i.e. is a single-pass linker, as I was told recently. When I've reconfigured with LDFLAGS appended to CC variable, I got up to = here: /bin/bash ../../libtool --mode=3Dcompile cc -O2 -arch ev56 -L/software/@s= ys/usr/lib -I/software/@sys/usr/include -DHAVE_CONFIG_H -I. -I. -I../../i= ncludee/openquicktime -I../../include -I/software/@sys/usr/include -I/us= r/local/include -I/usr/local/openssl/include -O2 -arch ev56 -g -DDEBUG = -DUSECURL -DUSEIPV6 -DBUILDDATE=3D"Thu Jan 23 14:59:31 MET 2003" -c -o= codec_ulaw.lo `test -f 'codec_ulaw.c' || echo './'`codec_ulaw.c cc -O2 -arch ev56 -L/software/@sys/usr/lib -I/software/@sys/usr/include = -DHAVE_CONFIG_H -I. -I. -I../../include/openquicktime -I../../include -I/= software/@sys/usr/include -I/usr/local/include -I/usr/local/openssl/inclu= de -O2 -arch ev56 -g -DDEBUG -DUSECURL -DUSEIPV6 "-DBUILDDATE=3DThu Jan 2= 3 14:59:31 MET 2003" -c -MD codec_ulaw.c -DPIC -o .libs/codec_ulaw.o cc: Info: File not optimized; use -g3 if both optimization and debug want= ed. (suppressoptlvl) cc: Error: codec_ulaw.c, line 50: Missing type specifier or type qualifie= r. (missingtype) int16_t *ulawtoint16_table; --------^ cc: Error: codec_ulaw.c, line 51: Missing type specifier or type qualifie= r. (missingtype) int16_t *ulawtoint16_ptr; --------^ cc: Error: codec_ulaw.c, line 69: In this statement, "int16_t" is not dec= lared. (undeclared) p->ulawtoint16_table =3D malloc(sizeof(int16_t) * 256); -----------------------------------------------------^ make[2]: *** [codec_ulaw.lo] Error 1 make[2]: Leaving directory `/usr/local/scratch/OpenQuicktime/audioplugins= /simple' Please Cc: me in replies. --=20 Martin Mokrejs <mmo...@na...>, <m.m...@gs...> PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs MIPS / Institute for Bioinformatics <http://mips.gsf.de> GSF - National Research Center for Environment and Health Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany tel.: +49-89-3187 3683 , fax:=A0+49-89-3187 3585 |
|
From: Nicholas H. <nj...@ec...> - 2003-01-22 22:35:19
|
OpenQuicktime 1.0 is very old now, a lot of work has been done since=20 then and hopefully we will have a 2.0 release available soon. If you would like to try what we have done so far please try=20 downloading the CVS version as described on the download page: http://www.openquicktime.org/download.php You have said nothing about the system and environment you were trying=20= to compile it on, hopefully most of the errors you were having will not=20= be a problem in CVS version. You *will* need zlib and dynamic library support installed on your=20 system - but there won't be very many systems that don't already have=20 this. Cheers, nick. On Wednesday, January 22, 2003, at 09:27 pm, Martin MOKREJ=8A wrote: > Hi, > I tried to compile it but has several problems: > > 1) > The configure breaks on my system complaining that -lz is not > present, but config.log actually says that -lexc was not found by the=20= > linker. > > Also, on dlopen() test linker breaks as -ldl is not present. > > I had to delete the "exit 1" commands in configure to bypass these. > > > > 2) > *.c file contain C++ style comments (//). My compiler cc(1) break on > these. Maybe there's more of them. > > cc -std1 -I/software/@sys/usr/include/glib-1.2=20 > -I/software/@sys/usr/lib/glib/include -KPIC -O2 -arch ev56 -pthread =20= > -g -DDEBUG -DHAVE_CONFIG_H -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE=20= > -D_FILE_OFFSET_BITS=3D64 -I. -c atom.c -o atom.o > cc: Info: File not optimized; use -g3 if both optimization and debug=20= > wanted. (suppressoptlvl) > cc: Error: private.h, line 553: Ill-formed parameter type list.=20 > (parmtyplist) > int16_t *output_i, > --------------------------------^ > cc: Error: private.h, line 559: Ill-formed parameter type list.=20 > (parmtyplist) > int16_t **input_i, > --------------------------------^ > cc: Error: openquicktime.h, line 253: Ill-formed parameter type list.=20= > (parmtyplist) > OPENQUICKTIMELIB_API int quicktime_decode_audio(quicktime_t *file,=20 > int16_t *output_i, float *output_f, long samples, int channel); > -------------------------------------------------------------------^ > cc: Error: openquicktime.h, line 254: Ill-formed parameter type list.=20= > (parmtyplist) > OPENQUICKTIMELIB_API int quicktime_encode_audio(quicktime_t *file,=20 > int16_t **input_i, float **input_f, long samples); > -------------------------------------------------------------------^ > cc: Error: atom.c, line 53: Invalid statement. (badstmt) > // printf("quicktime_atom_read_header 1 %c%c%c%c start 0x%llx=20= > size %lld end 0x%llx ftell 0x%llx 0x%llx\n", > --------^ > cc: Error: atom.c, line 123: Invalid statement. (badstmt) > //printf("quicktime_atom_write_footer 0x%llx 0x%llx 0x%llx 0x%llx\n",=20= > file->total_length, file->file_position, atom->start, atom->end); > ^ > cc: Error: atom.c, line 158: Invalid statement. (badstmt) > // extended header is size 1 > ^ > cc: Error: atom.c, line 196: Invalid statement. (badstmt) > //printf("%c%c%c%c ", type[0], type[1], type[2], type[3]); > --------^ > > > 3) > cc -I/software/@sys/usr/include/glib-1.2=20 > -I/software/@sys/usr/lib/glib/include -KPIC -O2 -arch ev56 -pthread =20= > -g -DDEBUG -DHAVE_CONFIG_H -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE=20= > -D_FILE_OFFSET_BITS=3D64 -I. -c atom.c -o atom.o > cc: Info: File not optimized; use -g3 if both optimization and debug=20= > wanted. (suppressoptlvl) > cc: Error: private.h, line 553: Ill-formed parameter type list.=20 > (parmtyplist) > int16_t *output_i, > --------------------------------^ > cc: Error: private.h, line 559: Ill-formed parameter type list.=20 > (parmtyplist) > int16_t **input_i, > --------------------------------^ > cc: Error: openquicktime.h, line 253: Ill-formed parameter type list.=20= > (parmtyplist) > OPENQUICKTIMELIB_API int quicktime_decode_audio(quicktime_t *file,=20 > int16_t *output_i, float *output_f, long samples, int channel); > -------------------------------------------------------------------^ > cc: Error: openquicktime.h, line 254: Ill-formed parameter type list.=20= > (parmtyplist) > OPENQUICKTIMELIB_API int quicktime_encode_audio(quicktime_t *file,=20 > int16_t **input_i, float **input_f, long samples); > -------------------------------------------------------------------^ > make: *** [atom.o] Error 1 > > > Please, Cc: me in replies. > --=20 > Martin Mokrejs <mmo...@na...>, <m.m...@gs...> > PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs > MIPS / Institute for Bioinformatics <http://mips.gsf.de> > GSF - National Research Center for Environment and Health > Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany > tel.: +49-89-3187 3683 , fax:=A0+49-89-3187 3585 > > > ------------------------------------------------------- > This SF.net email is sponsored by: Scholarships for Techies! > Can't afford IT training? All 2003 ictp students receive scholarships. > Get hands-on training in Microsoft, Cisco, Sun, Linux/UNIX, and more. > www.ictp.com/training/sourceforge.asp > _______________________________________________ > Openquicktime-devel mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/openquicktime-devel > |
|
From: <mmo...@na...> - 2003-01-22 21:28:03
|
Hi,
I tried to compile it but has several problems:
1)
The configure breaks on my system complaining that -lz is not
present, but config.log actually says that -lexc was not found by the lin=
ker.
Also, on dlopen() test linker breaks as -ldl is not present.
I had to delete the "exit 1" commands in configure to bypass these.
2)
*.c file contain C++ style comments (//). My compiler cc(1) break on
these. Maybe there's more of them.
cc -std1 -I/software/@sys/usr/include/glib-1.2 -I/software/@sys/usr/lib/g=
lib/include -KPIC -O2 -arch ev56 -pthread -g -DDEBUG -DHAVE_CONFIG_H -=
D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=3D64 -I. -c =
atom.c -o atom.o
cc: Info: File not optimized; use -g3 if both optimization and debug want=
ed. (suppressoptlvl)
cc: Error: private.h, line 553: Ill-formed parameter type list. (parmtypl=
ist)
int16_t *output_i,
--------------------------------^
cc: Error: private.h, line 559: Ill-formed parameter type list. (parmtypl=
ist)
int16_t **input_i,
--------------------------------^
cc: Error: openquicktime.h, line 253: Ill-formed parameter type list. (pa=
rmtyplist)
OPENQUICKTIMELIB_API int quicktime_decode_audio(quicktime_t *file, int16_=
t *output_i, float *output_f, long samples, int channel);
-------------------------------------------------------------------^
cc: Error: openquicktime.h, line 254: Ill-formed parameter type list. (pa=
rmtyplist)
OPENQUICKTIMELIB_API int quicktime_encode_audio(quicktime_t *file, int16_=
t **input_i, float **input_f, long samples);
-------------------------------------------------------------------^
cc: Error: atom.c, line 53: Invalid statement. (badstmt)
// printf("quicktime_atom_read_header 1 %c%c%c%c start 0x%llx si=
ze %lld end 0x%llx ftell 0x%llx 0x%llx\n",
--------^
cc: Error: atom.c, line 123: Invalid statement. (badstmt)
//printf("quicktime_atom_write_footer 0x%llx 0x%llx 0x%llx 0x%llx\n", fil=
e->total_length, file->file_position, atom->start, atom->end);
^
cc: Error: atom.c, line 158: Invalid statement. (badstmt)
// extended header is size 1
^
cc: Error: atom.c, line 196: Invalid statement. (badstmt)
//printf("%c%c%c%c ", type[0], type[1], type[2], type[3]);
--------^
3)
cc -I/software/@sys/usr/include/glib-1.2 -I/software/@sys/usr/lib/glib/in=
clude -KPIC -O2 -arch ev56 -pthread -g -DDEBUG -DHAVE_CONFIG_H -D_LARG=
EFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=3D64 -I. -c atom.c=
-o atom.o
cc: Info: File not optimized; use -g3 if both optimization and debug want=
ed. (suppressoptlvl)
cc: Error: private.h, line 553: Ill-formed parameter type list. (parmtypl=
ist)
int16_t *output_i,
--------------------------------^
cc: Error: private.h, line 559: Ill-formed parameter type list. (parmtypl=
ist)
int16_t **input_i,
--------------------------------^
cc: Error: openquicktime.h, line 253: Ill-formed parameter type list. (pa=
rmtyplist)
OPENQUICKTIMELIB_API int quicktime_decode_audio(quicktime_t *file, int16_=
t *output_i, float *output_f, long samples, int channel);
-------------------------------------------------------------------^
cc: Error: openquicktime.h, line 254: Ill-formed parameter type list. (pa=
rmtyplist)
OPENQUICKTIMELIB_API int quicktime_encode_audio(quicktime_t *file, int16_=
t **input_i, float **input_f, long samples);
-------------------------------------------------------------------^
make: *** [atom.o] Error 1
Please, Cc: me in replies.
--=20
Martin Mokrejs <mmo...@na...>, <m.m...@gs...>
PGP5.0i key is at http://www.natur.cuni.cz/~mmokrejs
MIPS / Institute for Bioinformatics <http://mips.gsf.de>
GSF - National Research Center for Environment and Health
Ingolstaedter Landstrasse 1, D-85764 Neuherberg, Germany
tel.: +49-89-3187 3683 , fax:=A0+49-89-3187 3585
|
|
From: Capt. S. *-J. <st...@3i...> - 2003-01-21 20:27:38
|
On Wednesday, January 22, 2003, at 05:15 AM, Alexander Lechner wrote: > Sorry, was my fault. > Still used the pserver access which had been disabled by sourceforge. Glad you worked it out :) -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation." |
|
From: Alexander L. <ale...@ve...> - 2003-01-21 18:16:01
|
Sorry, was my fault. Still used the pserver access which had been disabled by sourceforge. Regards, Alex --=20 Alexander.Lechner @ vertigo-systems.de Engelbertstra=DFe 30 | phone: +49-221-2405472 D-50674 K=F6ln | fax: +49-221-34892616 > Von: Nick Humfrey <nj...@ec...> > Datum: Tue, 21 Jan 2003 17:46:03 +0000 > An: Alexander Lechner <ale...@ve...> > Betreff: Re: [Openquicktime-devel] CVS Write Access disabled? >=20 > Hi, >=20 > Had a look and you are listed as a developer ok - and I am fairly > sure this means you can commit to CVS. >=20 > So not sure what is wrong... >=20 >=20 > Cheers, >=20 > nick. >=20 >=20 >=20 >> Hi all, >>=20 >> I added an ARGB8888->RGBA8888 color conversion. >> I wanted to check in, but the CVS says I don't have write permissions. >> My login is: gordonshumway >>=20 >> Has anybody an explanation or am I doing sth. wrong? >>=20 >> BTW: You're all doing great work with OpenQuicktime! >>=20 >> Alex >>=20 >> -- >> Alexander.Lechner @ vertigo-systems.de >> Engelbertstra=DFe 30 | phone: +49-221-2405472 >> D-50674 K=F6ln | fax: +49-221-34892616 >>=20 >>=20 >>=20 >>=20 >>=20 >> ------------------------------------------------------- >> This SF.net email is sponsored by: Scholarships for Techies! >> Can't afford IT training? All 2003 ictp students receive scholarships. >> Get hands-on training in Microsoft, Cisco, Sun, Linux/UNIX, and more. >> www.ictp.com/training/sourceforge.asp >> _______________________________________________ >> Openquicktime-devel mailing list >> Ope...@li... >> https://lists.sourceforge.net/lists/listinfo/openquicktime-devel >=20 |
|
From: Alexander L. <ale...@ve...> - 2003-01-21 15:15:36
|
Hi all, I added an ARGB8888->RGBA8888 color conversion. I wanted to check in, but the CVS says I don't have write permissions. My login is: gordonshumway Has anybody an explanation or am I doing sth. wrong? BTW: You're all doing great work with OpenQuicktime! Alex --=20 Alexander.Lechner @ vertigo-systems.de Engelbertstra=DFe 30 | phone: +49-221-2405472 D-50674 K=F6ln | fax: +49-221-34892616 |
|
From: Nick H. <nj...@ec...> - 2002-12-15 02:06:57
|
Just did a check-in of the code I had been working on, on this machine. Lots of variable type names now have _t after them. Sorry if this causes any problems. OpenQuicktime can now only encode MPEG Audio if liblame is installed, otherwise the plug-in will only decode. In reply to Jozef's question a while ago - yes it would be very nice to be able to support data in other files - and I should have perhaps thought about this harder before I wrote the new I/O system. I don't this any other Unix quicktime players support this ? Hmmm. Will have to see. With regards to DV audio/video tracks, what you are talking about should already be possible. I would have thought that the offset tables for the audio and video tracks would point to the same data, and then each ignores the other ? I will have a look at adding a DV audio codec. I am about to go back home for Christmas - where we only have a 28.8 modem - gah! (hurry up with the ADSL British Telecom) So I may not be able to check in code - modify stuff online, but I will do my best. Cheers, nick. |
|
From: Capt. S. *-J. <st...@3i...> - 2002-12-14 10:20:18
|
On Wednesday, December 11, 2002, at 04:47 AM, Nick Humfrey wrote: > Ideally I would like to have a pre-release before the New Year - and=20= > make the OpenQuicktime 2.0 release early in the New Year. That's a good idea :) BTW, 3ivx D4 PR2 for Windows is now shipping with an openquicktime.dll=20= :) (based on a two week old cvs snapshot from oqt) This means there are now many thousands of OpenQT for Windows=20 installations ;), just the core media decoder though, not the codecs -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation." |
|
From: Nick H. <nj...@ec...> - 2002-12-10 17:49:02
|
Hello, Sorry my work has been a little slow (at best) recently. I have just started a PhD at Southampton University and everything has been a bit messy and hectic. I also have been without ADSL / Internet access so haven't had a chance to check in my code recently. The good news is that I now have my computer setup in a lab and will start work again ! I have removed lame from the OpenQuicktime sources and have been modifying the mp3 plugin to use the new liblame API. I want OpenQuicktime to be freely distributable on most platforms - and by putting patented codecs in it, it stops us distributing it in binary form. If there are any similar issues with other code in OpenQuicktime, please let me know. So look forward to a check-in soon. Be warned that I have done another massive file changing to make types a little most sensible/standard. Want to get all the done before a release. Ideally I would like to have a pre-release before the New Year - and make the OpenQuicktime 2.0 release early in the New Year. Cheers, nick. |
|
From: Jozef H. <jh...@ho...> - 2002-12-09 01:12:34
|
Hi, I just added an interface with libdv <http://libdv.sourceforge.net/> to decode "dvc " qt files from q4l/hvirtual. This raises some questions. As you might know a DV stream contains multiplexed video and audio. It would be great if we could have qt movies with an audio and a video track that actually share their data. And it would be great to support reading qt files with data in separate files - the qt file would simply provide meta-data and an index (and compatibility with oqtplayer). So for example a .dv file and a .mov meta-file. The second thing definitely exists (people are using tools to generate a .mov meta file for their .avi), I think it's called external references, but I cannot find much information about it in QTFileFormat.pdf. Does anybody know how this works? Yours, Jozef Hatala -- We have done so much with so little for so long that now we can do anything, forever with nothing! -- Unknown _________________________________________________________________ MSN 8 helps eliminate e-mail viruses. Get 2 months FREE*. http://join.msn.com/?page=features/virus |
|
From: Jozef H. <jh...@ho...> - 2002-12-07 04:10:30
|
Hello,
>Are there
>any movies availalable to test teh current stable version, as the movies
>on the project website are encoded with codecs not supported by the
>current release ?
Many of the sample audio and video files at
http://www.openquicktime.org/files.php/
should actually work (audio encoding was still a little bit broken when I
last tested it). There are some obvious dependencies, like libpng for "png
", xvid for "XVID", divx5 for "DX50" and so on.
http://www.openquicktime.org/codecs.php
lists codecs currently supported provided dependecies are available at
configure-time.
>I would like to use it in an application to record several video streams
>in parallel (multiple time-lapse microscopy), will this be possible ?
I don't think this has ever been tested. Per design the library should be
reentrant if one uses different handles in different threads. Some codecs
might fail. Your test feedback would be very helpful.
Greetings,
jh
--
All this wheeling and dealing around, why, it isn't for money, it's for
fun. Money's just the way we keep score.
-- Unknown
_________________________________________________________________
Add photos to your messages with MSN 8. Get 2 months FREE*.
http://join.msn.com/?page=features/featuredemail
|
|
From: <pv...@un...> - 2002-12-06 10:38:20
|
Hi, I have taken a look at the Openquicktime library and it certainly looks good. When is the new stable release planned to be released ? Are there any movies availalable to test teh current stable version, as the movies on the project website are encoded with codecs not supported by the current release ? I would like to use it in an application to record several video streams in parallel (multiple time-lapse micrscopy), will this be possible ? Best regards, Peter Van Osta http://ourworld.compuserve.com/homepages/pvosta/cvwww.htm |
|
From: Nick H. <nj...@ae...> - 2002-10-29 09:04:28
|
I have re-synchronized colour model transfer code with hvirtual-1.0.0 which gave support for a number of new transfers. Also now displays an error message when it is not possible to convert from one model to another. I have also cleaned the code up a bit and made it more OQT style. I also changed the video plugin API slightly. The init and delete delete functions have had their parameters changed slightly so that they take the standard (file, track) parameters. I have also changed the method that the color model is passed to the encode and decode parameters - this is now a parameter, rather than being passed via the oqt_t structure. I think this makes it a lot clearer as to what is going on - especially when colour model transfers are going on. Added the following codecs: Sorenson Video 1 TIFF PNG Component Video (YUV2) Planar RGB (8BPS/Photoshop) Apple Video I hope to be heading towards a release soon - at which point the API will be frozen - well at least could be added to but not changed. If there are any outstanding bugs please let me know. The two main things that I know about and need sorting out are the issues with Audio encoding, and the player not behaving properly. Now that colour model transfers are done in the library again - then the player should take advantage of this. It also doesn't seem to stop decoding or playing at the end of files... Remaining (unsupported) codecs: Audio: The greater than 16bit codecs. MS IMA ADPCM 4:1 [ms 0x0002] DVI IMA ADPCM 4:1 [ms 0x0011] LPC 23:1 [lpc ] QDesign Music 1 [QDMC] QDesign Music 2 [QDM2] Qualcomm Purevoice [Qclp] Video: Apple BMP/MS RLE [WRLE] - doesn't look like BMP files to me ?! DV [dvc ] Motion JPEG [mjpa] TGA [tga ] Graphics [smc ] H.261 [h261] H.263 [h263] Sorenson Video 3 [SVQ3] A few of these would be covered if ffmpeg was used in OQT. nick. |
|
From: Christian F. K. S. <ur...@gn...> - 2002-09-23 17:55:34
|
Hi, I am happy to see that OpenQuicktime development has started up again. If any of guys want CVS access to GStreamer (http://www.gstreamer.net) to update the GStreamer OpenQuicktime plugin let me know :) Christian |
|
From: Mr. S. <st...@ma...> - 2002-09-17 08:48:00
|
nick and others, you really need to be monitoring the OpenQT forum :) http://forums.3ivx.com/cgi-bin/ikonboard/topic.cgi?forum=3D5&topic=3D13 Lots of people with problems compiling the cvs on darwin, etc -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation."= |
|
From: Capt. S. *-J. <st...@3i...> - 2002-09-15 21:51:51
|
28/ August 2002 - Nick 10 Apirl 2002 - Yann :) -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation."= |
|
From: Capt. S. *-J. <st...@3i...> - 2002-09-14 18:30:30
|
The dates on the News page are bit funny, Yann had mm/dd/yy and your newer updates use dd/mm/yy :) -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation." |
|
From: Capt. S. *-J. <st...@3i...> - 2002-09-14 18:14:37
|
On Saturday, September 14, 2002, at 03:51 AM, Nick Humfrey wrote: > The all new, PHP-powered OpenQuicktime website is now online,=20 > featuring the new OpenQuicktime Logo. > > http://www.openquicktime.org > > > I have restyled all the old pages and added a couple of new ones. > > Major new features are the Codec and Movie file browsers. Both take=20 > information from OpenQuicktime to generate the > pages. May I suggest a "Powered by OpenQuicktime" or something near the badge=20= on the page :) its pretty special that the website is actually powered by the library=20= ;) I'd suggest having the badge go to a little page talking about how the=20= dynamic content on the website actually uses OQT... (if that's what happens ;)) -- This is only the beginning! Capt. Stux *-Jedi =20 mailto:st...@3i... 3ivx=AA is a registered international trademark. Really. **** DISCLAIMER **** "This e-mail and any attachments thereto may contain information which=20= is misleading and/or protected by vain legally positivistic rights and are supposedly intended for the sole use of the recipient(s) named above.=20 Any use of the information contained herein (including, but not limited to, reading it by accident, on the loo, or word of mouth in any form) by persons other than the designated recipient(s) is, um, well, prohibited. If you have received this e-mail in error, accident, humour, mischievous bcc, mailing list glitch, recursive bounce of a co-recipient, sendmail bug, yet another winsock worm, Claire Swire, or the sender just stuffed=20= up because your name was next to the proper one in his address book, please notify the sender either by telephone or by e-mail (yeah we know, as if you would, but then you'd be amazed, some people) and delete the=20 material from any computer. This means empty your Trash and Recycle Bin, of=20 course. And zero the data just in case. Do it six times so the feds can't get at it. Oh, and don't forget your RAM chips; take them out of your computer for at least a day so the transistors can reset. And for chrissake don't leave them in your freezer because we read on Slashdot how that can inhibit the degenerative process. Thank you for your cooperation." |
|
From: Nick H. <nj...@ae...> - 2002-09-14 01:51:10
|
The all new, PHP-powered OpenQuicktime website is now online, featuring the new OpenQuicktime Logo. http://www.openquicktime.org I have restyled all the old pages and added a couple of new ones. Major new features are the Codec and Movie file browsers. Both take information from OpenQuicktime to generate the pages. Still needs some more textual content added - such as Plugin Howtos and an updated F.A.Q. I welcome any contributions / comments ! Cheers, nick. |