Diego Biurrun
9d821fc2d2
Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally to
...
CFLAGS. Apparently there are some systems that do not like these definitions.
Originally committed as revision 17755 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
892438a3d1
Remove mpeg4aac dependency declaration, the decoder was removed.
...
Originally committed as revision 17753 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
54460a8347
configure: improve temp file creation and cleanup
...
Originally committed as revision 17752 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
2e78513cee
flacdec: Warn about invalid max blocksize and limit the minimum value.
...
Originally committed as revision 17751 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Alex Converse
09a64ee614
H.264: Simplify decode_residual()
...
Originally committed as revision 17750 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
0c89ca72a5
cosmetics: remove a pointless comment
...
Originally committed as revision 17749 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
95db6659d8
flacdec: Remove unused variable, min_blocksize.
...
Originally committed as revision 17748 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
dde318d5d9
flacdec: Return error when blocksize code of 0 is found. It is a
...
reserved value per the FLAC format documentation.
Originally committed as revision 17747 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
c978997a88
Enable PB-frames decoding for H.263
...
Originally committed as revision 17746 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
685502cf3d
Add PB-frame decoding support for H.263/i263 (and enable it for i263)
...
Originally committed as revision 17745 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
6053da0182
alacdec: Simplify reading of uncompressed samples by using
...
get_sbits_long().
Originally committed as revision 17744 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
5b37e2fc9a
flacdec: Avoid trying to read 33 bits. This occurs when the source
...
is 32 bits-per-sample and channel decorrelation is used. Such files
are valid, but not supported currently.
Originally committed as revision 17743 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
505cc62f75
flacdec: ALT_BITSTREAM_READER is no longer required.
...
Originally committed as revision 17742 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
9de6e090a7
flacdec: use get_sbits_long() where needed.
...
Originally committed as revision 17741 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
017c0811a1
Add a get_sbits_long() function.
...
Originally committed as revision 17740 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
8858990f07
ALAC: use sign_extend() from mathops.h
...
Originally committed as revision 17739 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Måns Rullgård
101dfa7d0a
Add sign_extend() function to mathops.h
...
Originally committed as revision 17738 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Reimar Döffinger
edd532db64
Simplify show_bits_long and copy the GetBitsContext around only once instead of twice.
...
Originally committed as revision 17736 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
ee4d0322e8
flacdec: Use get/skip_bits_long() for more than 17-bits and
...
get/skip_bits() for 17-bits or less.
Originally committed as revision 17735 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Kostya Shishkov
b89e77cff7
Factor out block decoding in ff_h263_decode_mb()
...
Originally committed as revision 17734 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Michael Niedermayer
7115cbda30
Consider all packets in the parser, not just ones with timestamps,
...
this should greatly simplify handling of packet pos.
Originally committed as revision 17733 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Michael Niedermayer
2cc304215d
Favor container packets that end after the first byte of the access
...
unit in fetch_timestamp(). This should make no difference for valid
streams but may help invalid ones, also its needed for future changes.
Originally committed as revision 17732 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Michael Niedermayer
a4c7a5ea27
Call ff_fetch_timestamp() for mpeg1/2 when a picture start code is found instead
...
of calling it at the end of a frame with a large negative offset.
This significantly reduces the maximal distance in container packets between
the point where the first byte of the "access unit" was stored and where
we call ff_fetch_timestamp() thus reducing the constraints on our parser.
Also change the parser from next_frame_offset to cur, this is needed
because now the reference is from container packet start instead of
frame start. (i previously misinterpreted this as bug)
Originally committed as revision 17731 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
873b092353
version.h should depend on config.mak.
...
The extra version string that is passed to configure is recorded in config.mak
and changes to config.mak can therefore make version.h rebuilds necessary.
Originally committed as revision 17730 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Benoit Fouet
2fddbb68b6
Add context to some av_log() calls.
...
Originally committed as revision 17729 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Benoit Fouet
d69da18cb0
Merge three conditions in a single 'if' instead of two.
...
Originally committed as revision 17728 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
b00b15be03
Mention non-recursive Makefiles in the changelog.
...
Originally committed as revision 17725 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
58cf42faca
cosmetics: spelling/wording fixes
...
Originally committed as revision 17724 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
c76d1bb29f
AC-3 encoding is integer-only
...
Originally committed as revision 17723 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
ddea12a6b5
Revert previous removal of PAM, PBM, PGM, PGMYUV and PPM from the list of
...
supported image formats. Apparently decoding these formats is supported.
Originally committed as revision 17722 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
12dd57fd29
cosmetics: Reformat long_names so that "DPCM" comes first.
...
Originally committed as revision 17721 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
fd75cedd15
cosmetics: Reformat long_names so that "ADPCM" comes first.
...
Originally committed as revision 17720 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
655463b9eb
cosmetics: Reformat long_names so that "PCM" comes first.
...
Originally committed as revision 17719 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
7eb2d654a2
small spelling/grammar fixes
...
Originally committed as revision 17718 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
326b554ccf
xvmc works with MPEG-2 as well as MPEG-1, note this in the codec long_name.
...
Originally committed as revision 17717 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
0ffbc258aa
Change a bunch of codec long_names to be more consistent and descriptive.
...
Originally committed as revision 17716 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
421ae271da
Decoding of PAM, PBM, PGM, PGMYUV and PPM image formats is not supported.
...
Originally committed as revision 17715 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ben Littler
56dc1fdf94
figure out which muxers support which codecs? new api required!
...
Originally committed as revision 17714 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Robert Swain
dbf9ddec33
The Ogg muxer will handle Theora as well
...
Originally committed as revision 17713 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
641992de59
Another round of missing codecs and name updates to match the codec long_name.
...
Originally committed as revision 17712 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
a1c5b6ece7
Add some more missing codecs and update names to match the codec long_name.
...
Originally committed as revision 17711 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
dd2d651d82
Add some more missing codecs and update names to match the codec long_name.
...
Originally committed as revision 17710 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
4d973c6859
Merge MP2, MP3 and MPEG audio demuxer entries.
...
Originally committed as revision 17709 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ben Littler
d70fe5a349
vorbis and flac ogg muxer only
...
Originally committed as revision 17708 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ben Littler
f58c7139d6
ogg muxer is vorbis only
...
Originally committed as revision 17707 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
68dddf53ff
Add some missing codecs and update names to match the codec long_name
...
or vice-versa.
Originally committed as revision 17706 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
9510f59a0f
Add some missing codecs and update names to match the codec long_name.
...
Originally committed as revision 17705 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Justin Ruggles
eacf8613b3
add some missing codecs and update some names to match AVCodec.long_name
...
Originally committed as revision 17704 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
270fc177cf
Integer-only decoding of AC-3 is not supported.
...
Originally committed as revision 17703 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
21d4af5d4d
Targa encoding is supported.
...
Originally committed as revision 17702 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago