aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Expand)AuthorAgeFilesLines
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-034-22/+62
|\
| * mpc8: check output buffer size before decodingJustin Ruggles2011-10-021-2/+8
| * mpc7: return error if packet is too small.Justin Ruggles2011-10-021-0/+1
| * mpc7: check output buffer size before decodingJustin Ruggles2011-10-021-2/+8
| * nellymoserdec: allocate float_buf only when decoding to int16Justin Ruggles2011-10-021-1/+7
| * nellymoserdec: use NELLY_BUF_LEN instead of 128Justin Ruggles2011-10-021-1/+1
| * nellymoserdec: use NELLY_BLOCK_LEN instead of 64 when appropriate.Justin Ruggles2011-10-021-2/+2
| * nellymoserdec: allow user to request SAMPLE_FMT_FLT for output samples.Justin Ruggles2011-10-021-7/+22
| * nellymoser: check output buffer size before decodingJustin Ruggles2011-10-021-5/+12
| * win32: improve threading algorithm warningLuca Barbato2011-10-021-2/+4
* | h264: fix intra 16x16 mode check when using mbaff and constrained_intra_pred.Laurent Aimar2011-10-025-13/+32
* | libvpxenc: cosmetics to make code more similar to lucas.Michael Niedermayer2011-10-021-31/+27
* | h264: check for invalid bit depth value.Laurent Aimar2011-10-021-0/+5
* | h264: add entries for 11 and 12 bits in ff_h264_chroma_qp[][]Laurent Aimar2011-10-022-3/+16
* | h264: fix the check for invalid SPS:num_ref_frames.Laurent Aimar2011-10-021-1/+1
* | h264: do not let invalid values in h->ref_count on ff_h264_decode_ref_pic_lis...Laurent Aimar2011-10-021-1/+3
* | Reject video with non multiple of 16 width/height in the 4xm decoder.Laurent Aimar2011-10-021-0/+4
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-022-37/+55
|\|
| * lavc: add video/audio/encoding flags to global_quality optionAnton Khirnov2011-10-011-1/+1
| * libvpxenc: use libvpx's own defaults for some parametersLuca Barbato2011-10-011-5/+16
| * vpxenc: add private optionsLuca Barbato2011-10-011-3/+60
* | 4xm decoder: fix data size for i2 frames.Michael Niedermayer2011-10-021-1/+1
* | 4xm decoder: print some error messages in case of errors.Michael Niedermayer2011-10-021-9/+27
* | Check for out of bound accesses in the 4xm decoder.Laurent Aimar2011-10-021-13/+46
* | Prevent block size from inreasing in the shorten decoder.Laurent Aimar2011-10-021-2/+8
* | Check for out of bound reads in PTX decoder.Laurent Aimar2011-10-021-0/+8
* | Fix the check for missing references in ff_er_frame_end() for H264.Laurent Aimar2011-10-021-1/+1
* | Clear FF_INPUT_BUFFER_PADDING_SIZE bytes at the end of the temporary buffers ...Laurent Aimar2011-10-021-0/+2
* | Prevent NULL dereference when the huffman table is invalid in the 4xm decoder.Laurent Aimar2011-10-021-3/+4
* | h264: increase ref_poc size to 32 as it can be per field.Michael Niedermayer2011-10-021-1/+1
* | h264: set unused ref_counts to 0 as a precautionary meassure.Michael Niedermayer2011-10-021-1/+1
* | ff_dot_product(): change return value to int64_tMichael Niedermayer2011-10-012-2/+2
* | g729dec: initialize bit reader with the correct buffer sizeVitor Sessak2011-10-011-1/+1
* | g723.1_data: remove unneeded LMichael Niedermayer2011-10-011-1/+1
* | h264: try reading SPS with wrong escaping, it sometimes works betterMichael Niedermayer2011-10-012-2/+9
* | g729dec: prevent out of array accessMichael Niedermayer2011-10-011-1/+1
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-0110-296/+354
|\|
| * dpcm: return error if packet is too smallJustin Ruggles2011-09-301-1/+4
| * dpcm: use smaller data types for static tablesJustin Ruggles2011-09-301-5/+5
| * dpcm: use sol_table_16 directly instead of through the DPCMContext.Justin Ruggles2011-09-301-3/+2
| * dpcm: replace short with int16_tJustin Ruggles2011-09-301-4/+3
| * dpcm: check to make sure channels is 1 or 2.Justin Ruggles2011-09-301-0/+5
| * dpcm: misc pretty-printingJustin Ruggles2011-09-301-20/+20
| * dpcm: remove unnecessary variable by using bytestream functions.Justin Ruggles2011-09-301-38/+28
| * dpcm: move codec-specific variable declarations to their corresponding decodi...Justin Ruggles2011-09-301-4/+4
| * dpcm: consistently use the variable name 'n' for the next input byte.Justin Ruggles2011-09-301-7/+5
| * dpcm: output AV_SAMPLE_FMT_U8 for Sol DPCM subcodecs 1 and 2.Justin Ruggles2011-09-301-13/+16
| * dpcm: calculate and check actual output data size prior to decoding.Justin Ruggles2011-09-301-16/+34
| * dpcm: factor out the stereo flag calculationJustin Ruggles2011-09-301-14/+15
| * dpcm: cosmetics: rename channel_number to chJustin Ruggles2011-09-301-23/+23