summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* mpegvideo.h has two function declarations with the 'inline' specifierUoti Urpala2008-02-03
| | | | | | | | | | | but no definition for those functions. The C standard requires a definition to appear in the same translation unit for any function declared with 'inline'. Most of the files including mpegvideo.h do not define those functions. Fix this by removing the 'inline' specifiers from the header. patch by Uoti Urpala Originally committed as revision 11830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avg_pixels4_mmx2Loren Merritt2008-02-03
| | | | Originally committed as revision 11829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use mmx2/3dnow avg functions in avg_qpel*_mc00Loren Merritt2008-02-03
| | | | Originally committed as revision 11828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove ff_mms_set_stream_selection again from asf demuxer,Reimar Döffinger2008-02-03
| | | | | | | it does not seem like a good solution to the problem and will cause dependency problems if a libavprotocols should be split out. Originally committed as revision 11827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_h264_idct8_add_sse2.Loren Merritt2008-02-03
| | | | | | compared to mmx, 217->126 cycles on core2, 262->220 on k8. Originally committed as revision 11826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove some movq in ff_h264_idct8_add_mmx. 225->217 cycles on core2.Loren Merritt2008-02-03
| | | | Originally committed as revision 11825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect casts that should have never been there.Michael Niedermayer2008-02-02
| | | | Originally committed as revision 11824 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avcodec_decode_* functions take const input buffers.Michael Niedermayer2008-02-02
| | | | Originally committed as revision 11823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, since we already check for buf_size == 769 we should alsoReimar Döffinger2008-02-02
| | | | | | handle buf_size < 769 instead of just crashing in smacker decoder. Originally committed as revision 11822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use bytestream_get_be24 to simplify palette parsing.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mark qtrle input data as const.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a pointless cast.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some const where appropriateReimar Döffinger2008-02-02
| | | | Originally committed as revision 11818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix warning:Reimar Döffinger2008-02-02
| | | | | | libavcodec/tiffenc.c:136: warning: pointer type mismatch in conditional expression Originally committed as revision 11817 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-02
| | | | Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Put is_mms under ifdef CONFIG_MMSH_PROTOCOL, avoids warning:Reimar Döffinger2008-02-02
| | | | | | libavformat/asf.c:112: warning: 'is_mms' defined but not used Originally committed as revision 11815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missing 'const' in cast.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make src const.Michael Niedermayer2008-02-02
| | | | Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* void arithmeticMichael Niedermayer2008-02-02
| | | | Originally committed as revision 11812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove -Werror= CFLAGS that do not have the desired effect.Diego Biurrun2008-02-02
| | | | Originally committed as revision 11811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: sort ogg_codec_t listDiego Biurrun2008-02-02
| | | | Originally committed as revision 11810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some consts for cscd decoder helper functionsReimar Döffinger2008-02-02
| | | | Originally committed as revision 11809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "swap first two elements of L1 if L0 and L1 are identical" applies after ↵Loren Merritt2008-02-02
| | | | | | splitting the lists into fields Originally committed as revision 11808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mbaff diagonal neighbor mvLoren Merritt2008-02-02
| | | | Originally committed as revision 11807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mbaff spatial directLoren Merritt2008-02-02
| | | | Originally committed as revision 11806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not modify input dataKostya Shishkov2008-02-02
| | | | Originally committed as revision 11805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IMC decoder always operates on 64-byte blocksKostya Shishkov2008-02-02
| | | | Originally committed as revision 11804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-const 2nd parameter for strtol/strtodAurelien Jacobs2008-02-02
| | | | Originally committed as revision 11803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use AV_RL* instead of le2me_*Aurelien Jacobs2008-02-01
| | | | Originally committed as revision 11802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* don't cast const awayAurelien Jacobs2008-02-01
| | | | Originally committed as revision 11801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constAurelien Jacobs2008-02-01
| | | | Originally committed as revision 11800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constAurelien Jacobs2008-02-01
| | | | Originally committed as revision 11799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mixing declarations and statements is an error, so is any constructMichael Niedermayer2008-02-01
| | | | | | depending on sizeof(void) (like void_ptr++) Originally committed as revision 11798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LZO decoder input is constReimar Döffinger2008-02-01
| | | | Originally committed as revision 11797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add some const keywords in rtjpeg decoderReimar Döffinger2008-02-01
| | | | Originally committed as revision 11792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* some constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11781 to svn://svn.ffmpeg.org/ffmpeg/trunk