aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/raw.c
Commit message (Collapse)AuthorAgeFilesLines
...
* set demuxers .value and use common audio_read_header functionBaptiste Coudurier2008-04-281-78/+14
| | | | 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-221-1/+4
| | | | 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-211-0/+4
| | | | | | Closes issue64. Originally committed as revision 12920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raw dts muxerBenjamin Larsson2008-04-201-0/+14
| | | | Originally committed as revision 12912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set pts/dts in raw (yuv,rgb,pcm) demuxers.Michael Niedermayer2008-01-121-1/+9
| | | | 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-261-1/+4
| | | | | | fixes issue309 Originally committed as revision 11322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-211-22/+22
| | | | | | | 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-111-0/+1
| | | | Originally committed as revision 10475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100000l (forgotten return)Michael Niedermayer2007-08-101-1/+1
| | | | Originally committed as revision 10062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unneeded buf_size check (see AVPROBE_PADDING_SIZE)Michael Niedermayer2007-08-101-3/+0
| | | | Originally committed as revision 10060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* flac probeMichael Niedermayer2007-08-101-1/+7
| | | | | | 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-051-1/+1
| | | | | | AC3 too probable. Originally committed as revision 9931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless raw_write_headerBaptiste Coudurier2007-08-051-16/+11
| | | | Originally committed as revision 9923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* additional tweaks to AC3 probe function. give a higher score to a single frameJustin Ruggles2007-08-051-2/+2
| | | | | | at the start of the stream. also read all available data in the probe buffer. Originally committed as revision 9922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* increase the maximum AC3 probe buffer size and reduce the threshold for 50% ↵Justin Ruggles2007-08-041-2/+2
| | | | | | reliability score to 2 frames. Fixes out.ac3 from [FFmpeg-devel] AC3 Format Detection unreliable. Originally committed as revision 9920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_IO with AVERROR(EIO).Panagiotis Issaris2007-07-191-7/+7
| | | | Originally committed as revision 9760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).Panagiotis Issaris2007-07-191-7/+7
| | | | Originally committed as revision 9759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Getting rid of the use of GCC language extensionsRoman Shaposhnik2007-07-081-11/+9
| | | | Originally committed as revision 9531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill uninitialised variable warning in ac3_probe()Måns Rullgård2007-07-071-1/+1
| | | | Originally committed as revision 9521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove empty write trailer functionsVitor Sessak2007-06-271-18/+0
| | | | | | patch by Vitor: [vitor1001 gmail com] Originally committed as revision 9442 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-121-1/+1
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add rgb suffix handling for demuxerBenoit Fouet2007-05-231-1/+1
| | | | Originally committed as revision 9103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* RoQ muxer, patch by Vitor, vitor1001 gmail comVitor Sessak2007-05-091-0/+29
| | | | | | | | reference thread: Subject: [FFmpeg-devel] [PATCH] RoQ muxer Date: Wed, 09 May 2007 19:44:21 +0200 Originally committed as revision 8959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move aac and ac3 parsers in their own filesAurelien Jacobs2007-05-081-1/+1
| | | | Originally committed as revision 8941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve mpeg4-es detection by rejecting streams with reserved startcodes ↵Michael Niedermayer2007-05-071-8/+7
| | | | | | (fixes 11-i_need_your_love-daw.mp3 detected as mpeg4) Originally committed as revision 8923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add rgb suffix to rawvideo muxerBenoit Fouet2007-04-251-1/+1
| | | | Originally committed as revision 8805 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add an enum for need_parsingAurelien Jacobs2007-04-151-6/+6
| | | | Originally committed as revision 8742 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the declaration of AVInputFormat ac3_demuxer conditionalDiego Biurrun2007-04-151-0/+2
| | | | | | on CONFIG_AC3_DEMUXER. Originally committed as revision 8741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move AC3 header parsing code together with the rest of the AC3 parsing code.Diego Biurrun2007-04-151-1/+1
| | | | Originally committed as revision 8739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate 32 extra bytes at the end of the probe buffer and remove most probe ↵Michael Niedermayer2007-04-081-4/+0
| | | | | | buf_size checks Originally committed as revision 8677 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix probe of 001.vdr-broken-6025Michael Niedermayer2007-03-291-2/+2
| | | | Originally committed as revision 8550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* improve ac3_probe by counting consecutive framesJustin Ruggles2007-03-181-8/+24
| | | | Originally committed as revision 8441 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raw VC-1 demuxerKostya Shishkov2007-02-091-0/+12
| | | | Originally committed as revision 7896 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add read_probe function to raw ac3 demuxerJustin Ruggles2007-02-081-1/+17
| | | | Originally committed as revision 7887 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better generic index building and seeking codeMichael Niedermayer2007-02-051-0/+14
| | | | Originally committed as revision 7841 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpeg4probe patch by (Thijs Vermeir ; thijs vermeir barco com)Thijs Vermeir2006-11-081-1/+31
| | | | | | | tabs removed by me VOL vs. VOP check fixed by me Originally committed as revision 6940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-231-1/+1
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify pcm read seek, use av_get_bits_per_sampleBaptiste Coudurier2006-10-181-20/+5
| | | | Originally committed as revision 6728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont be too picky about timestampsbeing wrong if the destination container ↵Michael Niedermayer2006-08-081-1/+12
| | | | | | is without timestamps and raw of the raw video / raw audio sort Originally committed as revision 5961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-101-67/+0
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-091-66/+66
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation with all combinations of --disable-(de)muxers.Diego Biurrun2006-06-161-11/+16
| | | | Originally committed as revision 5485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Raw flac muxer, patch by Justin Ruggles (jruggle earthlink net). Can beJustin Ruggles2006-05-121-0/+30
| | | | | | | used with "-acodec copy" to either copy a flac file verbatim or extract the raw flac from an ogg-flac file. Originally committed as revision 5368 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for raw flac decoding based on the .flac suffix of input files.Benjamin Larsson2006-05-091-0/+28
| | | | Originally committed as revision 5352 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify AVFormatParameters NULL checksMichael Niedermayer2006-03-111-5/+2
| | | | Originally committed as revision 5146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* can't have PES headers in MPEG video elementary streams so fail probeMåns Rullgård2006-03-011-2/+6
| | | | | | if we see one Originally committed as revision 5089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* generate adts frame headers if requiredMåns Rullgård2006-02-101-16/+0
| | | | Originally committed as revision 4970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* read/write adts aacMåns Rullgård2006-02-081-0/+46
| | | | Originally committed as revision 4955 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 3rd try for mpeg-es probe ...Michael Niedermayer2006-02-041-1/+1
| | | | Originally committed as revision 4938 to svn://svn.ffmpeg.org/ffmpeg/trunk