summaryrefslogtreecommitdiff
path: root/libavformat/asf.c
Commit message (Collapse)AuthorAge
...
* replace coder/decoder file description in libavformat by muxer/demuxerAurelien Jacobs2006-10-23
| | | | Originally committed as revision 6774 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use proper PRI?64 macros for %ll? format to fix printf format warnings:Dominik Mierzejewski2006-10-14
| | | | | | | | | | | | | utils.c:833: warning: format ‘%lld’ expects type ‘long long int’, but argument 5 has type ‘int64_t’ utils.c:833: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘int64_t’ utils.c:854: warning: format ‘%lld’ expects type ‘long long int’, but argument 5 has type ‘int64_t’ utils.c:854: warning: format ‘%lld’ expects type ‘long long int’, but argument 6 has type ‘int64_t’ asf.c:872: warning: format ‘%Lx’ expects type ‘long long unsigned int’, but argument 4 has type ‘int64_t’ mov.c:1754: warning: format ‘%llx’ expects type ‘long long unsigned int’, but argument 5 has type ‘int64_t’ Approved by Michael. Originally committed as revision 6692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prevent infinite loop with VORC012.WMAMichael Niedermayer2006-09-27
| | | | Originally committed as revision 6361 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-27
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix fallback if theres no indexMichael Niedermayer2006-08-23
| | | | | | fix index less seeking Originally committed as revision 6055 to svn://svn.ffmpeg.org/ffmpeg/trunk
* read and use index (based on a patch by John Donaghy on the 23-03-2006 ↵Michael Niedermayer2006-08-23
| | | | | | '[Ffmpeg-devel] dvr-ms seek help request') Originally committed as revision 6054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* value_num should also be 64bit (1 hunk from the asf seeking patch by ↵Steve L'Homme2006-08-23
| | | | | | DrDivx/Steve Lhomme) Originally committed as revision 6053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* total_size should be 64bit (1 hunk of the asf seeking patch from DrDivx / ↵Michael Niedermayer2006-08-23
| | | | | | Steve Lhomme) Originally committed as revision 6052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The reader ignores the size of the ASF data object and keeps onKohn Emil Dan2006-07-29
| | | | | | | | | | | | | | | reading even beyond it. Therefore if the ASF file includes an index object at its end, the reader will treat the index like data, but of course will fail since it thinks that the data is corrupted. When reading an asf file with an index object, ffmpeg will complain at the end of the file that it read an invalid header. Patch by Kohn Emil Dan, < emild A cs P technion P ac P il > Original thead: Date: Apr 18, 2006 4:11 PM Subject: [Ffmpeg-devel] Two ASF related bugs and fixes Originally committed as revision 5857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move common stuff from avienc.c and wav.c to new file riff.cMåns Rullgård2006-07-12
| | | | Originally committed as revision 5720 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-10
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-09
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free codec extradata in av_close_input_fileMåns Rullgård2006-06-16
| | | | Originally committed as revision 5484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* timebase fixMichael Niedermayer2006-03-02
| | | | Originally committed as revision 5099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add size to AVIndexMichael Niedermayer2006-03-01
| | | | Originally committed as revision 5083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill some warningsMåns Rullgård2006-02-25
| | | | Originally committed as revision 5063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, fails to compile when debug enabledAlex Beregszaszi2006-02-12
| | | | Originally committed as revision 4998 to svn://svn.ffmpeg.org/ffmpeg/trunk
* audio in dvr-ms demuxing support by (John Donaghy <johnfdonaghy gmail com<)Michael Niedermayer2006-01-20
| | | | Originally committed as revision 4874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-22
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use PRIxN, %zd, %td formats where neededMåns Rullgård2005-12-12
| | | | Originally committed as revision 4740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix asf header decoding issue, patch by < patrice -- bensoussan AH gmail -- ↵Patrice Bensoussan2005-10-26
| | | | | | | | | | | com > http://avifile.sourceforge.net/asf-1.0.htm has more info about asf headers Original thread: Date: Oct 22, 2005 11:44 PM Subject: [Ffmpeg-devel] [PATCH] Fix asf header decoding issue Originally committed as revision 4663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERSDiego Biurrun2005-09-23
| | | | | | | in libavformat to allow building (de)coders and (de)muxers independently at some point + support for this option in configure. Originally committed as revision 4611 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changes to ignore command media embedded in MS WMV files patch by ("Brown, ↵Mike Brown2005-08-10
| | | | | | Mike": mikeb, vibephone com) Originally committed as revision 4501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* round pointer up to next packet_size multipleMichael Niedermayer2005-07-27
| | | | Originally committed as revision 4479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changing AVCodecContext codec -> *codec in AVStream so additions to ↵Michael Niedermayer2005-07-17
| | | | | | AVCodecContext dont randomize AVStream and break binary compatibility Originally committed as revision 4453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoMichael Niedermayer2005-06-23
| | | | Originally committed as revision 4387 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVPacket.posMichael Niedermayer2005-05-26
| | | | Originally committed as revision 4314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* switch to native time basesMichael Niedermayer2005-04-30
| | | | Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ministry of English Composition, reporting for duty (and the word is ↵Mike Melanson2005-04-24
| | | | | | "skipped", not "skiped"; "skiped" would rhyme with "hyped") Originally committed as revision 4153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing demuxing of DV5700.asfMichael Niedermayer2005-04-19
| | | | Originally committed as revision 4138 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more fine grained discarding of packetsMichael Niedermayer2005-03-17
| | | | Originally committed as revision 4051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support discarding uninterresting packetsMichael Niedermayer2005-01-22
| | | | Originally committed as revision 3860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various security fixes and precautionary checksMichael Niedermayer2005-01-12
| | | | Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* preroll is in msMichael Niedermayer2004-12-22
| | | | | | pts should start at start_time Originally committed as revision 3771 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix regression test failureMichael Niedermayer2004-12-21
| | | | Originally committed as revision 3767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allocate a few bytes more for extradata so the bitstream reader if its used ↵Michael Niedermayer2004-11-13
| | | | | | by the codec for parsing extardata, doesnt read over the end Originally committed as revision 3679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dvr-ms video decoding supportMichael Niedermayer2004-10-24
| | | | Originally committed as revision 3631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use native timebase for seekingMichael Niedermayer2004-10-10
| | | | | | direction flag for seeking Originally committed as revision 3577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sweeping change from -EIO -> AVERROR_IOMike Melanson2004-06-19
| | | | Originally committed as revision 3239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store index for seeking in the native timebase of each streamMichael Niedermayer2004-05-23
| | | | | | | | set correct timebase for nut merge mpeg-ts seeking with existing seeking code 10l fix in mpegts (27mhz vs. 90khz) Originally committed as revision 3152 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move time_base (pts_num/pts_den) from AVFormatContext -> AVStreamMichael Niedermayer2004-05-21
| | | | Originally committed as revision 3148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moving nearly identical binary search code from nut/mpeg/asf to utils.cMichael Niedermayer2004-04-12
| | | | Originally committed as revision 3003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* asf patch by (Konstantin Andreyev <kandreyev at bcsii dot com>)Konstantin Andreyev2004-03-05
| | | | | | | | | | 1. Corrected packet sent time. (Packet sent time => previous packet sent time) 2. Corrected payload playing time. (Payload playing time => packet sent time) 3. Used different format for packets with one payload and multi payloads. Originally committed as revision 2851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* split asf patch by (Konstantin Andreyev <kandreyev at bcsii dot com>)Konstantin Andreyev2004-03-05
| | | | Originally committed as revision 2850 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2004-03-03
| | | | Originally committed as revision 2840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* seeking stuffMichael Niedermayer2004-01-17
| | | | | | | adaptively change middle position selection algo for seeking, this avoids some ugly worstcases of the interpolated variant avoid backward search for mpeg where possible, its 17 times slower then forward according to my benchmark Originally committed as revision 2710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* store searched distance in index, so we dont waste time searching for ↵Michael Niedermayer2004-01-17
| | | | | | | | keyframes where we already searched asf seek fixes & use keyframe pos/timestamp cache Originally committed as revision 2709 to svn://svn.ffmpeg.org/ffmpeg/trunk