Gwenole Beauchesne
0d8ee24c7b
Set PixFmtInfo::{x, y}_chroma_shift for VDPAU and VAAPI formats.
...
Originally committed as revision 17766 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ronald S. Bultje
95f03cf31f
Reindent after r17764.
...
Originally committed as revision 17765 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ronald S. Bultje
f3e71942e7
In the current implementation of rtp_parse_packet(), finalize_packet() is
...
called for all packets with an internal handler function but only for
non-first packets from dynamic payload parse_packet() handlers. This patch
fixes that. Bug was noticed by Luca in "[PATCH] rtpdec.c: don't overwrite
pkt->stream_index in finalize_packet()" thread.
Originally committed as revision 17764 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
2db272e93e
Start Changelog for next version.
...
Originally committed as revision 17763 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
0ca3e336a1
cosmetics: Add some empty lines for readability.
...
Originally committed as revision 17762 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Ronald S. Bultje
d176f90387
Reduce allocated length of the HTTP authentication request field buffer, as
...
noticed by Stefano and Luca in the "[PATCH]RTSP Basic Authentication"
mailinglist thread.
av_base64_encode() was recently changed. The previous implementation required
12 extra bytes (ceil(len(src)/3.)*4+12), whereas the new one is guaranteed to
fit in an exact buffer (ceil(len(src)/3.)*4), plus one extra byte for the
trailing zero. This change fixes no bug, it just slightly decreases the
amount of allocated memory.
Originally committed as revision 17761 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Panagiotis Issaris
429d6b2180
Cosmetics: Typo
...
Originally committed as revision 17760 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Benoit Fouet
4f46099b90
Use sign_extend().
...
On behalf of Jai.
Originally committed as revision 17759 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Panagiotis Issaris
c7509fff57
Add my GPG fingerprint
...
Originally committed as revision 17758 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Panagiotis Issaris
9549cdcbaa
Cosmetics: Typo
...
Originally committed as revision 17757 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
Diego Biurrun
c04920978e
cosmetics: Fix indentation.
...
Originally committed as revision 17756 to svn://svn.ffmpeg.org/ffmpeg/trunk
16 years ago
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