aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/img.c
Commit message (Collapse)AuthorAgeFilesLines
* Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A ↵Michel Bardiaux2006-09-041-9/+9
| | | | | | | | | | mediaxim P be % Original thread: Date: Aug 30, 2006 4:54 PM Subject: [Ffmpeg-devel] [PATCH] Clarified API for numbered sequences Originally committed as revision 6166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add loop_input to AVFormatContext, getting rid of old hackVíctor Paesa2006-07-131-4/+1
| | | | | | patch by Víctor Paesa <wzrlpy at arsystel com> Originally committed as revision 5729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow individual selection of muxers and demuxersMåns Rullgård2006-07-101-20/+12
| | | | Originally committed as revision 5707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* give AVInput/OutputFormat structs consistent namesMåns Rullgård2006-07-091-8/+8
| | | | Originally committed as revision 5697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix double free, priv_data is freed in av_open_input_streamBaptiste Coudurier2006-03-261-2/+0
| | | | Originally committed as revision 5221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify AVFormatParameters NULL checksMichael Niedermayer2006-03-111-3/+3
| | | | Originally committed as revision 5146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-12/+12
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* changing AVCodecContext codec -> *codec in AVStream so additions to ↵Michael Niedermayer2005-07-171-12/+12
| | | | | | AVCodecContext dont randomize AVStream and break binary compatibility Originally committed as revision 4453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* switch to native time basesMichael Niedermayer2005-04-301-11/+7
| | | | Originally committed as revision 4168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* integer overflows, heap corruptionMichael Niedermayer2005-01-081-2/+2
| | | | | | | 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
* prefer image2 over imageMichael Niedermayer2004-11-101-1/+1
| | | | Originally committed as revision 3666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sweeping change from -EIO -> AVERROR_IOMike Melanson2004-06-191-7/+7
| | | | Originally committed as revision 3239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pass AVPacket into av_write_frame()Michael Niedermayer2004-05-291-4/+3
| | | | | | | | | | fixes the random dts/pts during encoding asf preroll fix no more initial zero frames for b frame encoding mpeg-es dts during demuxing fixed .ffm timestamp scale fixed, ffm is still broken though Originally committed as revision 3168 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move time_base (pts_num/pts_den) from AVFormatContext -> AVStreamMichael Niedermayer2004-05-211-1/+1
| | | | Originally committed as revision 3148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* segfault fixMichael Niedermayer2004-05-131-2/+2
| | | | Originally committed as revision 3135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2004-04-121-0/+1
| | | | Originally committed as revision 3005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* recommit ofMichael Niedermayer2003-10-141-0/+1
| | | | | | | | | | | | | | | | | | | * fixing an unitilaized field AVImageInfo::interleaved. As a matter of fact we have two problems here: first AVImageInfo::interleaved is never initialzed in img.c. The second problem is that even if we want interleaved PNGs there's a bug in png.c that prevents us from generating them. The later problem is for somebody familiar with PNG to handle. And yes, always setting AVImageInfo::interleaved to 0 isn't such a good idea, but it still beats garbage values. orginal commit by roman shaposhnik Originally committed as revision 2380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 64 bit pts for writing - more const usageFabrice Bellard2003-09-101-1/+1
| | | | Originally committed as revision 2255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed os_support.hFabrice Bellard2003-09-081-2/+0
| | | | Originally committed as revision 2230 to svn://svn.ffmpeg.org/ffmpeg/trunk
* suppressed frame number modulus hack - added loop_input hack which I find ↵Fabrice Bellard2003-08-241-2/+18
| | | | | | easier to understand Originally committed as revision 2151 to svn://svn.ffmpeg.org/ffmpeg/trunk
* update duration and start_timeFabrice Bellard2003-08-081-18/+70
| | | | Originally committed as revision 2111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * moved os_support.h into libavcodecZdenek Kabelac2003-03-121-1/+1
| | | | | | * added few more functions for os2 Originally committed as revision 1672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleaner support for usleep()François Revol2003-03-121-15/+1
| | | | Originally committed as revision 1668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* per context frame_rate_base, this should finally fix frame_rate related av ↵Michael Niedermayer2003-03-121-5/+8
| | | | | | sync issues Originally committed as revision 1666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Frame rate emulation patch by (Max Krasnyansky <maxk at qualcomm dot com>)Max Krasnyansky2003-03-071-19/+0
| | | | Originally committed as revision 1641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-111-6/+6
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * static,const,compiler warning cleanupZdenek Kabelac2003-02-101-1/+1
| | | | Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)Slavik Gnatenko2003-01-111-1/+5
| | | | Originally committed as revision 1447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* jpeg detection fix - fixed imagepipe outputFabrice Bellard2003-01-111-2/+2
| | | | Originally committed as revision 1443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added still image supportFabrice Bellard2003-01-111-745/+143
| | | | Originally committed as revision 1439 to svn://svn.ffmpeg.org/ffmpeg/trunk
* redid usleep() fix for BeOS, more consistant with the MINGW32 one. removed a ↵François Revol2002-12-201-8/+7
| | | | | | TAB :P Originally committed as revision 1349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw patch by (Bill Eldridge <bill at rfa dot org>)Bill Eldridge2002-12-201-0/+5
| | | | Originally committed as revision 1347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Hey, not everyone has usleep() ! (temporary fix, we should check for this in ↵François Revol2002-12-201-0/+7
| | | | | | configure) Originally committed as revision 1343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add code to allow the img reader to read files at the nominal frame rate.Philip Gladstone2002-12-111-0/+20
| | | | | | | This (will) allow testing of ffserver in an automated way. The code is nasty in that it uses a global....... Originally committed as revision 1331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed libav to libavformatFabrice Bellard2002-11-251-0/+945
Originally committed as revision 1276 to svn://svn.ffmpeg.org/ffmpeg/trunk