summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* In the current implementation of rtp_parse_packet(), finalize_packet() isRonald S. Bultje2009-03-03
| | | | | | | | | 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
* Start Changelog for next version.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Add some empty lines for readability.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce allocated length of the HTTP authentication request field buffer, asRonald S. Bultje2009-03-03
| | | | | | | | | | | | | 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
* Cosmetics: TypoPanagiotis Issaris2009-03-03
| | | | Originally committed as revision 17760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use sign_extend().Benoit Fouet2009-03-03
| | | | | | On behalf of Jai. Originally committed as revision 17759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add my GPG fingerprintPanagiotis Issaris2009-03-03
| | | | Originally committed as revision 17758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: TypoPanagiotis Issaris2009-03-03
| | | | Originally committed as revision 17757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix indentation.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not add -D_FILE_OFFSET_BITS=64 and -D_LARGEFILE_SOURCE unconditionally toDiego Biurrun2009-03-03
| | | | | | CFLAGS. Apparently there are some systems that do not like these definitions. Originally committed as revision 17755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove mpeg4aac dependency declaration, the decoder was removed.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: improve temp file creation and cleanupMåns Rullgård2009-03-03
| | | | Originally committed as revision 17752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Warn about invalid max blocksize and limit the minimum value.Justin Ruggles2009-03-03
| | | | Originally committed as revision 17751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H.264: Simplify decode_residual()Alex Converse2009-03-03
| | | | Originally committed as revision 17750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: remove a pointless commentJustin Ruggles2009-03-03
| | | | Originally committed as revision 17749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Remove unused variable, min_blocksize.Justin Ruggles2009-03-03
| | | | Originally committed as revision 17748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Return error when blocksize code of 0 is found. It is aJustin Ruggles2009-03-03
| | | | | | reserved value per the FLAC format documentation. Originally committed as revision 17747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable PB-frames decoding for H.263Kostya Shishkov2009-03-03
| | | | Originally committed as revision 17746 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add PB-frame decoding support for H.263/i263 (and enable it for i263)Kostya Shishkov2009-03-03
| | | | Originally committed as revision 17745 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacdec: Simplify reading of uncompressed samples by usingJustin Ruggles2009-03-03
| | | | | | get_sbits_long(). Originally committed as revision 17744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Avoid trying to read 33 bits. This occurs when the sourceJustin Ruggles2009-03-03
| | | | | | | 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
* flacdec: ALT_BITSTREAM_READER is no longer required.Justin Ruggles2009-03-03
| | | | Originally committed as revision 17742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: use get_sbits_long() where needed.Justin Ruggles2009-03-03
| | | | Originally committed as revision 17741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a get_sbits_long() function.Justin Ruggles2009-03-03
| | | | Originally committed as revision 17740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ALAC: use sign_extend() from mathops.hMåns Rullgård2009-03-03
| | | | Originally committed as revision 17739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sign_extend() function to mathops.hMåns Rullgård2009-03-03
| | | | Originally committed as revision 17738 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify show_bits_long and copy the GetBitsContext around only once instead ↵Reimar Döffinger2009-03-02
| | | | | | of twice. Originally committed as revision 17736 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flacdec: Use get/skip_bits_long() for more than 17-bits andJustin Ruggles2009-03-02
| | | | | | get/skip_bits() for 17-bits or less. Originally committed as revision 17735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out block decoding in ff_h263_decode_mb()Kostya Shishkov2009-03-02
| | | | Originally committed as revision 17734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Consider all packets in the parser, not just ones with timestamps,Michael Niedermayer2009-03-02
| | | | | | this should greatly simplify handling of packet pos. Originally committed as revision 17733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Favor container packets that end after the first byte of the accessMichael Niedermayer2009-03-02
| | | | | | | 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
* Call ff_fetch_timestamp() for mpeg1/2 when a picture start code is found insteadMichael Niedermayer2009-03-02
| | | | | | | | | | | | 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
* version.h should depend on config.mak.Diego Biurrun2009-03-02
| | | | | | | 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
* Add context to some av_log() calls.Benoit Fouet2009-03-02
| | | | Originally committed as revision 17729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge three conditions in a single 'if' instead of two.Benoit Fouet2009-03-02
| | | | Originally committed as revision 17728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention non-recursive Makefiles in the changelog.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17725 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: spelling/wording fixesDiego Biurrun2009-03-02
| | | | Originally committed as revision 17724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC-3 encoding is integer-onlyJustin Ruggles2009-03-02
| | | | Originally committed as revision 17723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert previous removal of PAM, PBM, PGM, PGMYUV and PPM from the list ofDiego Biurrun2009-03-02
| | | | | | supported image formats. Apparently decoding these formats is supported. Originally committed as revision 17722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reformat long_names so that "DPCM" comes first.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reformat long_names so that "ADPCM" comes first.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Reformat long_names so that "PCM" comes first.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17719 to svn://svn.ffmpeg.org/ffmpeg/trunk
* small spelling/grammar fixesDiego Biurrun2009-03-02
| | | | Originally committed as revision 17718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* xvmc works with MPEG-2 as well as MPEG-1, note this in the codec long_name.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change a bunch of codec long_names to be more consistent and descriptive.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17716 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decoding of PAM, PBM, PGM, PGMYUV and PPM image formats is not supported.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* figure out which muxers support which codecs? new api required!Ben Littler2009-03-02
| | | | Originally committed as revision 17714 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The Ogg muxer will handle Theora as wellRobert Swain2009-03-02
| | | | Originally committed as revision 17713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another round of missing codecs and name updates to match the codec long_name.Diego Biurrun2009-03-02
| | | | Originally committed as revision 17712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some more missing codecs and update names to match the codec long_name.Justin Ruggles2009-03-02
| | | | Originally committed as revision 17711 to svn://svn.ffmpeg.org/ffmpeg/trunk