summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Simply use memcpy instead of AV_RN32/AV_WN32 combination.Reimar Döffinger2009-05-31
| | | | Originally committed as revision 19046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix decoding of multithread-encoded lcl files on big-endian.Reimar Döffinger2009-05-31
| | | | Originally committed as revision 19045 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove another useless ()Reimar Döffinger2009-05-31
| | | | Originally committed as revision 19044 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct calculation of compressed input length.Reimar Döffinger2009-05-31
| | | | Originally committed as revision 19043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sanity check for mthread_inlen, avoids crashes due to invalid reads.Reimar Döffinger2009-05-31
| | | | Originally committed as revision 19042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use FFMINReimar Döffinger2009-05-31
| | | | Originally committed as revision 19041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factor out zlib decompression code to avoid massive code duplication,Reimar Döffinger2009-05-31
| | | | | | particularly due to error checks. Originally committed as revision 19040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use FFALIGNReimar Döffinger2009-05-31
| | | | Originally committed as revision 19039 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move variable into block where it is used, avoiding a unused variableReimar Döffinger2009-05-31
| | | | | | warning if the zlib decoder is disabled. Originally committed as revision 19038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make lcldec less annoyingly verbose, move messages from AV_LOG_INFO to ↵Reimar Döffinger2009-05-31
| | | | | | AV_LOG_DEBUG. Originally committed as revision 19037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of unreachable code: avctx->codec_id == CODEC_ID_ZLIB is not possibleReimar Döffinger2009-05-31
| | | | | | here when the zlib decoder is disabled and libavcodec is used correctly. Originally committed as revision 19036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lcldec.c: change #if CONFIG_ZLIB to #if CONFIG_ZLIB_DECODER.Reimar Döffinger2009-05-31
| | | | | | | The zlib related code should not be compiled in when the decoder is disabled and it thus will never be used, even if we have zlib available. Originally committed as revision 19035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of extradata casts, it already has the right uint8_t * typeReimar Döffinger2009-05-31
| | | | Originally committed as revision 19034 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make lcldec produce YUV output when the input file is coded like that, insteadReimar Döffinger2009-05-31
| | | | | | of having it do its own inefficient fixed-point YUV to RGB conversion. Originally committed as revision 19033 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove now unused elements from LclEncContextReimar Döffinger2009-05-31
| | | | Originally committed as revision 19032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless casts, extradata is already "uint8_t *"Reimar Döffinger2009-05-31
| | | | Originally committed as revision 19031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lclenc.c: compress directly into output buffer instead of using a pointlessReimar Döffinger2009-05-31
| | | | | | temporary buffer and then using put_bits to copy the data over. Originally committed as revision 19030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initialize pes state to skipBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous () from lclenc.cReimar Döffinger2009-05-31
| | | | Originally committed as revision 19028 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: fix indentation in lclenc.cReimar Döffinger2009-05-31
| | | | Originally committed as revision 19027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove "#if CONFIG_ZLIB" checks from lclenc.c, the file is never compiledReimar Döffinger2009-05-31
| | | | | | if zlib is not available. Originally committed as revision 19026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a lock manager API to libavcodec.Andreas Öman2009-05-31
| | | | | | | | Allows an application to register a callback that manages mutexes on behalf of FFmpeg. With this callback registered FFmpeg is fully thread safe. Originally committed as revision 19025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove cast and use put_sbits, fix assertion in put_bitsBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 3gp metadata, write strings in UTF8, patch by Larbi Joubala, larbi dot ↵Larbi Joubala2009-05-31
| | | | | | joubala at resonate-mp4 dot com Originally committed as revision 19023 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add myself as maintainer for mpegts*Baptiste Coudurier2009-05-31
| | | | Originally committed as revision 19022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print reg desc in a more friendly wayBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give context to dprintfBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print registration descriptor in debugBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19019 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split audio chunks in mov demuxerBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 0x7a is E-AC3 descriptorBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19017 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation with DEBUG definedBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix compilation with DEBUG definedBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use dts codec probingBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set codec_tag to stream type, so user can deal with itBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set codec_tag to registration descriptor if presentBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add streams even if they are not present in PMT, fix #1092 and #835Baptiste Coudurier2009-05-31
| | | | Originally committed as revision 19011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no longer needed fake dvbsub stream typeBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no longer needed initBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* factorizeBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify and mergeBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move new_pes_av_stream to avoid forward declarationBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove definesBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rework stream type and codec identificationBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, reindent, remove useless braces, whitespacesBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export all streams in ts demuxerBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19001 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix codec probing, stop after MAX_PROBE_PACKETS and return all packetsBaptiste Coudurier2009-05-31
| | | | Originally committed as revision 19000 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H264: Fix out of bounds reads in SSSE3 MCAlexander Strange2009-05-30
| | | | | | | | | Reading above src[-2] isn't safe, so move loads and palignr ahead 3 pixels to load starting at the first pixel actually used. Fixes issue941. Originally committed as revision 18999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement SoX native format muxer and demuxer.Daniel Verkamp2009-05-30
| | | | | | Patch by Daniel Verkamp $firstname@drv DOT nu. Originally committed as revision 18998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use memcpy instead of per-pixel copy loop for rgb lcl formatReimar Döffinger2009-05-30
| | | | Originally committed as revision 18997 to svn://svn.ffmpeg.org/ffmpeg/trunk