summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* -itsscale to scale timestampsMichael Niedermayer2008-07-13
| | | | | | fixes issue511 Originally committed as revision 14226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent.Alexander Strange2008-07-13
| | | | Originally committed as revision 27279 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove const vector casts.Alexander Strange2008-07-13
| | | | | | Fixes compilation with altivec and -std=gnu99. Originally committed as revision 27278 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* removed gif decoder in r14209Ben Littler2008-07-13
| | | | Originally committed as revision 14225 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop non-C99-compliant initialization.Diego Biurrun2008-07-13
| | | | Originally committed as revision 14224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make our flac decoder decode all the data at EOF.Michael Niedermayer2008-07-13
| | | | | | Fixes issue524 Originally committed as revision 14223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tools/trasher: Don't mix srand/rand and srandom/random interface.Matthieu Castet2008-07-13
| | | | | | patch by matthieu castet, castet.matthieu free fr Originally committed as revision 14222 to svn://svn.ffmpeg.org/ffmpeg/trunk
* strdup() the default value for rc_eq in AVCodec when setting it inStefano Sabatini2008-07-13
| | | | | | | | avcodec_get_context_defaults(). The value has to be alloced dinamically rather than statically since it may be freed for example by av_set_string2(). Fix a segmentation fault. Originally committed as revision 14221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* On EOF keep calling the decoders until they do not output anythingMichael Niedermayer2008-07-13
| | | | | | anymore, instead of just once. Originally committed as revision 14220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the logic to access the location of a string to free when settingStefano Sabatini2008-07-13
| | | | | | | a new value for a string with av_set_string2(). Fix a segmentation fault. Originally committed as revision 14219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SimplifyVitor Sessak2008-07-13
| | | | Originally committed as revision 14218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Another av_clipf() usageVitor Sessak2008-07-13
| | | | Originally committed as revision 14217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not declare as double a var that only stores a floatVitor Sessak2008-07-13
| | | | Originally committed as revision 14216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use FFMAXVitor Sessak2008-07-13
| | | | Originally committed as revision 14215 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check that csize in ff_lzw_decode_init is < LZW_MAXBITS, <= is not enough andReimar Döffinger2008-07-13
| | | | | | might read outside the prefix array Originally committed as revision 14214 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_clipf() function to common.h and use it in ra288.cVitor Sessak2008-07-13
| | | | Originally committed as revision 14213 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dvdsubdec: allow compilation with -DDEBUGMåns Rullgård2008-07-13
| | | | Originally committed as revision 14212 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RTP: use dprintf(), allow compilation with -DDEBUGMåns Rullgård2008-07-13
| | | | Originally committed as revision 14211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ASF: use dprintf(), allow compilation with -DDEBUGMåns Rullgård2008-07-13
| | | | Originally committed as revision 14210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove gif demuxer, the code contains a gif decoder and lzw decoder neitherMichael Niedermayer2008-07-13
| | | | | | | belongs in a demuxer, furthermore the code might be exploitable. Fixes issue530 Originally committed as revision 14209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use -vsync 0 unless the user explicitly asked for somethingMichael Niedermayer2008-07-13
| | | | | | | else when the framerate is above 1000. Fixes issue259. Originally committed as revision 14208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* exploit mdct symmetryLoren Merritt2008-07-13
| | | | | | 2% faster vorbis on conroe, k8. 7% on celeron. Originally committed as revision 14207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mlpdec: Check for bits left before each read of End-of-Stream indicator andRamiro Polla2008-07-13
| | | | | | | Substream parity check independently. This allows decoding of streams that have EOS but don't have Substream parity check. Originally committed as revision 14206 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify vorbis windowingLoren Merritt2008-07-13
| | | | Originally committed as revision 14205 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bitstream: move put_sbits() from flacenc.c to bitstream.h and use itRamiro Polla2008-07-13
| | | | | | throughout libavcodec. Originally committed as revision 14204 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clip MS ADPCM predictor range to correct [0..6] range, not [0..7]Reimar Döffinger2008-07-13
| | | | Originally committed as revision 14203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use bytestream and AV_RL* functions in ADPCM code where possibleReimar Döffinger2008-07-13
| | | | Originally committed as revision 14202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MS ADPCM de- and encoding: first and second sample are swapped.Reimar Döffinger2008-07-13
| | | | | | Noticeable better decoding of e.g. http://samples.mplayerhq.hu/A-codecs/msadpcm-stereo/dance-b5th.asf Originally committed as revision 14201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add parisc* to the list of architectures requiring PIC flags for shared libs.Diego Biurrun2008-07-13
| | | | Originally committed as revision 14200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegaudio: use MAC/MLS macros in ff_mpa_synth_filterMåns Rullgård2008-07-13
| | | | Originally committed as revision 14199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mathops: add MAC64, MLS64, and MLS16Måns Rullgård2008-07-13
| | | | | | | | MAC64: 64 += 32 x 32 (bits) MLS64: 64 -= 32 x 32 MLS16: 32 -= 16 x 16 Originally committed as revision 14198 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bitstream: use AV_RB16() in LIBMPEG2_BITSTREAM_READERMåns Rullgård2008-07-13
| | | | | | This makes LIBMPEG2_BITSTREAM_READER_HACK redundant, so remove it. Originally committed as revision 14197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use CODEC_ID_PROBE when the mpeg-ps demuxer does not know exactly whichMichael Niedermayer2008-07-12
| | | | | | | video codec is used. Fixes issue49 Departed Trailer.evo (mpeg ps missdetecting h264 as mpeg2video) Originally committed as revision 14196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: simplify negative dependenciesMåns Rullgård2008-07-12
| | | | Originally committed as revision 14195 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: allow !foo as argument to enabled/disabled and *_deps listsMåns Rullgård2008-07-12
| | | | Originally committed as revision 14194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove old hackish codec probe system.Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix pts handling when encoding with libschroedinger, closes issue 453.Anuradha Suraparaju2008-07-12
| | | | | | patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 14192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix pts handling when encoding with libdirac.Anuradha Suraparaju2008-07-12
| | | | | | patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 14191 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use strcmp() instead of strncmp() in set_codec_from_probe_data().Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-07-12
| | | | Originally committed as revision 14189 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only try to probe the codec when the available data has roughly doubledMichael Niedermayer2008-07-12
| | | | | | relative to the last attempt. Originally committed as revision 14188 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add mpegvideo and H.264 to the codec probe.Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* h264_probe()Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-07-12
| | | | Originally committed as revision 14185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* New codec probing system try #1.Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* command_streams are type data not unknown.Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new style static VLC tables for IMC decoder.Reimar Döffinger2008-07-12
| | | | | | Also fixes a memleak due to the previous in-context tables not being freed. Originally committed as revision 14182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move add_to_pktbuf() before av_read_packet(). My future work on codec ↵Michael Niedermayer2008-07-12
| | | | | | | | identification cleanup will need this. Originally committed as revision 14181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move set_codec_from_probe_data() up to where the other probe functions are.Michael Niedermayer2008-07-12
| | | | Originally committed as revision 14180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pass AVPacketList instead of the whole context to add_to_pktbuf as that isMichael Niedermayer2008-07-12
| | | | | | all that is needed. Originally committed as revision 14179 to svn://svn.ffmpeg.org/ffmpeg/trunk