summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Move the ADTS header size to the parser's header file.Alex Converse2009-05-13
| | | | Originally committed as revision 18814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse 'stps' atom to set keyframe, partial sync sample for mpeg-2 open gopBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* align and update doxygenBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove commentBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18811 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse 'cslg' atom to retrieve dts shift when 'ctts' duration is negative.Baptiste Coudurier2009-05-13
| | | | | | | We have now dts <= pts, note that for some B frames dts+1 == pts can happen if a crappy timebase is used instead of correct /1001. Originally committed as revision 18810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a quick description to the H.264 BSFAlex Converse2009-05-13
| | | | Originally committed as revision 18809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorize av_set_pts_infoBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, alignmentBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add casts to silence gcc warningsBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18806 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add casts to silence gcc warningsBaptiste Coudurier2009-05-13
| | | | Originally committed as revision 18805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bandwith vs. bandwiDth typo.Diego Biurrun2009-05-12
| | | | Originally committed as revision 18804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* v210 mov fourccBaptiste Coudurier2009-05-12
| | | | Originally committed as revision 18803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* v210 avi fourcc, v210_720p.aviBaptiste Coudurier2009-05-12
| | | | Originally committed as revision 18802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* V210 Uncompressed 4:2:2 10-bit encoder and decoderBaptiste Coudurier2009-05-12
| | | | Originally committed as revision 18801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Per-stream language-tags extraction in asfdec.Cyril Comparon2009-05-12
| | | | | | | | Patch by Cyril Comparon: gmail(name, surname); Original thread: Suggestion for a centralized language-tag facility in libavformat Date: 04/10/2009 07:33 PM Originally committed as revision 18800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Copy input codec's chroma_sample_location to output codec when transcoding.David Conrad2009-05-12
| | | | | | Currently only used by yuv4mpeg. Originally committed as revision 18799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support 16K samplerate in Nellymoser.Alexander Chemeris2009-05-11
| | | | | | patch by Alexander Chemeris, ipse.ffmpeg gmail.com Originally committed as revision 18798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update regression tests for y4m after r18796David Conrad2009-05-11
| | | | | | The default changed from 420mpeg2 to 420jpeg Originally committed as revision 18797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use chroma_sample_location in reading/writing yuv4mpegDavid Conrad2009-05-11
| | | | Originally committed as revision 18796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a chroma_sample_location field to define positioning of chroma samplesDavid Conrad2009-05-11
| | | | Originally committed as revision 18795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* PPC: 32-bit asm for MAC64 and MLS64Måns Rullgård2009-05-11
| | | | | | | | GCC makes a mess of these operations, so give it a hand. 55% faster MP3 decoding on G4. Originally committed as revision 18794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move free data in the video caseBaptiste Coudurier2009-05-11
| | | | Originally committed as revision 18793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write a single pes for video frames, some proprietary player needs itBaptiste Coudurier2009-05-11
| | | | Originally committed as revision 18792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sgi encoder does not support pal8Baptiste Coudurier2009-05-10
| | | | Originally committed as revision 18791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rgb555le, rgb565le, rgb565be, bgr24 in .mov muxingBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bgra in .mov muxingBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correct pixfmt for argbBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rgba in .mov muxingBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for palette presence, fix crash with QT-BMP.mov, issue #1074Baptiste Coudurier2009-05-10
| | | | Originally committed as revision 18785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove dead nested assignment found by CSABenjamin Larsson2009-05-10
| | | | Originally committed as revision 18784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused code found by CSABenjamin Larsson2009-05-10
| | | | Originally committed as revision 18783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const qualifier to param argument of sws_getContext() andDiego Biurrun2009-05-10
| | | | | | | sws_getCachedContext(). Fixes the warning: swscale.c:3408: warning: assignment discards qualifiers from pointer target type Originally committed as revision 29288 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move preprocessor condition before variable declaration, fixes the warning:Diego Biurrun2009-05-10
| | | | | | libswscale/swscale.c:1795: warning: unused variable 'flags' Originally committed as revision 29287 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* ensure first pts is set, according to specsBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless max_payload_size variableBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not write dts if pts is not setBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix total bitrate computation, based on patch by corp186, chasedouglas at ↵Baptiste Coudurier2009-05-10
| | | | | | gmail dot com Originally committed as revision 18778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update comment for rgb 16 bit in .movBaptiste Coudurier2009-05-10
| | | | Originally committed as revision 18777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add @code/@endcode commands to markup C code in av_tree_insert() doxy.Stefano Sabatini2009-05-09
| | | | Originally committed as revision 18776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing '*' to av_tree_insert() doxy.Stefano Sabatini2009-05-09
| | | | Originally committed as revision 18775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary header for CONFIG_RUNTIME_CPUDETECT preprocessor definition.Diego Biurrun2009-05-09
| | | | Originally committed as revision 18774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing const qualifiers to AltiVec function parameters where appropriate.Diego Biurrun2009-05-09
| | | | | | Fixes a couple of 'discards qualifiers from pointer target type' warnings. Originally committed as revision 29281 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* data parameter of dnxhd_encode_picture() should not be const.Daniel Verkamp2009-05-08
| | | | | | | Fixes "dnxhdenc.c:805: warning: initialization from incompatible pointer type". patch by Daniel Verkamp, daniel drv nu Originally committed as revision 18773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* "[" is a terminating char for the filter name. This fixes the parsing ofVitor Sessak2009-05-08
| | | | | | | | things like [in] vflip [out]; Originally committed as revision 18772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct x/ymin to avoid segfault due to out of picture reads.Michael Niedermayer2009-05-08
| | | | Originally committed as revision 18771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix sliced yuv410 -> yuv420 conversionVitor Sessak2009-05-07
| | | | Originally committed as revision 29272 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Warning fix: Make ogg_stream.codec constDaniel Verkamp2009-05-06
| | | | | | | | | | This matches the return value of ogg_find_codec and fixes "libavformat/oggdec.c:333: warning: assignment discards qualifiers from pointer target type" Patch by Daniel Verkamp (daniel - drv . nu) Originally committed as revision 18769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change codec_id type to enum CodecID, fix warning.Daniel Verkamp2009-05-06
| | | | | | Patch by Daniel Verkamp daniel @ drv @ nu. Originally committed as revision 18768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update docs after the 8088flex TMV demuxer and decoder addition.Daniel Verkamp2009-05-06
| | | | | | Patch by Daniel Verkamp daniel AT drv + nu. Originally committed as revision 18767 to svn://svn.ffmpeg.org/ffmpeg/trunk