• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-1,7231,293

include/H03-May-2022-13,8687,965

m4/H29-Mar-2012-10,5589,553

plugins/H03-May-2022-35,32027,519

po/H03-May-2022-8,1776,567

src/H03-May-2022-31,26223,705

utils/H03-May-2022-9,6047,477

ABOUT-NLSH A D23-May-201174.7 KiB1,0691,022

AUTHORSH A D24-Feb-20020

COPYINGH A D17-Feb-200225.9 KiB516435

ChangeLogH A D23-May-2011369 147

INSTALLH A D29-Mar-201215.2 KiB366284

Makefile.amH A D28-Mar-2010418 2818

Makefile.inH A D03-May-202227.2 KiB874778

NEWSH A D24-Feb-20020

READMEH A D14-Feb-20073.1 KiB10267

TODOH A D15-Dec-2006132 73

acinclude.m4H A D15-Aug-20054.5 KiB176141

aclocal.m4H A D29-Mar-201241.5 KiB1,1801,058

autogen.shH A D02-Jan-2008212 117

config.guessH A D29-Mar-201244.5 KiB1,5341,318

config.h.inH A D29-Mar-20126.4 KiB268184

config.rpathH A D23-May-201117.9 KiB667563

config.subH A D29-Mar-201233.3 KiB1,6941,549

configureH A D03-May-2022586.5 KiB20,72316,443

configure.acH A D29-Mar-201221.5 KiB1,078799

cpuinfo.shH A D29-Sep-20097.9 KiB347292

depcompH A D29-Mar-201218.2 KiB631407

install-shH A D29-Mar-201213.3 KiB521344

libquicktime.pc.inH A D10-May-2005275 1210

ltmain.shH A D29-Mar-2012237.8 KiB8,4146,482

missingH A D29-Mar-201211.2 KiB377281

README

1libquicktime - A library for reading and writing quicktime/avi/mp4 files.
2http://libquicktime.sourceforge.net
3
4Copyright (C) 2002 Heroine Virtual Ltd.
5Copyright (C) 2002-2007 Members of the libquicktime project.
6
7Original quicktime4linux developer:
8
9  Heroine Virtual (Motion picture solutions for Linux)
10  <broadcast@earthling.net>
11  http://heroinewarrior.com/quicktime
12
13libquicktime developers:
14
15  Arthur Peters <amp@singingwizard.org>
16  Burkhard Plaum <plaum@ipf.uni-stuttgart.de>
17  Gerd Knorr <kraxel@bytesex.org>
18  Justin Schoeman 1998 <justin@suntiger.ee.up.ac.za>
19  Elliot Lee <sopwith@redhat.com>
20  and others
21
22RTjpeg:
23
24  Copyright (C) Justin Schoeman 1998 <justin@suntiger.ee.up.ac.za>
25
26  With modifications by:
27
28  Copyright (C) 1998, 1999 by Joerg Walter <trouble@moes.pmnet.uni-oldenburg.de>
29  Copyright (C) 1999 by Wim Taymans <wim.taymans@tvd.be>
30
31Portions from FFmpeg (plugins/rtjpeg/mmx.h):
32
33  Copyright (C) 1997-2001 H. Dietz and R. Fisher
34
35Portions from libsndfile (plugins/audiocodec/alaw_tables.h, ulaw_tables.h):
36
37  Copyright (C) 2002-2004 Erik de Castro Lopo
38
39------------------------------------------------------------------------
40
41Requires:
42	libpthread
43	glibc >= 2.1
44
45This does not include libraries for the codecs.
46If you want to have all availiable codec you will need:
47	libdv >= 0.9.5
48	libpng
49	the OggVorbis libraries
50	libjpeg
51
52
53
54------------------------------------------------------------------------
55
56libquicktime is a library for reading and writing quicktime files. It
57is based on the quicktime4linux library, with the following
58extensions:
59
60    * Sourcetree upgraded with autoconf/automake/libtool and all the
61other stuff, people like in "standard" linux libraries.
62    * All 3rd party libraries (jpeg, OggVorbis) were removed to reduce
63download size, compilation time and code duplication on users harddisks.
64Instead, the sytemwide installed libaries are autodetected by the
65configure script.
66    * All codecs have been moved into dynamically loadable modules.
67This makes it possible to distribute closed source codecs (or codecs
68with an incompatible license) as separate packages.
69    * Unlike other quicktime libraries, we are source compatible with
70quicktime4linux. Programs like cinelerra or xmovie can be compiled with
71libquicktime (if the build system is modified, see our web page for more
72info).
73    * The codecs themselves are also source compatible with
74quicktime4linux, so porting codecs between quicktime4linux and
75libquicktime requires only little brain load.
76    * Special API extensions allow access to the codec registry.
77Applications can get important information about the codecs, their
78settable parameters etc. at runtime.
79
80For build and installation instructions see INSTALL.
81
82If you would like to get involved in development or have questions the
83email list for you is libquicktime-devel@sourceforge.net.
84
85/*******************************************************
86 * References:
87 *********************************/
88
89Apple's quicktime file format information:
90
91http://developer.apple.com/techpubs/quicktime/qtdevdocs/REF/refQTFileFormat.htm
92
93Color space conversions:
94
95http://www.neuro.sfc.keio.ac.jp/~aly/polygon/info/color-space-faq.html
96
97
98
99
100
101
102