aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | alacenc: do not set bits_per_coded_sampleJustin Ruggles2012-02-111-5/+4
| | | | | | | | | | | | encoded ALAC does not have a fixed number of bits per sample
| * | alacenc: remove unneeded frame_size check in alac_encode_frame()Justin Ruggles2012-02-111-5/+0
| | |
| * | tta: error out if samplerate is zero.Ronald S. Bultje2012-02-111-0/+3
| | | | | | | | | | | | | | | | | | | | | Prevents a division by zero later on. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
| * | ttadec: fix invalid free when an error occurs while decoding 24-bit ttaJustin Ruggles2012-02-101-6/+17
| | |
| * | wavpack: add needed braces for 2 statements inside an if blockJustin Ruggles2012-02-101-1/+2
| | |
* | | Reduce the verbosity of a mpeg1/2 invalid intra-matrix warning.Carl Eugen Hoyos2012-02-121-1/+1
| | | | | | | | | | | | Fixes ticket #973.
* | | ffmpeg: fix passlogfile with multiple libx264 streams.Michael Niedermayer2012-02-121-1/+1
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | tta: reindentPaul B Mahol2012-02-111-23/+23
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Modified to generate PAT/PMT for video keyframesPavel Koshevoy2012-02-113-11/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is so that TS fragments produced by http://code.google.com/p/httpsegmenter/ would be compatible with JW Player. A new member variable prev_payload_key was added to MpegTSWriteStream to help detect transition from non-key to key frame, so that PAT/PMT would not be produced for every keyframe in intra-only videos. Signed-off-by: Pavel Koshevoy <pkoshevoy@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | lagarith: Fix out of array reads.Michael Niedermayer2012-02-111-4/+5
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | ffv1: Assume encoding all bits is wanted if bits_per_raw_sample == 0.Carl Eugen Hoyos2012-02-111-8/+18
| | |
* | | Cosmetics: Move a block in ffv1's encode_init().Carl Eugen Hoyos2012-02-111-38/+38
| | | | | | | | | | | | Makes the next patch smaller.
* | | ansi: Fix use of uninitalized width/height warning.Michael Niedermayer2012-02-111-0/+2
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | tta: Add some safety precautions to avoid freeing things that have not been ↵Michael Niedermayer2012-02-111-2/+5
| | | | | | | | | | | | | | | | | | allocated. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | tta: do not leak memory if bps == 3Paul B Mahol2012-02-111-3/+5
| | | | | | | | | | | | | | | | | | | | | In bps == 3 case output is decoded directly. Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | buildsys: Fix shared lib build of MPlayer.Ingo Brückl2012-02-111-0/+3
| | | | | | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-02-1130-935/+1187
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: (38 commits) v210enc: remove redundant check for pix_fmt wavpack: allow user to disable CRC checking v210enc: Use Bytestream2 functions cafdec: Check return value of avio_seek and avoid modifying state if it fails yop: Check return value of avio_seek and avoid modifying state if it fails tta: Check return value of avio_seek and avoid modifying state if it fails tmv: Check return value of avio_seek and avoid modifying state if it fails r3d: Check return value of avio_seek and avoid modifying state if it fails nsvdec: Check return value of avio_seek and avoid modifying state if it fails mpc8: Check return value of avio_seek and avoid modifying state if it fails jvdec: Check return value of avio_seek and avoid modifying state if it fails filmstripdec: Check return value of avio_seek and avoid modifying state if it fails ffmdec: Check return value of avio_seek and avoid modifying state if it fails dv: Check return value of avio_seek and avoid modifying state if it fails bink: Check return value of avio_seek and avoid modifying state if it fails Check AVCodec.pix_fmts in avcodec_open2() svq3: Prevent illegal reads while parsing extradata. remove ParseContext1 vc1: use ff_parse_close mpegvideo parser: move specific fields into private context ... Conflicts: libavcodec/4xm.c libavcodec/aacdec.c libavcodec/h264.c libavcodec/h264.h libavcodec/h264_cabac.c libavcodec/h264_cavlc.c libavcodec/mpeg4video_parser.c libavcodec/svq3.c libavcodec/v210enc.c libavformat/cafdec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * | v210enc: remove redundant check for pix_fmtPaul B Mahol2012-02-101-5/+0
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | wavpack: allow user to disable CRC checkingPaul B Mahol2012-02-101-16/+21
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | v210enc: Use Bytestream2 functionsAneesh Dogra2012-02-101-10/+11
| | | | | | | | | | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | cafdec: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-7/+12
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | yop: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-3/+5
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | tta: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | tmv: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | r3d: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | nsvdec: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+3
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | mpc8: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | jvdec: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | filmstripdec: Check return value of avio_seek and avoid modifying state if ↵Joakim Plate2012-02-101-1/+2
| | | | | | | | | | | | | | | | | | | | | it fails Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | ffmdec: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-3/+4
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | dv: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-3/+4
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | bink: Check return value of avio_seek and avoid modifying state if it failsJoakim Plate2012-02-101-1/+3
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | Check AVCodec.pix_fmts in avcodec_open2()Paul B Mahol2012-02-101-0/+10
| | | | | | | | | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
| * | svq3: Prevent illegal reads while parsing extradata.Alex Converse2012-02-101-5/+14
| | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
| * | remove ParseContext1Rafaël Carré2012-02-102-22/+0
| | | | | | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * | vc1: use ff_parse_closeRafaël Carré2012-02-101-1/+1
| | | | | | | | | | | | | | | | | | It works as long as ParseContext is the first member of the private struct Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * | mpegvideo parser: move specific fields into private contextRafaël Carré2012-02-101-4/+12
| | | | | | | | | | | | | | | | | | This obviates using ParseContext1, which is slated for removal. Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * | mpeg4video parser: move specific fields into private contextRafaël Carré2012-02-101-9/+11
| | | | | | | | | | | | | | | | | | This obviates using ParseContext1, which is slated for removal. Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * | cavs parser: fix parser context typeRafaël Carré2012-02-101-2/+2
| | | | | | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * | 4xm, timefilter: K&R formatting cosmeticsYordan Makariev2012-02-102-469/+523
| | | | | | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
| * | rtpenc: Write a log message if the max packet size is too smallMartin Storsjö2012-02-101-1/+3
| | | | | | | | | | | | Signed-off-by: Martin Storsjö <martin@martin.st>
| * | h264: disallow constrained intra prediction modes for luma.Ronald S. Bultje2012-02-095-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conversion of the luma intra prediction mode to one of the constrained ("alzheimer") ones can happen by crafting special bitstreams, causing a crash because we'll call a NULL function pointer for 16x16 block intra prediction, since constrained intra prediction functions are only implemented for chroma (8x8 blocks). Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org
| * | dv: Move tables from dvdata.h to dvdata.cAlex Converse2012-02-092-39/+38
| | |
| * | dv: Move a table used only by the demuxer out of a shared header.Alex Converse2012-02-092-4/+4
| | |
| * | dv: Move functions used only by the encoder out of a shared header.Alex Converse2012-02-092-35/+35
| | |
| * | dv: Split dvdata.h into dvdata.h and dvquant.hAlex Converse2012-02-093-125/+158
| | |
| * | dv: Fix small overread in audio frequency table.Alex Converse2012-02-091-0/+9
| | | | | | | | | | | | Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
| * | avcodec: set avpkt->size to 0 if encode2() did not output a packetJustin Ruggles2012-02-091-0/+2
| | |
| * | avcodec: for audio encoding, set packet dts to packet pts.Justin Ruggles2012-02-092-7/+11
| | | | | | | | | | | | There are no audio encoders which do frame reordering.
| * | ac3dsp: do not use pshufb in ac3_extract_exponents_ssse3()Justin Ruggles2012-02-091-9/+4
| | | | | | | | | | | | | | | | | | | | | We need to do unsigned saturation in order to cover the corner case when the absolute coefficient value is 16777215 (the maximum value). Fixes Bug #216