summaryrefslogtreecommitdiff
path: root/libavformat
Commit message (Collapse)AuthorAge
...
* Add condition to aea demuxer probe.Benjamin Larsson2009-09-13
| | | | Originally committed as revision 19833 to svn://svn.ffmpeg.org/ffmpeg/trunk
* When resetting vst->pkt.data to NULL, also set vst->slices.Reimar Döffinger2009-09-13
| | | | | | | | | | This avoids a crash when the next slice is not a start slice and thus pkt->data is still NULL. This probably only happens with broken or unsupported files like http://samples.mplayerhq.hu/real/multirate/JustaSpa1937_64kb.rm that need further fixes, but keeping vst state consistent is still a good idea. Originally committed as revision 19830 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use I/O buffer size as initial value for backoff for seeking sync point search.Ivan Schreter2009-09-13
| | | | Originally committed as revision 19829 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics, add spacesBenjamin Larsson2009-09-10
| | | | Originally committed as revision 19816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Initial commit of the MD studio demuxer, not hooked up yetBenjamin Larsson2009-09-10
| | | | Originally committed as revision 19812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document padding for AVProbeData.shinya.tesutosan@hotmail.com2009-09-09
| | | | | | Patch by roundup user shinya, tesutosan hotmail Originally committed as revision 19802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a bug with reading non-interleaved AVI if one the streams isMaksym Veremeyenko2009-09-09
| | | | | | | | 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-09
| | | | | | Patch by Maksym Veremeyenko, verem m1stereo tv Originally committed as revision 19797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check entries against field_size, potential malloc overflow in read_stsz, ↵Baptiste Coudurier2009-09-07
| | | | | | 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-07
| | | | Originally committed as revision 19792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use all 32 bits of the timestamp when calculating flv duration.Martin Storsjö2009-09-07
| | | | | | | | | 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
* disable new seeking code in mpeg-ts per #ifdef (use old read_seek by default)Ivan Schreter2009-09-06
| | | | Originally committed as revision 19788 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_rm_metadata is const.Reimar Döffinger2009-09-06
| | | | Originally committed as revision 19786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ff_id3v1_genre_str table should be const.Reimar Döffinger2009-09-06
| | | | 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-06
| | | | Originally committed as revision 19780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic changes (indentation, doxygen comments, braces, put structures for ↵Ivan Schreter2009-09-05
| | | | | | API to header, ...) Originally committed as revision 19773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Search for ipmovie signature beyond the start of the file.Reimar Döffinger2009-09-05
| | | | | | | 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-05
| | | | | | player binary prepended. Originally committed as revision 19768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove fake Speex header creation from FLV demuxer. Having it there was not theJustin Ruggles2009-09-04
| | | | | | | 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-04
| | | | | | | 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
* Fix incorrect display of ASF/WMV duration after r12926.Josh Harris2009-08-30
| | | | | | Patch by Josh Harris, qt tateu net Originally committed as revision 19748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify the Ogg/Speex demuxer and the libspeex decoder so that they always treatJustin Ruggles2009-08-28
| | | | | | a packet of Speex frames as a single frame. Originally committed as revision 19734 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic changes in read_seek* routines.Ivan Schreter2009-08-26
| | | | Originally committed as revision 19723 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decoder for LPCM as used in Bluray discs.Christian Schmidt2009-08-26
| | | | | | Patch by Christian Schmidt, schmidt digadd de Originally committed as revision 19722 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for seek failures in avi_load_index, otherwise if the index offsetReimar Döffinger2009-08-26
| | | | | | | is invalid (e.g. truncated file) we might end up reading the whole file since trying to seek beyond the end of file does not set EOF. Originally committed as revision 19709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* return AVERROR(ENOMEM) if stream could not be allocatedBaptiste Coudurier2009-08-25
| | | | Originally committed as revision 19702 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check av_new_stream return value, patch by Kent Mein, mein at cs dot umn dot eduKent Mein2009-08-25
| | | | Originally committed as revision 19701 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not read index chunks as audio/video data; closes issue 1336.Maksym Veremeyenko2009-08-25
| | | | | | patch by Maksym Veremeyenko, verem m1stereo tv Originally committed as revision 19700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add Bluray Subtitle SupportStephen Backway2009-08-25
| | | | | | Patch by Stephen Backway, stev391 A exemail D com D au Originally committed as revision 19699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark video from .mtv files correctly as upside-down.Reimar Döffinger2009-08-25
| | | | Originally committed as revision 19698 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpegts: change variable-length array to fixed lengthMåns Rullgård2009-08-24
| | | | | | The difference between 188 and 204 is not worth worrying about. Originally committed as revision 19697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: add correct extradata offset for V_MS/VFW/FOURCC tracksAurelien Jacobs2009-08-24
| | | | Originally committed as revision 19694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: factorize some codeAurelien Jacobs2009-08-24
| | | | Originally committed as revision 19693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use generic multi-stream key frame finding routine to implement read_seek2 ↵Ivan Schreter2009-08-22
| | | | | | | | and map read_seek to read_seek2. Originally committed as revision 19681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for generic multi-stream key frame finding for new seek API.Ivan Schreter2009-08-22
| | | | Originally committed as revision 19680 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for S/PDIF encapsulation.Bartlomiej Wolowiec2009-08-21
| | | | Originally committed as revision 19674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Moves the display of metadata to dump_format()Peter Ross2009-08-12
| | | | Originally committed as revision 19632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse ID3 tags in Musepack SV7 filesMatti Hamalainen2009-08-11
| | | | | | | Patch by Matti Hamalainen (mhamalai@students.oamk.+358) Thread: [PATCH] 6/6 Add parsing of ID3v2 tags in Musepack SV7 demuxer Originally committed as revision 19631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Parse APE metadata tags in Musepack SV7 filesMatti Hamalainen2009-08-11
| | | | | | | | Patch by Matti Hamalainen (to get his mail address remove common endings from "mhamalainen@studentsnen.oamknen.finen") Thread: [PATCH]5/6 Add APE tag metadata reading support in Musepack SV7 demuxer Originally committed as revision 19630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move APE tag parsing into separate module.Kostya Shishkov2009-08-11
| | | | | | Based on patch by Matti Hamalainen (mhamalai<mot>students<punkt>oamk<punkt>) Originally committed as revision 19629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not use internals of ByteIOContext during APE tags parsing.Matti Hamalainen2009-08-11
| | | | | | | Patch by Matti Hamalainen, mail = reverse("if.kmao.stneduts@ialamahm") Thread: [PATCH] 2/6 Fix broken APE tag key handling Originally committed as revision 19628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect APE tag size adjustment based on flags.Matti Hamalainen2009-08-11
| | | | | | | Patch by Matti Hamalainen (mhamalai <luona> students <piste> oamk <piste> fi) Thread: [PATCH] 1/6 Remove incorrect APE tag size adjustment based on flags Originally committed as revision 19627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avidec: simplify, using av_rescale_q() instead of av_rescale()Aurelien Jacobs2009-08-10
| | | | Originally committed as revision 19624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* actually define AVSEEK_FLAG_FRAME as described in avformat_seek_file() docAurelien Jacobs2009-08-10
| | | | Originally committed as revision 19623 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: disable h264 parser as long as it totally mess up frame typeAurelien Jacobs2009-08-10
| | | | Originally committed as revision 19622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* matroskadec: correctly parse flags for simpleblock framesAurelien Jacobs2009-08-10
| | | | Originally committed as revision 19621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: whitespace, prettyprinting, coding style fixesDiego Biurrun2009-08-10
| | | | Originally committed as revision 19618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sony Wave64 demuxerDaniel Verkamp2009-08-10
| | | | | | patch by Daniel Verkamp, daniel drv nu Originally committed as revision 19617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix riff subtitle timebaseAurelien Jacobs2009-08-07
| | | | Originally committed as revision 19607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enums instead of int.Ramiro Polla2009-08-02
| | | | Originally committed as revision 19568 to svn://svn.ffmpeg.org/ffmpeg/trunk