summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Change developer doc to reflect realityBenjamin Larsson2009-09-091-1/+1
| | | | Originally committed as revision 19799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a bug with reading non-interleaved AVI if one the streams isMaksym Veremeyenko2009-09-091-0/+6
| | | | | | | | shorter. Patch by Maksym Veremeyenko, verem m1stereo tv Originally committed as revision 19798 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorise st->nb_index_entries check.Maksym Veremeyenko2009-09-091-1/+4
| | | | | | Patch by Maksym Veremeyenko, verem m1stereo tv Originally committed as revision 19797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split out common routines needed in the atrac1 decoder from atrac3.c to atrac.c.Benjamin Larsson2009-09-084-64/+165
| | | | Originally committed as revision 19796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless debug statement that fails to compile.Diego Biurrun2009-09-081-6/+0
| | | | Originally committed as revision 19795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to clarify that anyone using get_bits must check for buffer overrunReimar Döffinger2009-09-081-0/+3
| | | | | | themselves, get_bits does not do anything in that regard. Originally committed as revision 19794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check entries against field_size, potential malloc overflow in read_stsz, ↵Baptiste Coudurier2009-09-071-1/+1
| | | | | | fix #1357 Originally committed as revision 19793 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add one missing check for stream existence in read_elst, fix #1364Baptiste Coudurier2009-09-071-1/+5
| | | | Originally committed as revision 19792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-09-072-53/+53
| | | | Originally committed as revision 29654 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use all 32 bits of the timestamp when calculating flv duration.Martin Storsjö2009-09-071-1/+3
| | | | | | | | | At the moment, duration is mainly set from the metadata packet. If that is not available, the fallback is checking the low 24 bits of the last packet. This is not enough for files over 4,6 hours in length, so read all 32 bits instead. patch by Martin Storsjö, martin martin st Originally committed as revision 19791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Fix typo.Carl Eugen Hoyos2009-09-061-1/+1
| | | | Originally committed as revision 19790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark all pix_fmts and supported_framerates compound literals as const.Reimar Döffinger2009-09-0635-56/+56
| | | | | | Makes no difference for gcc but at least icc can put them in .rodata then. Originally committed as revision 19789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable new seeking code in mpeg-ts per #ifdef (use old read_seek by default)Ivan Schreter2009-09-062-26/+66
| | | | Originally committed as revision 19788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-0618-22/+22
| | | | | | .data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_rm_metadata is const.Reimar Döffinger2009-09-062-2/+2
| | | | Originally committed as revision 19786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_sine_windows table contains only constant data, too.Reimar Döffinger2009-09-062-2/+2
| | | | Originally committed as revision 19785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The ff_cos_tabs table itself is constant, too, so mark it as such.Reimar Döffinger2009-09-062-2/+2
| | | | Originally committed as revision 19784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The pointers in ff_sin_tabs themselves are constant, so mark them accordingly.Reimar Döffinger2009-09-061-1/+1
| | | | Originally committed as revision 19783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_swb_offset_* tables should be const.Reimar Döffinger2009-09-062-4/+4
| | | | Originally committed as revision 19782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_id3v1_genre_str table should be const.Reimar Döffinger2009-09-062-2/+2
| | | | Originally committed as revision 19781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, all avlanguage tables should be both static and const.Reimar Döffinger2009-09-061-3/+3
| | | | Originally committed as revision 19780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* compatible_frame array can be static const, too.Reimar Döffinger2009-09-061-1/+1
| | | | Originally committed as revision 19779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not decode more than one audio frame in a decode packet callSascha Sommer2009-09-061-31/+14
| | | | Originally committed as revision 19778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid extra memcpy during scale factor decodingSascha Sommer2009-09-061-10/+9
| | | | Originally committed as revision 19777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelRamiro Polla2009-09-064-85/+85
| | | | | | parameters. Originally committed as revision 19776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelRamiro Polla2009-09-061-20/+20
| | | | | | parameters. Originally committed as revision 29652 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-09-051-6/+6
| | | | Originally committed as revision 29651 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().Lars Täuber2009-09-053-45/+45
| | | | | | Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. Originally committed as revision 19775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().Lars Täuber2009-09-053-54/+54
| | | | | | Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. Originally committed as revision 29650 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use memcpy to copy till end of line in one go instead of copying pixel by pixelReimar Döffinger2009-09-051-11/+15
| | | | | | in xan_wc3_output_pixel_run and xan_wc3_copy_pixel_run Originally committed as revision 19774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic changes (indentation, doxygen comments, braces, put structures for ↵Ivan Schreter2009-09-052-141/+142
| | | | | | API to header, ...) Originally committed as revision 19773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly simplify detection of end of compressed data in xan_unpackReimar Döffinger2009-09-051-6/+2
| | | | Originally committed as revision 19772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make vp3 arrays static const where possible.Reimar Döffinger2009-09-051-5/+5
| | | | Originally committed as revision 19771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless ulti_decode_end function.Reimar Döffinger2009-09-051-8/+1
| | | | Originally committed as revision 19770 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Search for ipmovie signature beyond the start of the file.Reimar Döffinger2009-09-051-5/+17
| | | | | | | This allows to play directly files that combine player and movie into a single executable like http://samples.mplayerhq.hu/game-formats/interplay-mve/DES3S.EXE Originally committed as revision 19769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend ipmovie signature to match exactly one place in mve files that have aReimar Döffinger2009-09-051-4/+4
| | | | | | player binary prepended. Originally committed as revision 19768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2009-09-052-13/+15
| | | | Originally committed as revision 19767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix handling of packet loss when the output buffer is fullSascha Sommer2009-09-051-2/+3
| | | | Originally committed as revision 19766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reindentSascha Sommer2009-09-051-43/+43
| | | | Originally committed as revision 19765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove no longer needed debug outputSascha Sommer2009-09-051-3/+0
| | | | Originally committed as revision 19764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reduce output buffer needsSascha Sommer2009-09-051-9/+24
| | | | | | (fixes playback of some multichannel files) Originally committed as revision 19763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store packet GetBitContext in the decoder contextSascha Sommer2009-09-051-12/+13
| | | | Originally committed as revision 19762 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove fake Speex header creation from FLV demuxer. Having it there was not theJustin Ruggles2009-09-041-33/+0
| | | | | | | correct solution to the problem. A better solution might be possible later once Speex is supported in muxers. Originally committed as revision 19761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add frame_size as a codec parameter requirement for Speex inJustin Ruggles2009-09-041-1/+2
| | | | | | | av_find_stream_info(). It forces decoding of a packet when there is no Speex header in order to determine the correct frame size. Originally committed as revision 19760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce pointless verbosity after seeks in the MP3 decoder.Diego Biurrun2009-09-041-1/+1
| | | | Originally committed as revision 19759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a newline in error message in CHECKED_ALLOC(Z).Ramiro Polla2009-09-041-2/+2
| | | | Originally committed as revision 19758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-09-041-9/+9
| | | | Originally committed as revision 19757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use if(0){} instead of #if 0 to prevent debug code to rot.Ramiro Polla2009-09-041-2/+2
| | | | Originally committed as revision 19756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libspeex: Do not set AVCodecContext.frame_size in decoder init if there is noJustin Ruggles2009-09-041-2/+1
| | | | | | | header in extradata since the default value will be incorrect for multiple frames per packet. Originally committed as revision 19755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: fix check for x264Måns Rullgård2009-09-021-1/+1
| | | | | | | | libx264 recently started mangling the name of x264_encoder_open() to prevent version mismatches, breaking our test. Checking for another function instead makes it work again. Originally committed as revision 19754 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud