summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
* 10lMichael Niedermayer2002-12-20
| | | | Originally committed as revision 1345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mb qp limitsMichael Niedermayer2002-12-18
| | | | Originally committed as revision 1340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more debug outputMichael Niedermayer2002-12-17
| | | | Originally committed as revision 1338 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add the -em_rate option to make the img reader run at the nominal frame rate.Philip Gladstone2002-12-11
| | | | | | This is used for regression testing ffserver Originally committed as revision 1333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVVideoFrame -> AVFrameMichael Niedermayer2002-12-09
| | | | Originally committed as revision 1327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* crop optmization patch by (Dieter Shirley <dieters at schemasoft dot com>)Dieter2002-12-05
| | | | Originally committed as revision 1311 to svn://svn.ffmpeg.org/ffmpeg/trunk
* infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)Michael Niedermayer2002-12-05
| | | | Originally committed as revision 1310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new PSNR code (now works with chroma, b frames, ...)Michael Niedermayer2002-12-04
| | | | | | | rename *_TYPE to FF_*_TYPE for the external API allow user specified pict_type Originally committed as revision 1308 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2002-12-04
| | | | | | | | | | | adding AVVideoFrame moving quality, pict_type, key_frame, qscale_table, ... to AVVideoFrame removing obsolete variables in AVCodecContext skiping of MBs in b frames correctly initalizing AVCodecContext picture buffer cleanup Originally committed as revision 1302 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * two functions to handle allocation of static data more simpleZdenek Kabelac2002-12-03
| | | | | | | | | av_mallocz_static - called for every static data table av_free_static - called when ffmpeg is no longer needed and should free all static resources * simple usage shown in mpegaudiodec.c Originally committed as revision 1301 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fixed problem with frame rate reduction when capturing from a sourcePhilip Gladstone2002-12-02
| | | | | | | | whose PTS does not start at zero. New code will fix that if the PTS is more than 100 seconds from zero. This may well not be the right number, but it is a big improvement over the current state. Originally committed as revision 1297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Add frame rate conversion when there is no audio channel. This makesPhilip Gladstone2002-11-20
| | | | | | | | | | ffmpeg/ffserver work again when just capturing video from a live source and you are streaming feeds of different frame rates. * Fix a segfault in argument processing * Add handling for -vhook argument * Add logic to call video hooks if any have been specified. Originally committed as revision 1247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* '-' can be used for standard inputFabrice Bellard2002-11-19
| | | | Originally committed as revision 1232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixes the frame number counter for -vcodec copy patch by (mru at users dot ↵Måns Rullgård2002-11-08
| | | | | | sourceforge.net (Måns Rullgård)) Originally committed as revision 1176 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup (breaks compatibility, requested by fabrice)Michael Niedermayer2002-11-08
| | | | | | | | | | | remove CODEC_FLAG_NOT_TRUNCATED & add CODEC_FLAG_TRUNCATED add CODEC_CAP_TRUNCATED add alpha plane to AVPicture remove CODEC_ID_MSMPEG4 remove various unused stuff support "truncated" mpeg4 streams Originally committed as revision 1175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * use larger buffer - the size should be calculcated from the bitstreamZdenek Kabelac2002-11-05
| | | | | | | | data rate and outgoing samples (i.e. WMA could generate a lot of samples from 4096KB chunks) FIXME Originally committed as revision 1169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fix leak with output file closingZdenek Kabelac2002-11-05
| | | | Originally committed as revision 1166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* BeOS Audio ouput patch by (François Revol <revol at free dot fr>)François Revol2002-11-05
| | | | Originally committed as revision 1163 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added BeOS net_server support (R5 network stack), basically the sameFrançois Revol2002-11-02
| | | | | | | | problems as with winsock (sockets != fd), and the broken select(). based on older patch by Andrew Bachmann. patch by (François Revol <revol at free dot fr>) Originally committed as revision 1144 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -vcodec copy fix patch by (mru at users dot sourceforge dot net (Måns ↵Måns Rullgård2002-10-30
| | | | | | Rullgård)) Originally committed as revision 1114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing bitrate display if -acodec copy is used, patch by (Kareila <cokewench ↵Kareila2002-10-26
| | | | | | at yahoo dot com>) Originally committed as revision 1074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use new PTS api - corrected AV sync for transcoding - factorized ↵Fabrice Bellard2002-10-21
| | | | | | print_report() code Originally committed as revision 1059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing unused variables & adding missing optionsMichael Niedermayer2002-10-15
| | | | Originally committed as revision 1043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* suppressed vcd flag - use new mpeg mux format insteadFabrice Bellard2002-10-15
| | | | Originally committed as revision 1041 to svn://svn.ffmpeg.org/ffmpeg/trunk
* raw picture support in muxFabrice Bellard2002-10-14
| | | | Originally committed as revision 1035 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better/cleaner error resilience (done in a 2nd pass after decoding)Michael Niedermayer2002-10-13
| | | | | | h263/mpeg4 out of order slice decoding Originally committed as revision 1030 to svn://svn.ffmpeg.org/ffmpeg/trunk
* activated 'raw stream copy' feature (use -acodec copy or -vcodec copy)Fabrice Bellard2002-10-11
| | | | Originally committed as revision 1026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* added two pass support (same syntax as mencoder)Fabrice Bellard2002-10-10
| | | | Originally committed as revision 1020 to svn://svn.ffmpeg.org/ffmpeg/trunk
* idct permutation cleanup, idct can be selected per context nowMichael Niedermayer2002-09-29
| | | | | | fixing some threadunsafe code Originally committed as revision 980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* regression test for ratecontrol & adv mpeg4 stuffMichael Niedermayer2002-09-20
| | | | Originally committed as revision 962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing i_quant_factor, this should finally fix the bitrate bug with ffserver ↵Michael Niedermayer2002-09-19
| | | | | | hopefully Originally committed as revision 959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixingMichael Niedermayer2002-09-18
| | | | | | fixing max_rate/min_rate Originally committed as revision 951 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing rc of non-intra-only streams which only contain i framesMichael Niedermayer2002-09-16
| | | | Originally committed as revision 950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* error resilience command line optionMichael Niedermayer2002-09-12
| | | | Originally committed as revision 932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* croping patch by (talus25 at speakeasy dot net) with fixes from atmos & meMichael Niedermayer2002-09-01
| | | | Originally committed as revision 888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* using only the fast int dct for regression testsMichael Niedermayer2002-08-30
| | | | Originally committed as revision 884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cygwin patch by (Felix Buenemann <atmosfear at users dot sourceforge dot net>)Felix Bünemann2002-08-30
| | | | Originally committed as revision 883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new ratecontrol codeMichael Niedermayer2002-08-25
| | | | Originally committed as revision 862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* renamed gettime() av_gettime() - same for register_all()Fabrice Bellard2002-07-25
| | | | Originally committed as revision 808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -bug comand line option to workaround encoder bugs which cannot be detected ↵Michael Niedermayer2002-07-22
| | | | | | automatically Originally committed as revision 787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* nanosleep patch by François Revol <revol at free dot fr>François Revol2002-07-21
| | | | Originally committed as revision 784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change ticker_tick to use ticker_abs as we want the absolute numberPhilip Gladstone2002-06-17
| | | | | | of ticks. In particular we want an INT64 return. Originally committed as revision 693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Go faster stripes: don't check to see if the user presses 'q' if stdinPhilip Gladstone2002-05-30
| | | | | | | | | returns EOF -- e.g. it is connected to /dev/null * Make the 1MB video buffer only allocated once rather than on each frame. The allocation and deallocation causes significant performance loss as the kernel remaps the address space each time. Originally committed as revision 629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * Make video grabbing work again (if you are grabbing multiple streamsPhilip Gladstone2002-05-29
| | | | | | | at different frame rates). * Do the av_abort() change that is not otherwise worth checking in. Originally committed as revision 620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fixing stackoverflowMichael Niedermayer2002-05-27
| | | | Originally committed as revision 618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license/copyright change - fixed memory leaksFabrice Bellard2002-05-25
| | | | Originally committed as revision 587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* began to simplify code - use modified API for stream readingFabrice Bellard2002-05-20
| | | | Originally committed as revision 548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* oops - removed obsolete license draftFabrice Bellard2002-05-18
| | | | Originally committed as revision 534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av memory functionsFabrice Bellard2002-05-18
| | | | Originally committed as revision 531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* - Bug fix for AVStream->r_frame_rate not being initialized for live videoJuanjo2002-05-15
| | | | | | capture. Originally committed as revision 499 to svn://svn.ffmpeg.org/ffmpeg/trunk