summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Use sign_extend function instead of reimplementing it.Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a useless "& 0xF"Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use / and % operators instead of reimplementing them with a loop.Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change buffer check to avoid an unlikely pointer arithmetic overflow.Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify xan_huffman_decode by using get_bitsReimar Döffinger2009-04-17
| | | | Originally committed as revision 18595 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention, patch by Lars Täuber.Lars Täuber2009-04-17
| | | | Originally committed as revision 18594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify ipvideo_decode_opcodes by using get_bits, this might be slowerReimar Döffinger2009-04-17
| | | | | | but is not performance-critical anyway. Originally committed as revision 18593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused code_counts array from interplavideo.c.Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce codec id for MPEG-4 ALS and associate it with correspondingJai Menon2009-04-17
| | | | | | AudioObjectType. Also bump libavcodec minor version. Originally committed as revision 18591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics to improve xan_unpack readabilityReimar Döffinger2009-04-17
| | | | Originally committed as revision 18590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix buffer size check for xan_unpack which was broken by r18586Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some more simplifications of xan_unpackReimar Döffinger2009-04-17
| | | | Originally committed as revision 18588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent xan_unpack codeReimar Döffinger2009-04-17
| | | | Originally committed as revision 18587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid some code duplication in xan_unpackReimar Döffinger2009-04-17
| | | | Originally committed as revision 18586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless assignments, at least one found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase buffer padding to avoid most space checks in xan_unpackReimar Döffinger2009-04-17
| | | | Originally committed as revision 18584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless init from ff_mpeg4_set_direct_mv() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a useless assignment in img_get_alpha_info() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant assignment in av_picture_copy() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless init from aiff_read_header() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove several useless writes to variables, found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless += from ff_imdct_half_c() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 2 ++ from check_pes() that are useless, found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change buffer size checks to avoid the very unlikely overflow case.Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from h261_encode_block() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a pointless right-shift in xan decoder.Reimar Döffinger2009-04-17
| | | | Originally committed as revision 18574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 2 useless assignments from ff_rate_control_init() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace bytecopy with the equivalent but faster av_memcpy_backptr.Reimar Döffinger2009-04-17
| | | | | | Ca. 10% faster xan_unpack on x86_64 decoding of SC_32-part.MVE Originally committed as revision 18572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from flv_read_metabody() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from slice_buffer_release() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use memcpy instead of the very inefficient bytecopy where both are correctReimar Döffinger2009-04-17
| | | | | | (i.e. no overlap of src and dst is possible). Originally committed as revision 18569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from wma_decode_block() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded assignment from av_encode() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from print_report() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove nonsensical assignment from asf_read_seek() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant assignment from avcodec_get_pix_fmt_loss() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable in modify_qscale() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded assignment in ffmpeg.c found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variables from slice_buffer_load_line() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 2 unneeded variables from common_init() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove 2 unused variables from MPV_decode_mb_internal() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused assignment from j_rev_dct() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable in init_mv_penalty_and_fcode() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declarations in sync() closer to where they are used.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from asf_read_header() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2009-04-17
| | | | Originally committed as revision 18554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new static VLC scheme in Indeo2, Musepack and WNV1 decodersKostya Shishkov2009-04-17
| | | | Originally committed as revision 18553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change another AVERROR(EIO) inot AVERROR_EOF, because it really signals EOF,Ronald S. Bultje2009-04-17
| | | | | | | | | not a stream error. This also fixes an infinite loop on EOS during ASF file playback, and Michael claims he "likes the patch" (ref: [PATCH] RTSP-MS 15/15: move packet_time_start zero value assignment in asf.c" mailinglist tread). Originally committed as revision 18552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remvoe useless assignment found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from decode_init() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18550 to svn://svn.ffmpeg.org/ffmpeg/trunk