summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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
* Prevent users from setting -vol and -acodec copy together.Ramiro Polla2008-07-12
| | | | | | They are incompatible since the frames are not decoded, so they can't be preprocessed. Originally committed as revision 14178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Typo and grammar fixRobert Swain2008-07-12
| | | | Originally committed as revision 14177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct a couple of typosRobert Swain2008-07-12
| | | | Originally committed as revision 14176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, fix MS ADPCM decoding for e.g. ↵Reimar Döffinger2008-07-12
| | | | | | | | http://samples.mplayerhq.hu/mov/qtaudio/surge-2-16-L-ms02.mov First coefficient array must be unsigned to fit in 8 bits Originally committed as revision 14175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, forgot to replace a / 256 for r14173.Reimar Döffinger2008-07-12
| | | | | | Fixes MS ADPCM regression test. Originally committed as revision 14174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change MS ADPCM table so they fit into int8_t and change array type.Reimar Döffinger2008-07-11
| | | | Originally committed as revision 14173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-07-11
| | | | Originally committed as revision 14172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix not coded channels / silence decoding.Michael Niedermayer2008-07-11
| | | | | | Fixes issue264 WMV audio stutter Originally committed as revision 14171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that we have enough output space available.Michael Niedermayer2008-07-11
| | | | Originally committed as revision 14170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate avcodec_build(), it returns the same value asAndreas Öman2008-07-11
| | | | | | avcodec_version(). Originally committed as revision 14169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2008-07-11
| | | | Originally committed as revision 14168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix misdetection of MPEG-PS (AVSEQ03.DAT and AVSEQ06.DAT) as psxstr.Michael Niedermayer2008-07-11
| | | | Originally committed as revision 14167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move #ifdef CONFIG_DVVIDEO_ENCODER up to cover all functions used for encoding.Diego Biurrun2008-07-11
| | | | Originally committed as revision 14166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make preprocessor condition more specific and useful by changingDiego Biurrun2008-07-11
| | | | | | #ifdef CONFIG_ENCODERS --> #ifdef CONFIG_DVVIDEO_ENCODER. Originally committed as revision 14165 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move one function that is only used for muxing below #ifdef CONFIG_MUXERS.Diego Biurrun2008-07-11
| | | | Originally committed as revision 14164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move a function and an #ifdef CONFIG_MUXERS so that functions used only forDiego Biurrun2008-07-11
| | | | | | muxing get disabled when compiling with --disable-muxers. Originally committed as revision 14163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move functions only used for muxing below #ifdef CONFIG_YUV4MPEGPIPE_MUXER,Diego Biurrun2008-07-11
| | | | | | fixes some warnings when compiling with muxers disabled. Originally committed as revision 14162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SSE2 optimizations for Monkey's Audio decoder vector functionsKostya Shishkov2008-07-11
| | | | Originally committed as revision 14161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H264: Fix decoding with CABAC/delta_qp/PCM macroblocks.Jason Garrett-Glaser2008-07-11
| | | | | | Patch by Jason Garrett-Glaser (darkshikari gmail com) Originally committed as revision 14160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a checklist about new codecs or formats to the documentation.Ramiro Polla2008-07-11
| | | | Originally committed as revision 14159 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update Changelog and documentation for MVI demuxer and decoder.Ramiro Polla2008-07-10
| | | | Originally committed as revision 14158 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update info for Sonic, add Dirac to supported formats list.Diego Biurrun2008-07-10
| | | | Originally committed as revision 14157 to svn://svn.ffmpeg.org/ffmpeg/trunk