aboutsummaryrefslogtreecommitdiff
path: root/ffmpeg.c
AgeCommit message (Collapse)Author
2007-05-23-sws_flags command line option to set swscaler flagsIvo van Poorten
Originally committed as revision 9109 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-21Do not try to set a video standard unless "-tvstd" is specifiedLuca Abeni
Originally committed as revision 9088 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-09make help message go to standard output instead of standard errorNicolas George
patch by Nicolas George \ nicolas george normalesup org / Originally committed as revision 8947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-25add a vstats_file command line optionStefano Sabatini
patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 8810 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-25Revert my two previous deliveries (back to r8806) to aply the good patch for ↵Benoit Fouet
vstats Originally committed as revision 8809 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-25to complete r8807: free vstats resourcesBenoit Fouet
Originally committed as revision 8808 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-25add a vstats_file command line optionStefano Sabatini
patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 8807 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-04-14fix overhead and bitrate statisticsMichael Niedermayer
Originally committed as revision 8732 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-31print error messageBaptiste Coudurier
Originally committed as revision 8569 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-30change -fs to use bytes instead of kbytesBaptiste Coudurier
Originally committed as revision 8556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-30change -fs option to use OPT_INT64Baptiste Coudurier
Originally committed as revision 8555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-291000l, revert r8547, im too stupidBaptiste Coudurier
Originally committed as revision 8548 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-29typo, fix -fsBaptiste Coudurier
Originally committed as revision 8547 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-29Change the vhook code to send real timestamps to the filters instead of theBobby Bingham
current time of day, which is useless, and which the filters could just as easily query for themselves. patch by Bobby Bingham, uhmmmm gmail com Originally committed as revision 8541 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-28fix decoding of big audio packets (48k 16bit 2 channels), needed size is ↵Baptiste Coudurier
related to samples which is short * while len passed to decode_audio2 is related to pkt->data which is uint8_t * Originally committed as revision 8537 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-27prevent exit missuseMichael Niedermayer
Originally committed as revision 8536 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-16add fps stats, patch by Limin Wang <lance lmwang at gmail com>Limin Wang
Originally committed as revision 8422 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-12Remove superfluous HAVE_THREADS #ifdef.Ramiro Polla
patch by Ramiro Polla, angustia arrozcru.no-ip org Originally committed as revision 8348 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-12Remove superfluous header include.Diego Biurrun
Originally committed as revision 8341 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-12cosmetics: Fix indentation, patch by Limin Wang, lance.lmwang gmail com.Limin Wang
Originally committed as revision 8340 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-12Introduce two new logging functions av_hex_dump_log() and av_pkt_dump_log()Panagiotis Issaris
which use av_log() for logging instead of fprintf(). Originally committed as revision 8339 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-12add message saying that pgmyuv format is deprecatedBaptiste Coudurier
Originally committed as revision 8336 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-09remove unused code, patch by Limin Wang <lance lmwang at gmail com>Limin Wang
Originally committed as revision 8304 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07Remove unnecessary the_end label.Limin Wang
patch by Limin Wang, lance.lmwang gmail com Originally committed as revision 8287 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07set defaults based on CodecType by using avcodec_get_context_defaults2()Michael Niedermayer
Originally committed as revision 8285 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07remove unused variablesLimin Wang
patch by Limin Wang % lance P lmwang A gmail P com % Original thread: Subj: [Ffmpeg-devel] [PATCH] remove unused variables Date: 2007-03-07-07:37 AM Originally committed as revision 8284 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07only store command line parameters in contexts with matching codec_typeMichael Niedermayer
Originally committed as revision 8282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-07typo: unkown->unknownAlex Beregszaszi
Originally committed as revision 8274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05free opt_names at the end of main() based on a patch by Limin WangMichael Niedermayer
Originally committed as revision 8268 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05indentionMichael Niedermayer
Originally committed as revision 8267 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05remove usless if() before av_free()Michael Niedermayer
Originally committed as revision 8266 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05change management of "ab" option in ffmpeg.c, so that it works as "b" option.Benoit Fouet
patch by Benoit Fouet % benoit P fouet A purplelabs P com % Original thread: Subj: [Ffmpeg-devel] [PATCH] use new way to handle "ab" option Date: 03/03/2007 10:51 PM Originally committed as revision 8244 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-04Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"Panagiotis Issaris
to "picture" as suggested by Baptiste Coudurier. Originally committed as revision 8220 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-01remove ps option and rename rtp_payload_size AVOption to psBaptiste Coudurier
Originally committed as revision 8172 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-01duplicate *_opts for every codec types, in order to have the "ab" and "b" ↵Benoit Fouet
options work in the same manner patch by Benoit Fouet %benoit P fouet A purplelabs P com% Orginal thread: Date: Feb 22, 2007 11:15 AM Subject: [Ffmpeg-devel] [PATCH] ffmpeg.c duplicate *_opts for every codec types Originally committed as revision 8169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-28Do not jump to "fail" without having a proper sws context in img_resample_ctxLuca Abeni
(avoid calling sws_freeContext(NULL)) Originally committed as revision 8162 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-25Add av_ prefix to clip functionsReimar Döffinger
Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-20Move the aframes option from the video "subsection" to theBenoit Fouet
audio "subsection". Patch by Benoit Fouet, benoit fouet % purplelabs com. Originally committed as revision 8037 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-14implement new grabbing interface, as described here:Ramiro Polla
ttp://thread.gmane.org/gmane.comp.video.ffmpeg.devel/42920 patch by Ramiro Polla % ramiro A lisha P ufsc P br % Original thread: Date: Jan 31, 2007 8:56 PM Subject: [Ffmpeg-devel] [PATCH] New grabbing interface Originally committed as revision 7983 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-13rename POWERPC_PERFORMANCE_REPORT to CONFIG_POWERPC_PERFMåns Rullgård
Originally committed as revision 7968 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-13This fixes error handling for BeOS, removing the need for some ifdefs.François Revol
AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-09Print error message instead of crashing when combining -vcodec copy and -vhook.Matthijs Douze
patch by Matthijs Douze, Matthijs.Douze inrialpes fr Originally committed as revision 7901 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-09happy new yearDiego Biurrun
Originally committed as revision 7895 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-08Directly access av_log_level instead of calling av_log_{set, get}_level()Luca Abeni
(which will be removed at the next avutil version increment) Originally committed as revision 7882 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-05Force stereo in target vcd.Michel Bardiaux
Patch by Michel Bardiaux, mbardiaux mediaxim be. Originally committed as revision 7826 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-01use avcodec_decode_audio2()Michael Niedermayer
Originally committed as revision 7792 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-25do not force output audio channelsBaptiste Coudurier
Originally committed as revision 7705 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-23AVOption is now const, removes a few warningsBaptiste Coudurier
Originally committed as revision 7662 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-22do not override rc_buffer_occupancy if setBaptiste Coudurier
Originally committed as revision 7641 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-13Segmentation fault fix when no video device is specified.Ramiro Polla
patch by Ramiro Polla % ramiro A lisha P ufsc P br % Originally committed as revision 7445 to svn://svn.ffmpeg.org/ffmpeg/trunk