|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| debian/ | H | 07-May-2022 | - | 194 | 124 |
| doc/ | H | 11-Feb-2004 | - | 955 | 827 |
| src/ | H | 03-May-2022 | - | 25,161 | 19,058 |
| AUTHORS | H A D | 10-Feb-2002 | 434 | 17 | 15 |
| BUGS | H A D | 30-Oct-2001 | 315 | 15 | 9 |
| CHANGES | H A D | 20-Jun-2003 | 2.2 KiB | 67 | 66 |
| COPYING | H A D | 22-Jun-2001 | 24.7 KiB | 482 | 399 |
| INSTALL | H A D | 22-Jun-2001 | 173 | 10 | 7 |
| Makefile.am | H A D | 05-Jan-2003 | 764 | 39 | 23 |
| Makefile.in | H A D | 11-Feb-2004 | 18.9 KiB | 614 | 519 |
| README | H A D | 11-Feb-2004 | 2 KiB | 71 | 50 |
| TODO | H A D | 25-May-2002 | 478 | 26 | 19 |
| acinclude.m4 | H A D | 22-Jun-2001 | 15.2 KiB | 454 | 421 |
| aclocal.m4 | H A D | 11-Feb-2004 | 44.3 KiB | 1,268 | 1,109 |
| autogen.sh | H A D | 22-Jun-2001 | 93 | 8 | 4 |
| config.guess | H A D | 16-Jul-2001 | 30.5 KiB | 1,122 | 988 |
| config.sub | H A D | 16-Jul-2001 | 24 KiB | 1,233 | 1,120 |
| configure | H A D | 03-May-2022 | 178.2 KiB | 6,059 | 4,997 |
| configure.in | H A D | 11-Feb-2004 | 5.6 KiB | 232 | 207 |
| depcomp | H A D | 17-Oct-2001 | 11.8 KiB | 412 | 275 |
| install-sh | H A D | 22-Jun-2001 | 5.5 KiB | 252 | 153 |
| libfame-config | H A D | 11-Feb-2004 | 1.1 KiB | 62 | 55 |
| libfame-config.in | H A D | 22-Jun-2001 | 1.1 KiB | 62 | 55 |
| libfame.m4 | H A D | 03-May-2022 | 8.4 KiB | 182 | 174 |
| libfame.m4.in | H A D | 03-May-2022 | 8.4 KiB | 182 | 174 |
| libfame.spec | H A D | 11-Feb-2004 | 1.5 KiB | 82 | 62 |
| libfame.spec.in | H A D | 28-Aug-2001 | 1.5 KiB | 82 | 64 |
| ltconfig | H A D | 16-Jul-2001 | 92 KiB | 3,018 | 2,323 |
| ltmain.sh | H A D | 16-Jul-2001 | 106.8 KiB | 3,976 | 2,977 |
| missing | H A D | 22-Jun-2001 | 6.1 KiB | 191 | 154 |
| mkinstalldirs | H A D | 22-Jun-2001 | 732 | 41 | 23 |
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