summaryrefslogtreecommitdiff
path: root/libavformat/raw.c
Commit message (Collapse)AuthorAge
* Whitespace cosmetics to align return statements.Benoit Fouet2009-01-27
| | | | Originally committed as revision 16826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check buffer is inside what is passed when probing for flac.Benoit Fouet2009-01-27
| | | | Originally committed as revision 16825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle ID3v2 tags in raw FLAC streams by skipping them.David DeHaven2009-01-25
| | | | | | Patch by David DeHaven (dave sagetv com) Originally committed as revision 16764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix probing of files with ID3v2 tags. Discussed atAlex Converse2009-01-19
| | | | | | http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-January/059302.html Originally committed as revision 16688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove silly FIXME comment.Michael Niedermayer2008-12-14
| | | | Originally committed as revision 16122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ADTS AAC probe.Michael Niedermayer2008-12-02
| | | | | | fixes issue400 Originally committed as revision 15977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* raw dnxhd de/muxerBaptiste Coudurier2008-10-24
| | | | Originally committed as revision 15674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Assume mono if no other information for raw.Michael Niedermayer2008-10-18
| | | | | | Should fix issue687 Originally committed as revision 15631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove offset_t typedef and use int64_t directly instead.Diego Biurrun2008-10-03
| | | | | | | The name offset_t is easily confused with the standard off_t type and *_t is POSIX reserved namespace if any POSIX header is included. Originally committed as revision 15533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* write number of samples in FLAC extradata.Justin Ruggles2008-09-14
| | | | | | based on a patch by Mathieu Velten (matmaul gmail com). Originally committed as revision 15324 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change back to using CONFIG_*_DEMUXER for ac3_eac3_probe(), but use itJustin Ruggles2008-09-01
| | | | | | correctly this time. Originally committed as revision 15147 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify ac3_probe() and eac3_probe(). patch by Aurelien Jacobs.Aurelien Jacobs2008-09-01
| | | | Originally committed as revision 15145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check ENABLE_*_DEMUXER instead of CONFIG_*_DEMUXERJustin Ruggles2008-09-01
| | | | Originally committed as revision 15144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* create a separate codec_id for E-AC-3Justin Ruggles2008-09-01
| | | | Originally committed as revision 15143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add raw muxers/demuxers for F64/F32/S32/S24/U32/U24 PCM audio.Peter Ross2008-08-23
| | | | Originally committed as revision 14930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Surround format-specific functions with matching preprocessor conditionals.Diego Biurrun2008-08-15
| | | | Originally committed as revision 14783 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Surround AVInputFormat declarations with format-specific #ifdefs.Diego Biurrun2008-08-15
| | | | Originally committed as revision 14782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_MUXERS preprocessor condition around format-specificDiego Biurrun2008-08-15
| | | | | | functions by more appropriate format-specific preprocessor conditions. Originally committed as revision 14781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace generic CONFIG_MUXERS preprocessor conditions around AVOutputFormatDiego Biurrun2008-08-15
| | | | | | declarations by more specific CONFIG_FOOBAR_MUXER conditions. Originally committed as revision 14780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove redundant #endif comments that are very close to the #ifdefDiego Biurrun2008-08-15
| | | | | | condition. This will make upcoming diffs smaller. Originally committed as revision 14779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: misc spelling fixesDiego Biurrun2008-08-15
| | | | Originally committed as revision 14778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check url_fseek return valueBaptiste Coudurier2008-07-31
| | | | Originally committed as revision 14490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Detect IDR less H.264 correctly.Michael Niedermayer2008-07-26
| | | | | | Fixes maybeH264_dumpvideo Originally committed as revision 14424 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
* Alphabetically order AVInputFormat/AVOutputFormat declarations.Diego Biurrun2008-07-07
| | | | Originally committed as revision 14100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a note to remind people to add new raw formats to the Makefile.Diego Biurrun2008-07-07
| | | | Originally committed as revision 14099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling cosmetics in PCM codec long namesDiego Biurrun2008-07-07
| | | | Originally committed as revision 14097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless close funcsBaptiste Coudurier2008-06-19
| | | | Originally committed as revision 13835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: s/Id/id/ in libavformat where Id refers to id Software.Stefano Sabatini2008-06-05
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* raw mlp demuxerRamiro Polla2008-05-30
| | | | | | | Based on patch by Jeff Muizelaar <jrmuizel <at> gmail.org> http://article.gmane.org/gmane.comp.video.ffmpeg.devel/57797 Originally committed as revision 13558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace some occurrences of 0 with CODEC_ID_NONE.Carl Eugen Hoyos2008-05-12
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 13135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dts probeBenjamin Larsson2008-05-03
| | | | Originally committed as revision 13040 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import Dirac demuxer/muxer from SoC branch; written by Marco Gerards,Luca Barbato2008-05-02
| | | | | | patch extracted by Anuradha Suraparaju anuradhaAtrdDoTbbcDoTcoDoTuk. Originally committed as revision 13031 to svn://svn.ffmpeg.org/ffmpeg/trunk
* raw GSM demuxer (does not work yet as parser is missing)Michael Niedermayer2008-04-28
| | | | Originally committed as revision 13013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set demuxers .value and use common audio_read_header functionBaptiste Coudurier2008-04-28
| | | | Originally committed as revision 13012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change ff_ac3_parse_header() to take a GetBitContext instead of const char*Bartlomiej Wolowiec2008-04-22
| | | | Originally committed as revision 12922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compute AC3 frame CRC for stronger raw AC3 format probing.Andreas Öman2008-04-21
| | | | | | Closes issue64. Originally committed as revision 12920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raw dts muxerBenjamin Larsson2008-04-20
| | | | Originally committed as revision 12912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set pts/dts in raw (yuv,rgb,pcm) demuxers.Michael Niedermayer2008-01-12
| | | | Originally committed as revision 11513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not force fps unless the user actually specified one.Michael Niedermayer2007-12-26
| | | | | | fixes issue309 Originally committed as revision 11322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move unrelated functions declarations out of allformats.hAurelien Jacobs2007-09-11
| | | | Originally committed as revision 10475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100000l (forgotten return)Michael Niedermayer2007-08-10
| | | | Originally committed as revision 10062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded buf_size check (see AVPROBE_PADDING_SIZE)Michael Niedermayer2007-08-10
| | | | Originally committed as revision 10060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac probeMichael Niedermayer2007-08-10
| | | | | | closes issue83 Originally committed as revision 10059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l to me. Revert recent changes to ac3_probe() which made misdetection as ↵Justin Ruggles2007-08-05
| | | | | | AC3 too probable. Originally committed as revision 9931 to svn://svn.ffmpeg.org/ffmpeg/trunk