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

..03-May-2022-

debian/H07-May-2022-194124

doc/H11-Feb-2004-955827

src/H03-May-2022-25,16119,058

AUTHORSH A D10-Feb-2002434 1715

BUGSH A D30-Oct-2001315 159

CHANGESH A D20-Jun-20032.2 KiB6766

COPYINGH A D22-Jun-200124.7 KiB482399

INSTALLH A D22-Jun-2001173 107

Makefile.amH A D05-Jan-2003764 3923

Makefile.inH A D11-Feb-200418.9 KiB614519

READMEH A D11-Feb-20042 KiB7150

TODOH A D25-May-2002478 2619

acinclude.m4H A D22-Jun-200115.2 KiB454421

aclocal.m4H A D11-Feb-200444.3 KiB1,2681,109

autogen.shH A D22-Jun-200193 84

config.guessH A D16-Jul-200130.5 KiB1,122988

config.subH A D16-Jul-200124 KiB1,2331,120

configureH A D03-May-2022178.2 KiB6,0594,997

configure.inH A D11-Feb-20045.6 KiB232207

depcompH A D17-Oct-200111.8 KiB412275

install-shH A D22-Jun-20015.5 KiB252153

libfame-configH A D11-Feb-20041.1 KiB6255

libfame-config.inH A D22-Jun-20011.1 KiB6255

libfame.m4H A D03-May-20228.4 KiB182174

libfame.m4.inH A D03-May-20228.4 KiB182174

libfame.specH A D11-Feb-20041.5 KiB8262

libfame.spec.inH A D28-Aug-20011.5 KiB8264

ltconfigH A D16-Jul-200192 KiB3,0182,323

ltmain.shH A D16-Jul-2001106.8 KiB3,9762,977

missingH A D22-Jun-20016.1 KiB191154

mkinstalldirsH A D22-Jun-2001732 4123

README

1libFAME version 0.9.1
2
3DESCRIPTION
4===========
5
6	libFAME is a library for fast (real-time) MPEG video encoding, written
7in C and assembly. libFAME currently allows encoding of fast MPEG-1 video,
8as well as MPEG-4 (OpenDivX compatible) rectangular and arbitrary shaped video.
9	This is the first public release of that library, for beta testing.
10
11HOMEPAGE
12========
13
14	libFAME homepage can be found, along with FAME, at:
15		 http://fame.sourceforge.net
16
17	Check for latest news, updates, FAQ and full documentation.
18
19MAINTAINER
20==========
21
22        Vivien Chappelier <vivien.chappelier@enst-bretagne.fr>
23                send bug reports and code patches to this address
24
25        See file "AUTHORS" for author info.
26
27REQUIREMENTS
28============
29
30	Nothing special.
31	Acceleration is provided for processors with MMX support.
32
33INSTALLATION/SETUP
34==================
35
36        See file "INSTALL" for installation and setup info.
37
38USAGE
39=====
40
41	libFAME provides seven functions:
42		- fame_open for creating a new session
43		- fame_init for initializing a new session
44		- fame_encode_frame for encoding a single frame
45		- fame_close to flush remaining data and cleanup the session
46		- fame_register to register components to the library
47		- fame_unregister to unregister components from the library
48		- fame_get_object to retrieve a component from the library
49	See man pages for details.
50
51	Also see the recmpeg and fame utilities (available on the home page)
52	for an example of how to use libFAME.
53
54FILE FORMATS
55============
56
57        The output format of the encoded frames are either MPEG-1 compliant
58	video bitstreams (default), or MPEG-4 Dec 1999 (ISO/IEC 14496-2/AMD1)
59	compliant video bitstreams.
60
61        MPEG-1 video can be read by any MPEG-1 player.
62	MPEG-4 rectangular video can be read by the 'decore' decoder from
63	OpenDivX or any MPEG-4 video player.
64	MPEG-4 video of arbitrary shape can be read by any MPEG-4 video player
65	supporting shape decoding (OpenDivX doesn't currently).
66
67BUGS
68====
69
70        For bug list and bug submittal instructions, see file "BUGS".
71