summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* mention symbol versioningReinhard Tartler2010-02-01
| | | | Originally committed as revision 21594 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure the faulty timestamp detection is just done when we have a pictureMichael Niedermayer2010-02-01
| | | | | | from the decoder. Originally committed as revision 21593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset frame_last_delay to 0.Michael Niedermayer2010-02-01
| | | | | | This avoids a few ms delay for the first frame after a seek in theory. Originally committed as revision 21592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move frame_last_delay into flush code as it must be reset on seeks to,Michael Niedermayer2010-02-01
| | | | | | otherwise the first frame after a seek would be delayed by that amount. Originally committed as revision 21591 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset frame_last_pts on flush (and thus also at start)Michael Niedermayer2010-02-01
| | | | | | fixes issue558 and probably others. Originally committed as revision 21590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Insert a flush packet into the que on init, that way common code betweenMichael Niedermayer2010-02-01
| | | | | | flush and init can be put into the flush handling. Originally committed as revision 21589 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "Flush" the picture que on seeks, this prevents the display thread fromMichael Niedermayer2010-02-01
| | | | | | having frames from before and after the seek which just isnt a good idea. Originally committed as revision 21588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a list of generic tags and change demuxers to follow it.Anton Khirnov2010-02-01
| | | | | | Patch by Anton Khirnov, wyskas at gmail dot com Originally committed as revision 21587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Schedule refreshes from a thread that actually knows the PTS.Michael Niedermayer2010-02-01
| | | | | | Fixes wernfried_1.avi Originally committed as revision 21586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix race condition with reading between video_current_pts and ↵Michael Niedermayer2010-02-01
| | | | | | video_current_pts_time. Originally committed as revision 21585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to more completely update time variables on unpause.Michael Niedermayer2010-02-01
| | | | | | Could not notice a differenc in behavior. Originally committed as revision 21584 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary fields in ALSSpecificConfig.Thilo Borgmann2010-02-01
| | | | Originally committed as revision 21583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify get_video_clock()Michael Niedermayer2010-02-01
| | | | Originally committed as revision 21582 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, forgot HAS_ARG, -drp segfaulted.Michael Niedermayer2010-02-01
| | | | Originally committed as revision 21581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set reordered_opaque during context alloc by default to AV_NOPTS_VALUE.Michael Niedermayer2010-02-01
| | | | | | | This should make sure that pictures allocated prior to avcodec_decode_video() get AV_NOPTS_VALUE assigned. Originally committed as revision 21580 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decoder reorder pts auto detection.Michael Niedermayer2010-01-31
| | | | Originally committed as revision 21579 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indention.Michael Niedermayer2010-01-31
| | | | Originally committed as revision 21578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase search range if no end timestamp could be found for the durationMichael Niedermayer2010-01-31
| | | | | | calculation. Originally committed as revision 21577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar: write to DST THING -> write THING to DST.Stefano Sabatini2010-01-31
| | | | Originally committed as revision 21576 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid usage of avcodec_get_pix_fmt_name() andStefano Sabatini2010-01-31
| | | | | | | | | avcodec_get_chroma_sub_sample(), directly access av_pix_fmt_descriptors instead. Remove some of the dependancies of lavfi on lavc. Originally committed as revision 21575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink video codec id is there, demuxer can use itKostya Shishkov2010-01-31
| | | | Originally committed as revision 21574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update binkaudio to new DECLARE_ALIGNED syntaxDaniel Verkamp2010-01-31
| | | | Originally committed as revision 21573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libavcodec version bump for Bink codec IDs (r21536)Daniel Verkamp2010-01-31
| | | | Originally committed as revision 21572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Latent libavformat version bump for Bink demuxer (r21569)Peter Ross2010-01-31
| | | | Originally committed as revision 21571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink Audio decoderPeter Ross2010-01-31
| | | | Originally committed as revision 21570 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink demuxerPeter Ross2010-01-31
| | | | Originally committed as revision 21569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add include to fix implicit declaration of ff_mpeg4_init_direct_mv andReimar Döffinger2010-01-31
| | | | | | ff_h263_encode_mba Originally committed as revision 21568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add v210x decoder long namePeter Ross2010-01-31
| | | | Originally committed as revision 21567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare support for the pixel formats:Stefano Sabatini2010-01-31
| | | | | | | | | | | | | | | | | | | | PIX_FMT_YUVJ420P PIX_FMT_YUVJ422P PIX_FMT_YUVJ440P PIX_FMT_YUVJ444P in the isSupported{In,Out} macros. These pixel formats are not true pixel formats but hacks specific to JPEG in libavcodec. They are deprecated and should be removed (that is from libavcodec first and libswscale second)... but they must be tested by swscale-test. See thread: Subject: [FFmpeg-devel] [PATCH] Extend show_pix_fmts() to make it print the input/output support Date: 2010-01-30 15:54:08 GMT Originally committed as revision 30474 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Get rid of a check in one direction that cant be true in it in that partMichael Niedermayer2010-01-31
| | | | | | | of the code. No meassureable speed change. Originally committed as revision 21566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Blackfin: use SRAM only when CONFIG_SRAM is setMåns Rullgård2010-01-31
| | | | Originally committed as revision 30472 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Blackfin: use SRAM only when CONFIG_SRAM is setMåns Rullgård2010-01-31
| | | | Originally committed as revision 21565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CONFIG_SRAM to allow use of on-chip SRAM on some systemsMåns Rullgård2010-01-31
| | | | | | | | Some SoCs have a small amount of on-chip SRAM which may be used for frequently used code or data. When enabled, this option will allow FFmpeg to use such facilities where supported. Originally committed as revision 21564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix seeking by bytes with the mouse and do so by default if the duration isMichael Niedermayer2010-01-30
| | | | | | nonsense. Originally committed as revision 21563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flag to ignore dts on frames that contain pts.Michael Niedermayer2010-01-30
| | | | | | | This works around common issues with mpeg-ps files with broken timestamps. Also allows playing the broken sample from issue1024. Originally committed as revision 21562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix AVFormat AVOprions.Michael Niedermayer2010-01-30
| | | | Originally committed as revision 21561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Store strings directly in mov_mdhd_language_map instead of using pointers,Reimar Döffinger2010-01-30
| | | | | | | which has a up to 200% overhead. Also allows to use memcpy instead of strcpy. Originally committed as revision 21560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-01-30
| | | | Originally committed as revision 30467 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use a consistent convention for the names of the internal wrapperStefano Sabatini2010-01-30
| | | | | | | | | functions. Improve readability. -This line, and those below, will be ignored-- swscale.c Originally committed as revision 30466 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Flush the bitreservour.Michael Niedermayer2010-01-30
| | | | | | Fixes issue1716 Originally committed as revision 21559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always consider the mov language code as 4 bytes fixed size and change theReimar Döffinger2010-01-30
| | | | | | function declaration to reflect this. Originally committed as revision 21558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify conversion to 5-bit ASCII.Reimar Döffinger2010-01-30
| | | | Originally committed as revision 21557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate audio-only tests so they are only run onceMåns Rullgård2010-01-30
| | | | Originally committed as revision 21556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Redesign packet queue full check to be more robust.Michael Niedermayer2010-01-30
| | | | Originally committed as revision 21555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump up MAX_VIDEOQ_SIZE to fix stuttering of oddly interleaved avi files.Michael Niedermayer2010-01-30
| | | | | | Fixes issue1211 Originally committed as revision 21554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated empty line.Stefano Sabatini2010-01-30
| | | | Originally committed as revision 21553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split first reference list comparission from mv comparission.Michael Niedermayer2010-01-30
| | | | | | about 0.5% faster MBAFF loop filtering Originally committed as revision 21552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the jump-table section-relative for x86_64 with PIC enabled.Reimar Döffinger2010-01-30
| | | | | | | | This allows to get rid of the macho64 specific hack that moves them to rodata (with worse cache behaviour) and avoids textrels which e.g. Gentoo does not allow for x86_64 libraries. Originally committed as revision 21551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_get_pix_fmt() instead of the deprecated avcodec_get_pix_fmt()Stefano Sabatini2010-01-30
| | | | | | function. Originally committed as revision 21550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated word in av_strlcat() doxy.Stefano Sabatini2010-01-30
| | | | Originally committed as revision 21549 to svn://svn.ffmpeg.org/ffmpeg/trunk