aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* TIFF may omit compression tag.Kostya Shishkov2007-12-011-0/+1
| | | | | | This fixes issue 276. Originally committed as revision 11121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* succes --> success typoDiego Biurrun2007-12-012-2/+2
| | | | Originally committed as revision 11120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix nodes[nb_codes*2-1].count being uninitialized and used to initializeReimar Döffinger2007-12-011-0/+1
| | | | | | | | nodes[nb_codes*2-2].count (thus making that invalid as well) in ff_huff_build_tree. Might fix some (hard to reproduce) crashes in VP6 decoder. Originally committed as revision 11119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* senseless cast and ()Michael Niedermayer2007-12-011-1/+1
| | | | Originally committed as revision 11118 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stupid code (casting of void*) found by checktree.shMichael Niedermayer2007-12-017-27/+27
| | | | Originally committed as revision 11117 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l _reserved (found by checktree.sh)Michael Niedermayer2007-12-011-2/+2
| | | | Originally committed as revision 11116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* wma_decode_superframe always returns s->block_align, so makeReimar Döffinger2007-11-301-0/+3
| | | | | | | | sure we actually consume exactly that amount. Fixes sound artefacts (mostly blips) that mysteriously disappeared after e.g. remuxing with mencoder. Originally committed as revision 11115 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix make checkheaders, #include <inttypes.h> was missing.Diego Biurrun2007-11-301-0/+2
| | | | Originally committed as revision 11114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Comment some #endif directives.Diego Biurrun2007-11-301-14/+14
| | | | Originally committed as revision 25211 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* fix segfault with interlaced h.264Michael Niedermayer2007-11-291-2/+2
| | | | Originally committed as revision 11113 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Suppress the "redirector hack" from libavformat/utils.c:av_open_input_stream(),Luca Abeni2007-11-292-16/+8
| | | | | | and implement the redirector format more properly. Originally committed as revision 11112 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump lavf minor due to addition ofAndreas Öman2007-11-281-2/+2
| | | | | | av_url_read_fplay(), av_url_read_fpause() and av_url_read_fseek() Originally committed as revision 11111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend ByteIOContext and add the buffered IO functions:Björn Axelsson2007-11-282-0/+46
| | | | | | | | av_url_read_fplay(), av_url_read_fpause() and av_url_read_fseek(). patch by: Björn Axelsson, bjorn d axelsson a intinor d se Originally committed as revision 11110 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MLP/TrueHD parserIan Caulfield2007-11-284-0/+367
| | | | | | | Patch by Ian Caulfield, ian D caulfield <at> gmail D com Thread: [PATCH] MLP/TrueHD decoder, 12 Oct 14:26 Originally committed as revision 11109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify documentation for avcodec_encode_audio.Stefano Sabatini2007-11-281-1/+3
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 11108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* frame_size vs. frame_size*channels bugMichael Niedermayer2007-11-281-1/+1
| | | | Originally committed as revision 11107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove some unused ff_p* vars from dsputilAurelien Jacobs2007-11-272-6/+0
| | | | Originally committed as revision 11106 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless #ifdef around extern declarationAurelien Jacobs2007-11-271-2/+0
| | | | Originally committed as revision 11105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-11-271-2/+2
| | | | Originally committed as revision 11104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert some #ifdef CONFIG_ to if(ENABLE_Aurelien Jacobs2007-11-271-5/+2
| | | | Originally committed as revision 11103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* build vc1dsp_mmx.c in its own compilation unitAurelien Jacobs2007-11-273-8/+11
| | | | Originally committed as revision 11102 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use ff_ prefix for extern varsAurelien Jacobs2007-11-273-14/+14
| | | | Originally committed as revision 11101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make ff_p* vars extern so that they can be used in various *_mmx.c filesAurelien Jacobs2007-11-276-37/+89
| | | | Originally committed as revision 11100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: init_get_bits want size in bits, not bytesAurelien Jacobs2007-11-271-1/+1
| | | | Originally committed as revision 11099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: alignmentAurelien Jacobs2007-11-271-18/+18
| | | | Originally committed as revision 11098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmeticsDiego Biurrun2007-11-274-38/+38
| | | | Originally committed as revision 11097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add #include "os_support.h" to restore OS/2 support.Dave Yeo2007-11-272-0/+2
| | | | | | patch by Dave Yeo, daveryeo telus net Originally committed as revision 11096 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove possibly misleading comments.Diego Biurrun2007-11-271-6/+0
| | | | Originally committed as revision 11095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sync message with modern ffmpeg bitrate option syntax.D Richard Felker III2007-11-271-1/+1
| | | | | | | | note: this message should probably be tweaked; i'm not sure that it's a good idea for lavc to be recommending ffmpeg command line options as it's a general-purpose library. Originally committed as revision 11094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove some empty close/init functions in avcodecAurelien Jacobs2007-11-254-44/+5
| | | | | | patch by Alex Originally committed as revision 11093 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add pcm_s16le_planar support for electronicarts filesAurelien Jacobs2007-11-256-4/+36
| | | | Originally committed as revision 11092 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split wmv2 encoder and decoder in their own filesAurelien Jacobs2007-11-255-716/+789
| | | | Originally committed as revision 11091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Typo fix. Previous version had some picture error building up until next ↵Christophe Gisquet2007-11-251-2/+2
| | | | | | | | | keyframe. Now MMX version decodes 1:1 what the C version does patch by Christophe GISQUET %christophe P gisquet A free P fr% Originally committed as revision 11090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Data tables for future RV30/40 decoderKostya Shishkov2007-11-244-0/+1142
| | | | Originally committed as revision 11089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Strip debug stuff from vc1dsp_mmx.c, patch by Christophe GISQUET %hristophe ↵Christophe Gisquet2007-11-241-4/+1
| | | | | | | | | | P gisquet A free P fr% Original thread: date: Nov 24, 2007 3:09 PM subject: [FFmpeg-devel] [PATCH] Strip debug stuff from vc1dsp_mmx.c Originally committed as revision 11088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #includes to fix 'make checkheaders'.Diego Biurrun2007-11-247-0/+15
| | | | Originally committed as revision 11087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend URLProtocol with new function pointers and api functions forBjörn Axelsson2007-11-242-0/+52
| | | | | | | | av_url_read_play(), av_url_read_pause() and av_url_read_seek(). patch by: Björn Axelsson, bjorn d axelsson a intinor d se Originally committed as revision 11086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Link libavdevice against libavutil, libavcodec, and libavformatLuca Abeni2007-11-231-0/+4
| | | | | | (fix compilation for non-ELF targets). Originally committed as revision 11085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix out of tree builds after introduction of libavdevice.Diego Biurrun2007-11-231-0/+2
| | | | Originally committed as revision 11084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Keep -L flags before corresponding -l flags.Diego Biurrun2007-11-231-1/+1
| | | | Originally committed as revision 11083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently indent with 4 spaces, break some long lists into singleDiego Biurrun2007-11-231-373/+389
| | | | | | lines, align some columns. Originally committed as revision 11081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the creation of alldevices.c (create it without any rename).Luca Abeni2007-11-232-13/+13
| | | | | | This also requires some changes to configure Originally committed as revision 11080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* main() --> main(void)Diego Biurrun2007-11-2315-15/+15
| | | | Originally committed as revision 11079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spellingDiego Biurrun2007-11-231-2/+2
| | | | Originally committed as revision 11078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce libavdeviceLuca Abeni2007-11-2219-25/+145
| | | | Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_read_frame with rtsp client return EINTR on interruptLuca Barbato2007-11-221-1/+1
| | | | | | patch from elupusateccedotse (missing hunk from r11072) Originally committed as revision 11076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* comment spelling/grammar fixesDiego Biurrun2007-11-221-36/+31
| | | | Originally committed as revision 25137 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* os_support.h is also needed for usleep and lseek on MinGW.Ramiro Polla2007-11-223-0/+3
| | | | Originally committed as revision 11075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add VC-1 MMX DSP functions, under MIT license.Christophe Gisquet2007-11-212-0/+510
| | | | | | | | | patch by Christophe GISQUET %christophe P gisquet A free P fr% original thread: date: Jul 7, 2007 12:52 PM subject: [FFmpeg-devel] [PATCH] VC-1 MMX DSP functions Originally committed as revision 11074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include os_support.h only when neededLuca Abeni2007-11-214-2/+3
| | | | Originally committed as revision 11073 to svn://svn.ffmpeg.org/ffmpeg/trunk