FFmpeg git repo
Go to file
Ronald S. Bultje f989d39752 Remove size_t cast in setting s->priv_data directly to the (integer) file
descriptor returned by open(). This removes some dubious doublecasts such
as priv_data = (void *) (size_t) some_integer, and is always safe on systems
we care about because sizeof(int)<=sizeof(void*). See comments from Mans and
Michael in "[RFC] rtsp.c EOF support" thread.

Originally committed as revision 17768 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-03 13:57:09 +00:00
doc Cosmetics: Typo 2009-03-03 13:25:53 +00:00
ffpresets
libavcodec Set PixFmtInfo::{x, y}_chroma_shift for VDPAU and VAAPI formats. 2009-03-03 13:43:24 +00:00
libavdevice
libavfilter Rename avfilter_parse_graph() to avfilter_graph_parse(), for better 2009-02-26 22:03:55 +00:00
libavformat Remove size_t cast in setting s->priv_data directly to the (integer) file 2009-03-03 13:57:09 +00:00
libavutil Add VA API pixel formats. 2009-02-27 08:12:41 +00:00
libpostproc
libswscale Fix typo in comments. 2009-03-01 11:43:56 +00:00
tests Change the timebase of the raw demuxer to one that can represent the ts of fields. 2009-03-01 03:48:35 +00:00
tools Detect static prototypes. 2009-02-27 21:11:49 +00:00
vhook
COPYING.GPL
COPYING.LGPL
CREDITS
Changelog Start Changelog for next version. 2009-03-03 13:38:40 +00:00
Doxyfile
INSTALL
MAINTAINERS Add my GPG fingerprint 2009-03-03 13:01:38 +00:00
Makefile
README
cmdutils.c
cmdutils.h
common.mak Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally to 2009-03-03 12:52:12 +00:00
configure Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally to 2009-03-03 12:52:12 +00:00
ffmpeg.c fix last usage of old metadata API in ffmpeg.c (handling of AVStream language) 2009-03-01 15:58:57 +00:00
ffplay.c Document ffplay -ast, -vst, and -sst options. 2009-03-01 17:13:33 +00:00
ffserver.c convert ffserver to new metadata API 2009-03-01 14:56:27 +00:00
ffserver.h
output_example.c
subdir.mak
version.sh

README

FFmpeg README
-------------

1) Documentation
----------------

* Read the documentation in the doc/ directory.

2) Licensing
------------

* Read the file COPYING.LGPL. FFmpeg and the associated libraries EXCEPT
  for libpostproc are licensed under the GNU Lesser General Public License.

* libpostproc is distributed under the GNU General Public License, see the
  file COPYING.GPL for details. Its compilation and use in FFmpeg is optional.

* libswscale contains some optional processor-specific optimizations that are
  distributed under the GNU General Public License.

* The files libavcodec/x86/idct_mmx.c, libavcodec/x86/h264_deblock_sse2.asm
  and libavcodec/x86/h264_idct_sse2.asm are distributed under the GNU General
  Public License. They are strictly optimizations and their use is optional.

* The file libavcodec/ac3dec.c is distributed under the GNU General Public
  License.  In order for (E-)AC-3 decoding to work you need to enable GPL
  components.

* The file libavdevice/x11grab.c is distributed under the GNU General
  Public License. X11 grabbing is optional.

* The files libavcodec/jfdctfst.c, libavcodec/jfdctint.c, libavcodec/jrevdct.c
  are taken from libjpeg, see the top of the files for licensing details.

* The file libavcodec/fdctref.c is copyrighted by the MPEG Software Simulation
  Group with all rights reserved. It is only used to create a DCT test program
  and not compiled into libavcodec.

* Some external libraries are under GPL. If you wish to use them with FFmpeg,
  you have to configure FFmpeg as GPL as well.