summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Declare ff_interleave_new_audio_packet as static, it is not usedBaptiste Coudurier2009-02-08
| | | | | | | outside of audiointerleave.c. Also remove the function declaration from the header as it is now static. Originally committed as revision 17068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: consistently prefer "size" over "len"/"length" for theStefano Sabatini2009-02-08
| | | | | | variable names. Originally committed as revision 17067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* document ff_audio_interleaveBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17066 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_base64_encode() do not require the user to provide anStefano Sabatini2009-02-08
| | | | | | | | | overallocated buffer where to put the encoded string. See the thread: "[PATCH] Improve documentation for libavutil/base64.h". Originally committed as revision 17065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace hard-coded SEI type constants with symbolic namesIvan Schreter2009-02-08
| | | | | | Patch by Ivan Schreter ( schreter gmx net ) Originally committed as revision 17064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify has_b_frames doxy.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* NC camera demuxerNicolas Martin2009-02-08
| | | | | | Patch by Nicolas Martin - elvadrias at gmail Originally committed as revision 17062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify that avformat_seek_file() is not part of the stable API yet.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avformat_seek_file() prototypeMichael Niedermayer2009-02-08
| | | | Originally committed as revision 17060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_add_hfyu_median_prediction_mmx2Loren Merritt2009-02-08
| | | | | | overall ffvhuff decoding speedup: 28% on core2, 25% on k8. Originally committed as revision 17059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* re-enable mid_pred asm on x86_64. (broke in r16681)Loren Merritt2009-02-08
| | | | Originally committed as revision 17058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix reserved identifer detection so it doesnt detect __asm and such.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize grep -v cases.Michael Niedermayer2009-02-08
| | | | Originally committed as revision 17056 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Patch check script.Michael Niedermayer2009-02-08
| | | | | | | Note, before you flame me that its dirty, i did post it to ffmpeg-dev and asked for a review and threatened to commit. Originally committed as revision 17055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sample_to_chunk -> stscBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sample_to_ctime -> cttsBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless fieldBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rewrite pts also, as comment saysBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless returnBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix doxygenBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17049 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace the calls to the deprecated av_alloc_format_context() withStefano Sabatini2009-02-08
| | | | | | corresponding calls to avformat_alloc_context(). Originally committed as revision 17048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_malloc_format_context() in favor ofStefano Sabatini2009-02-08
| | | | | | | avformat_alloc_context(), and drop the old symbol at the next major bump. Originally committed as revision 17047 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix typo in h264dsp_mmx (no effect currently as the function is not used), ↵Baptiste Coudurier2009-02-08
| | | | | | approved by Dark Shikari on IRC Originally committed as revision 17046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 'const' qualifier from variable in av_parse_video_frame_size().Baptiste Coudurier2009-02-08
| | | | | | Thus only one warning is printed due to assignment instead of 2 from strtol. Originally committed as revision 17045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless cast, it does not remove warning, encode prototype must be ↵Baptiste Coudurier2009-02-08
| | | | | | changed Originally committed as revision 17044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove warning about incompatible pointerBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reuse MXFCodecUL for data def and simplifyBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove implicit header inclusions from mxf.hBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free index entriesBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new audio interleaving generic codeBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extract audio interleaving code from mxf muxer, will be used by gxf and dvBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* offset dts according to edit list, hackish but works, based on patch by ReimarBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove const qualifier from function argument to eliminate the warningDiego Biurrun2009-02-08
| | | | | | swfenc.c:452: warning: passing argument 2 of #av_fifo_generic_write# discards qualifiers from pointer target type Originally committed as revision 17036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only use 2 slices for index, one video(vbr) and one audio(cbr)Baptiste Coudurier2009-02-08
| | | | Originally committed as revision 17035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* force first track to be video and simplifyBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write system itemBaptiste Coudurier2009-02-08
| | | | Originally committed as revision 17033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* declare ff_interleave_add_packetBaptiste Coudurier2009-02-07
| | | | Originally committed as revision 17032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move RV3/4 frame type check up so 1-slice unanchored B-frames are checked, too.Kostya Shishkov2009-02-07
| | | | Originally committed as revision 17031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decoder flush after seeking for RV3/4 decodersKostya Shishkov2009-02-07
| | | | Originally committed as revision 17030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use 512 kag size needed for d10Baptiste Coudurier2009-02-07
| | | | Originally committed as revision 17029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop the deprecated function register_avcodec() at the next majorStefano Sabatini2009-02-06
| | | | | | version bump. Originally committed as revision 17028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace the calls to the deprecated function register_avcodec() withStefano Sabatini2009-02-06
| | | | | | corresponding calls to avcodec_register(). Originally committed as revision 17027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename register_avcodec() as avcodec_register() and deprecate the oldStefano Sabatini2009-02-06
| | | | | | function name. Originally committed as revision 17026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new test program for base64, based on that removed in r17024.Stefano Sabatini2009-02-06
| | | | | | | See the thread: "[PATCH] remove unused and broken test program in libavutil/base64.c". Originally committed as revision 17025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove broken test program.Stefano Sabatini2009-02-06
| | | | Originally committed as revision 17024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move RTP_MAX_PACKET_LENGTH to rtpdec.h: it is not used in the muxer anymoreLuca Abeni2009-02-06
| | | | Originally committed as revision 17023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use RTP_MAX_PACKET_LENGTH in the RTP muxerLuca Abeni2009-02-06
| | | | Originally committed as revision 17022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix minor memory leak.Jindřich Makovička2009-02-06
| | | | | | Patch by Jindrich Makovicka, approved by mans. Originally committed as revision 17021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge rtp_aac.h and rtp_mpv.h in rtpenc.hLuca Abeni2009-02-06
| | | | Originally committed as revision 17020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix list of input pix_fmts supported by GIF. This makes it work with swscale.Michael Niedermayer2009-02-06
| | | | | | | It also allows encoding GIF with a 4-bit palette and with a graycale one as a side effect. Originally committed as revision 17019 to svn://svn.ffmpeg.org/ffmpeg/trunk