summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
* * fix for integer overflowRoman Shaposhnik2003-09-22
| | | | Originally committed as revision 2297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid initializing pts for not decoded streamsFabrice Bellard2003-09-16
| | | | Originally committed as revision 2284 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplified version handlingFabrice Bellard2003-09-11
| | | | Originally committed as revision 2264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mov/mp4 muxer cleanup (mostly cosmetics/simplifications & global header fix)Michael Niedermayer2003-09-09
| | | | Originally committed as revision 2249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* header fixes - removed MPEG-4 b frame limtation in helpFabrice Bellard2003-09-08
| | | | Originally committed as revision 2233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2003-09-03
| | | | Originally committed as revision 2202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vhook patch by (Charles Yates <charles dot yates at pandora dot be>)Charles Yates2003-09-03
| | | | Originally committed as revision 2201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* quiet/verbose patch by (Bill Eldridge <bill at rfa dot org>)Bill Eldridge2003-09-03
| | | | Originally committed as revision 2200 to svn://svn.ffmpeg.org/ffmpeg/trunk
* win32 received_sigterm patch by (Bill Eldridge <bill at rfa dot org>)Bill Eldridge2003-09-02
| | | | Originally committed as revision 2199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stdin patch by (Charles Yates <charles dot yates at pandora dot be>)Charles Yates2003-08-29
| | | | | | | | | | | | * removes use of read_key and getchar when input is received on stdin (this was corrupting the packet reading) * terminates av_encode when a termination signal is received (use of ctrl-c issued a term_exit and subsequent uses of q failed) * specific correction to yuv4mpeg pipe reading - the defined header was too short to allow for extended yuv4mpeg flags [as used by smil2yuv and y4mscaler and accepted by mjpeg tools] Originally committed as revision 2183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * making resolution abbreviations rightRoman Shaposhnik2003-08-29
| | | | | | * introducing sntsc/spal for square pixel ntsc/pal Originally committed as revision 2177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added loop optionFabrice Bellard2003-08-24
| | | | Originally committed as revision 2150 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spell fixesFabrice Bellard2003-08-24
| | | | Originally committed as revision 2146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more sections in help - copyright fixesFabrice Bellard2003-08-24
| | | | Originally committed as revision 2143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AC3 encoding patch ba (Ross Martin <ffmpeg at ross dot interwrx dot com>)Michael Niedermayer2003-08-20
| | | | Originally committed as revision 2129 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed MAXINT64Fabrice Bellard2003-08-08
| | | | Originally committed as revision 2114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* A/V sync patch from Gildas Bazin.Roman Shaposhnik2003-07-30
| | | | Originally committed as revision 2098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rate distortion mb decision supportMichael Niedermayer2003-07-29
| | | | | | | fix decoding of old %16!=0 divx fix assertion failure in motion_est.c Originally committed as revision 2094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * First round of AV sync fixes.Roman Shaposhnik2003-07-12
| | | | | | | | * -r now does the right thing. * frame rate and frame sizes now share same abbv. table and you can do -r ntsc as well as -s ntsc Originally committed as revision 2035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1) remove TBL support in PPC performance. It's much more useful to use theRomain Dolbeau2003-07-09
| | | | | | | | | | PMCs, and with Apple's CHUD it's fairly easy too. No reason to keep useless code around 2) make the PPC perf stuff a configure option 3) make put_pixels16_altivec a bit faster by unrolling the loop by 4 patch by (Romain Dolbeau <dolbeau at irisa dot fr>) Originally committed as revision 2022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l found by Curi Fabio Eduardo (SFL) <curif@TELEFONICA.COM.AR>Alex Beregszaszi2003-07-03
| | | | Originally committed as revision 2002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tv standard selection support for dv1394 and grab (v4l)Alex Beregszaszi2003-06-25
| | | | Originally committed as revision 1987 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added ffplay utilityFabrice Bellard2003-06-07
| | | | Originally committed as revision 1936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warning fixes.Falk Hüffner2003-05-15
| | | | Originally committed as revision 1884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2003-05-14
| | | | Originally committed as revision 1882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * introducing new public interface in imgconvert.cRoman Shaposhnik2003-05-07
| | | | | | | | | | | | | | | | | | | | | | + avcodec_get_pix_fmt converts textual representation of pixel format into the actual id. Complements avcodec_get_pix_fmt_name. + avpicture_layout serializes given picture into a flat array. Complements avpicture_fill. * adding a new option -pix_fmt to the ffmpeg, in order to control pixel format for the codecs that do support it, like rawvideo, for example. * reducing complexity of the rawvideo codec by splitting it in two and making it more reliable via hooking up to the avpicture_layout. Plus adding new FourCC as described here: http://www.fourcc.org * A tiny fix for avienc.c that makes avih and video strf consistent regarding codec FourCC. Originally committed as revision 1842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -map and sanity checking patch by (Brian Foley <bfoley at compsoc dot ↵Brian Foley2003-05-05
| | | | | | nuigalway dot ie>) Originally committed as revision 1835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * making it possible to override aspect ratio from the command lineRoman Shaposhnik2003-04-29
| | | | Originally committed as revision 1828 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixing NTSC frame rate for DV streamsRoman Shaposhnik2003-04-29
| | | | | | | * let ffmpeg preserve 'aspect_ratio' for recoding. Do we want to make it tweakable from the command line ? Originally committed as revision 1827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Complete support for OpenDML AVIs and AVIs > 2Gb.Roman Shaposhnik2003-04-23
| | | | Originally committed as revision 1814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* restore old tty in ffmpeg patch by (Roumen Petrov <ffmpeg at roumenpetrov ↵Roumen Petrov2003-04-10
| | | | | | dot info>) Originally committed as revision 1750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* H264 decoder & demuxerMichael Niedermayer2003-04-04
| | | | Originally committed as revision 1732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2003-03-20
| | | | Originally committed as revision 1696 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MacOS X stack overflow? patch by (Sylvain Corré <sylvain dot corre at ↵Sylvain Corré2003-03-20
| | | | | | wanadoo.fr>) Originally committed as revision 1694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rawvideo patch by (Fred Rothganger <rothgang at uiuc dot edu>)Fred Rothganger2003-03-16
| | | | Originally committed as revision 1687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cleaner support for usleep()François Revol2003-03-12
| | | | 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-12
| | | | | | sync issues Originally committed as revision 1666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* restoring OS/2 compatibility patch by ("Slavik Gnatenko" <miracle9 at ↵Slavik Gnatenko2003-03-11
| | | | | | newmail dot ru>) Originally committed as revision 1663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifiedAlex Beregszaszi2003-03-09
| | | | Originally committed as revision 1655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Frame rate emulation patch by (Max Krasnyansky <maxk at qualcomm dot com>)Max Krasnyansky2003-03-07
| | | | Originally committed as revision 1641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* extended option for h263+ patch by (fixounet at free dot fr) with some minor ↵Michael Niedermayer2003-03-05
| | | | | | modifications Originally committed as revision 1622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MpegEncContext.(i)dct_* -> DspContext.(i)dct_*Michael Niedermayer2003-03-03
| | | | | | bitexact cleanup Originally committed as revision 1617 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix for legacy audioFrançois Revol2003-02-12
| | | | Originally committed as revision 1583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * UINTX -> uintx_t INTX -> intx_tZdenek Kabelac2003-02-11
| | | | Originally committed as revision 1578 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * static,const,compiler warning cleanupZdenek Kabelac2003-02-10
| | | | Originally committed as revision 1571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix for using ffplay without specifying the audio deviceFrançois Revol2003-02-08
| | | | Originally committed as revision 1555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mpeg1 bframe encoding patch by (Raphaël LEGRAND) with some modifications by meMichael Niedermayer2003-02-08
| | | | Originally committed as revision 1551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Audio support for DV1394 by Max KrasnyanskyFabrice Bellard2003-01-27
| | | | Originally committed as revision 1516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_strdup()Fabrice Bellard2003-01-23
| | | | Originally committed as revision 1507 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_realloc()Fabrice Bellard2003-01-23
| | | | Originally committed as revision 1504 to svn://svn.ffmpeg.org/ffmpeg/trunk