summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* only include sys/select.h if present, fix mingw compilationBaptiste Coudurier2008-09-26
| | | | Originally committed as revision 15420 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent image2 from complaining about non monotone timestamps asMichael Niedermayer2008-09-26
| | | | | | there are no timestamps in "raw" image2. Originally committed as revision 15419 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid out of picture accesses when CODEC_FLAG_EMU_EDGE is set.Michael Niedermayer2008-09-25
| | | | | | Fixes issue427. Originally committed as revision 15418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do instead of divising a float by a constant, multiply by its inverseVitor Sessak2008-09-25
| | | | Originally committed as revision 15417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that no non-existing frame is used.Michael Niedermayer2008-09-25
| | | | | | Fixes issue624. Originally committed as revision 15416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement av_nearer_q() and av_find_nearest_q_idx() functions.Stefano Sabatini2008-09-25
| | | | Originally committed as revision 15415 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not free sps & pps on width/height changes.Michael Niedermayer2008-09-25
| | | | | | Fixes issue557. Originally committed as revision 15414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use the generic "alloc missing references" code for h.264 as it doesMichael Niedermayer2008-09-25
| | | | | | | not work correctly in that case. Fixes issue652. Originally committed as revision 15413 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initialize next/last_picture* as the generic code does not alwaysMichael Niedermayer2008-09-25
| | | | | | set them to sane values. Originally committed as revision 15412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print which slices are IDR not just the slice type.Michael Niedermayer2008-09-25
| | | | Originally committed as revision 15411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix CAVLC+8x8+MBAFF loop filter.Michael Niedermayer2008-09-25
| | | | | | Fixes FREXT02_JVC_C. Originally committed as revision 15410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, remove GXF: in log messages since it is present in contextBaptiste Coudurier2008-09-24
| | | | Originally committed as revision 15409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip invalid audio samples in gxf packetsBaptiste Coudurier2008-09-24
| | | | Originally committed as revision 15408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Field -> MBAFF direct mode can use data from fields that are notMichael Niedermayer2008-09-24
| | | | | | | | in the reference list. Follow the spec and no comment on the sanity of this design ... Fixes HPCAMAPALQ_BRCM_B Originally committed as revision 15407 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include sys/select.h to get select, according to posix 2001,Baptiste Coudurier2008-09-24
| | | | | | fix compilation on freebsd 5.5 Originally committed as revision 15406 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include sys/select.h instead of unistd.h to get select,Baptiste Coudurier2008-09-24
| | | | | | according to posix 2001, fix compilation on freebsd 5.5 Originally committed as revision 15405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move constant multiplication out of the loopVitor Sessak2008-09-24
| | | | Originally committed as revision 15404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: move convolve() together with the other DSP functionsVitor Sessak2008-09-24
| | | | Originally committed as revision 15403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: move division by constant off the loopVitor Sessak2008-09-24
| | | | Originally committed as revision 15402 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stop parsing if tag size is wrongly < 8 to avoid infinite loopBaptiste Coudurier2008-09-24
| | | | Originally committed as revision 15401 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid segfault due to not set AVCodec.Michael Niedermayer2008-09-24
| | | | Originally committed as revision 15400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* merge amr wb case with amr nb and qcelpBaptiste Coudurier2008-09-24
| | | | Originally committed as revision 15399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* only write trailer when state says so, should fix issue #646Baptiste Coudurier2008-09-24
| | | | Originally committed as revision 15398 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not override sample rate for amr nor qcelp, should fix some qcelp files ↵Baptiste Coudurier2008-09-24
| | | | | | at 16000hz Originally committed as revision 15397 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct wrong lower limit and condition used in APE decoderKostya Shishkov2008-09-24
| | | | Originally committed as revision 15396 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ASF stands for "advanced stream format" not "adaptive ...", changing it to ↵Michael Niedermayer2008-09-24
| | | | | | "ASF". Originally committed as revision 15395 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the 2 lpc loops.Michael Niedermayer2008-09-23
| | | | | | | | This changes the output by (stddev: 0.21 PSNR:109.51, file:ddinterview28.ra), the changes are due to float rounding inaccuracies and do not happen if doubles are used. Originally committed as revision 15394 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize lpc code slightly.Michael Niedermayer2008-09-23
| | | | Originally committed as revision 15393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MIPS to list of architectures requiring PIC flags.Diego Biurrun2008-09-23
| | | | | | | Prior to gcc version 4.3 PIC was the default, now it needs to be enabled explicitly. Passing the flag to older gcc versions does not hurt. Originally committed as revision 15392 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after last commitKostya Shishkov2008-09-23
| | | | Originally committed as revision 15391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RLE4 and RLE8 decoding support for BMPKostya Shishkov2008-09-23
| | | | Originally committed as revision 15390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for 1-bit, 4-bit, 8-bit and some 16-bit raw BMPKostya Shishkov2008-09-23
| | | | Originally committed as revision 15389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate line size correctly for bit depths < 8Kostya Shishkov2008-09-23
| | | | Originally committed as revision 15388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add myself to BMP format maintainers (with permission from Mans on IRC)Kostya Shishkov2008-09-23
| | | | Originally committed as revision 15387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for RVTR fourCCVitor Sessak2008-09-23
| | | | Originally committed as revision 15386 to svn://svn.ffmpeg.org/ffmpeg/trunk
* A few empty lines for readability.Michael Niedermayer2008-09-22
| | | | Originally committed as revision 15385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another try to fix temporal direct mode references.Michael Niedermayer2008-09-22
| | | | | | | | Fixes at least CAPAMA3_Sand_F.264 CVMAPAQP3_Sony_E.jsv Originally committed as revision 15384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2008-09-22
| | | | Originally committed as revision 15383 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AltiVec detection support for OpenBSD, patch by Brad, brad comstyle com.Brad2008-09-22
| | | | Originally committed as revision 15382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix all the recent problems Justin had run into with the AC3 parser,Michael Niedermayer2008-09-22
| | | | | | including issue 459. Originally committed as revision 15381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ref_shift so that it is correct for more/all? MBAFF/PAFF mixes.Michael Niedermayer2008-09-22
| | | | | | Fixes at least MR9_BT_B. Originally committed as revision 15380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-09-21
| | | | Originally committed as revision 15379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct comment in the direct mode code.Michael Niedermayer2008-09-21
| | | | | | | (note, yes this is unrelated to the previous simplification, the code always behaved like it is documented now.) Originally committed as revision 15378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify initialization of a few direct mode related variables.Michael Niedermayer2008-09-21
| | | | Originally committed as revision 15377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* V4L2 support for OpenBSD, patch by Brad, brad comstyle comBrad2008-09-21
| | | | Originally committed as revision 15376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MBAFF temporal direct mode closer to the spec.Michael Niedermayer2008-09-21
| | | | | | | | | Fixes at least: CAMANL2_TOSHIBA_B CVMANL2_TOSHIBA_B camp_mot_mbaff0_full Originally committed as revision 15375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move direct_dist_scale_factor() and direct_ref_list_init() after ↵Michael Niedermayer2008-09-21
| | | | | | | | fill_mbaff_ref_list() as future changes will need the mbaff lists inited. Originally committed as revision 15374 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set poc for field references in MBAFF.Michael Niedermayer2008-09-21
| | | | Originally committed as revision 15373 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename check_func2 to check_func_headers.Diego Biurrun2008-09-20
| | | | Originally committed as revision 15372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Log an error message in case of invalid number of channels.Stefano Sabatini2008-09-20
| | | | Originally committed as revision 15371 to svn://svn.ffmpeg.org/ffmpeg/trunk