summaryrefslogtreecommitdiff
path: root/libavformat/avidec.c
Commit message (Collapse)AuthorAge
...
* 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
* Kill some compiler warnings. Compiled code verified identical after changes.Måns Rullgård2005-09-06
| | | | Originally committed as revision 4567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* parse pict_type for streams in aviMichael Niedermayer2005-08-15
| | | | | | | fix mpeg4 parser so it outputs te pict_type support header only parseing without repacking Originally committed as revision 4527 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill a bunch of compiler warningsMåns Rullgård2005-08-14
| | | | Originally committed as revision 4522 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
* AVPacket.posMichael Niedermayer2005-05-26
| | | | Originally committed as revision 4314 to svn://svn.ffmpeg.org/ffmpeg/trunk
* drop most url_fileno() calls (allows to use ByteIOContext directly in caller ↵Aurelien Jacobs2005-05-19
| | | | | | apps instead of URLProtocol) Originally committed as revision 4275 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
* segfault fixMichael Niedermayer2005-03-24
| | | | Originally committed as revision 4079 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
* reverse zero packet dissapearence "feature"Michael Niedermayer2005-03-16
| | | | Originally committed as revision 4046 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup strh parserMichael Niedermayer2005-03-15
| | | | Originally committed as revision 4041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non interleaved avi supportMichael Niedermayer2005-03-15
| | | | | | various fixes/workarounds Originally committed as revision 4038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use libavformats index system instead of the half duplicated mess in avidec.cMichael Niedermayer2005-03-13
| | | | Originally committed as revision 4036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* audio duration fix?Michael Niedermayer2005-02-08
| | | | Originally committed as revision 3952 to svn://svn.ffmpeg.org/ffmpeg/trunk
* overflowsMichael Niedermayer2005-02-04
| | | | Originally committed as revision 3935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* support discarding of uninterresting packetsMichael Niedermayer2005-01-22
| | | | Originally committed as revision 3858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1/0 fixMichael Niedermayer2005-01-21
| | | | Originally committed as revision 3856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* integer overflows, heap corruptionMichael Niedermayer2005-01-08
| | | | | | | possible arbitrary code execution cannot be ruled out in some cases precautionary checks Originally committed as revision 3813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* broken avi / div by zero fixMichael Niedermayer2004-12-19
| | | | Originally committed as revision 3761 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
* When playingKostya Shishkov2004-11-12
| | | | | | | | | | | ftp://ftp.mplayerhq.hu/MPlayer/samples/V-codecs/QPEG/VWbig6.avi with my decoder (should appear soon) it hadn't changed palette even there are palette change chunks in that AVI. Here is small patch to make it work (zero number of colors to change in that chunk actually means to change ALL colors). patch by (Kostya <cannonball>at<bw-team>dot<com>) Originally committed as revision 3670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing demuxing of vc2_intro.aviMichael Niedermayer2004-10-19
| | | | Originally committed as revision 3610 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * static allocation for audio packets. This will make it a little bitRoman Shaposhnik2004-10-13
| | | | | | | | faster and easier to follow. * misc. fixes for problems with seeking Originally committed as revision 3590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l (forgoten seeking functions)Michael Niedermayer2004-10-11
| | | | Originally committed as revision 3585 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pads streamMichael Niedermayer2004-09-28
| | | | Originally committed as revision 3531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fix for a DV regression introduced with the last round of avi_read_packetRoman Shaposhnik2004-09-19
| | | | | | fixes. Originally committed as revision 3482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added support for the elusive AVI palette change chunk, courtesy ofMike Melanson2004-09-16
| | | | | | Kostya <cannonball at bw-team.com> Originally committed as revision 3467 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various fixes for the main chunk demux loopMichael Niedermayer2004-09-15
| | | | Originally committed as revision 3464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * simplifying OpenDML AVI handling.Roman Shaposhnik2004-08-04
| | | | | | | | | | | * adding code to skip over JUNK. It turns out that video editing software uses junk to resize ix## chunks without actually scrubbing the data. That trips up our packet extraction code since it recognizes ix## entries as "packets". Basically we have to skip over JUNK chunks for exactly the same reason we have to skip over ix## entries. Originally committed as revision 3378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* play more broken filesMichael Niedermayer2004-07-14
| | | | Originally committed as revision 3308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2004-05-30
| | | | Originally committed as revision 3174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* skip subtitle streams instead of perishingMichael Niedermayer2004-05-30
| | | | Originally committed as revision 3173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* exporting keyframe flags, fixes keyframe stuff with streamcopyMichael Niedermayer2004-05-29
| | | | Originally committed as revision 3169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l (avi seeking)Michael Niedermayer2004-05-24
| | | | Originally committed as revision 3155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l (AVStream.duration)Michael Niedermayer2004-05-24
| | | | Originally committed as revision 3154 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
* vbr audio fixMichael Niedermayer2004-05-06
| | | | Originally committed as revision 3111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* audio pts fixMichael Niedermayer2004-01-10
| | | | Originally committed as revision 2689 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing some seek failure issuesMichael Niedermayer2004-01-10
| | | | Originally committed as revision 2688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2004-01-04
| | | | Originally committed as revision 2666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* forgot ...Michael Niedermayer2004-01-03
| | | | Originally committed as revision 2658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initial seek supportFabrice Bellard2003-11-10
| | | | Originally committed as revision 2502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixes for broken builds on Solaris, OS2 and all bingendianRoman Shaposhnik2003-11-04
| | | | | | systems out there. Originally committed as revision 2480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make avi and asf demuxer export palette in palctrlRoberto Togni2003-11-02
| | | | Originally committed as revision 2465 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * DV demuxer is now capable of decoding auxilary audio stream. So,Roman Shaposhnik2003-10-31
| | | | | | | | | | | everybody who still uses second streo track for dubbing can now export it. * void* -> DVDemuxContext* change (per Fabrice's suggestion). * -dv1394 capture now works in all modes. Originally committed as revision 2458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * DV handling was streamlined for both muxing/demuxing andRoman Shaposhnik2003-09-29
| | | | | | | | | | | | | | decoding. All muxing/demuxing functionality is now available in libavformat/dv.[ch]. * dv1394.c and avidec.c were hooked up with general DV demuxer. * DVAUDIO is dead! Long live pcm_s16le! * DV audio is now always recognized -- which means we can now hear all those ducks quaking in pond.dv. Originally committed as revision 2319 to svn://svn.ffmpeg.org/ffmpeg/trunk