summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
...
* replace calls to deprecated parsing functions to calls to new onesStefano Sabatini2007-06-18
| | | | | | patch by Stefano Sabatini: [stefano sabatini-lala poste it] Originally committed as revision 9359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move HAVE_AV_CONFIG_H definition to the Makefile like in the rest of FFmpeg.Diego Biurrun2007-06-10
| | | | Originally committed as revision 9273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for listing the supported pixel formats using the optionStefano Sabatini2007-05-30
| | | | | | | | | -pix_fmt list patch by Stefano Sabatini stefano sabatini minus lala chez poste it original thread: [FFmpeg-devel] [PATCH] List supported pixel formats date: 05/25/2007 05:46 PM Originally committed as revision 9162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2007-05-30
| | | | Originally committed as revision 9161 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use if(ENABLE_SWSCALER) instead of #ifdef CONFIG_SWSCALERAurelien Jacobs2007-05-30
| | | | Originally committed as revision 9160 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -sws_flags command line option to set swscaler flagsIvo van Poorten2007-05-23
| | | | Originally committed as revision 9109 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not try to set a video standard unless "-tvstd" is specifiedLuca Abeni2007-05-21
| | | | Originally committed as revision 9088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make help message go to standard output instead of standard errorNicolas George2007-05-09
| | | | | | patch by Nicolas George \ nicolas george normalesup org / Originally committed as revision 8947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a vstats_file command line optionStefano Sabatini2007-04-25
| | | | | | patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 8810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert my two previous deliveries (back to r8806) to aply the good patch for ↵Benoit Fouet2007-04-25
| | | | | | vstats Originally committed as revision 8809 to svn://svn.ffmpeg.org/ffmpeg/trunk
* to complete r8807: free vstats resourcesBenoit Fouet2007-04-25
| | | | Originally committed as revision 8808 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a vstats_file command line optionStefano Sabatini2007-04-25
| | | | | | patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 8807 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix overhead and bitrate statisticsMichael Niedermayer2007-04-14
| | | | Originally committed as revision 8732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print error messageBaptiste Coudurier2007-03-31
| | | | Originally committed as revision 8569 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change -fs to use bytes instead of kbytesBaptiste Coudurier2007-03-30
| | | | Originally committed as revision 8556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change -fs option to use OPT_INT64Baptiste Coudurier2007-03-30
| | | | Originally committed as revision 8555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 1000l, revert r8547, im too stupidBaptiste Coudurier2007-03-29
| | | | Originally committed as revision 8548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo, fix -fsBaptiste Coudurier2007-03-29
| | | | Originally committed as revision 8547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change the vhook code to send real timestamps to the filters instead of theBobby Bingham2007-03-29
| | | | | | | | 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
* fix decoding of big audio packets (48k 16bit 2 channels), needed size is ↵Baptiste Coudurier2007-03-28
| | | | | | 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
* prevent exit missuseMichael Niedermayer2007-03-27
| | | | Originally committed as revision 8536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add fps stats, patch by Limin Wang <lance lmwang at gmail com>Limin Wang2007-03-16
| | | | Originally committed as revision 8422 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous HAVE_THREADS #ifdef.Ramiro Polla2007-03-12
| | | | | | patch by Ramiro Polla, angustia arrozcru.no-ip org Originally committed as revision 8348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous header include.Diego Biurrun2007-03-12
| | | | Originally committed as revision 8341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix indentation, patch by Limin Wang, lance.lmwang gmail com.Limin Wang2007-03-12
| | | | Originally committed as revision 8340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce two new logging functions av_hex_dump_log() and av_pkt_dump_log()Panagiotis Issaris2007-03-12
| | | | | | which use av_log() for logging instead of fprintf(). Originally committed as revision 8339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add message saying that pgmyuv format is deprecatedBaptiste Coudurier2007-03-12
| | | | Originally committed as revision 8336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused code, patch by Limin Wang <lance lmwang at gmail com>Limin Wang2007-03-09
| | | | Originally committed as revision 8304 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary the_end label.Limin Wang2007-03-07
| | | | | | patch by Limin Wang, lance.lmwang gmail com Originally committed as revision 8287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set defaults based on CodecType by using avcodec_get_context_defaults2()Michael Niedermayer2007-03-07
| | | | Originally committed as revision 8285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused variablesLimin Wang2007-03-07
| | | | | | | | | 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
* only store command line parameters in contexts with matching codec_typeMichael Niedermayer2007-03-07
| | | | Originally committed as revision 8282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: unkown->unknownAlex Beregszaszi2007-03-07
| | | | Originally committed as revision 8274 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free opt_names at the end of main() based on a patch by Limin WangMichael Niedermayer2007-03-05
| | | | Originally committed as revision 8268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentionMichael Niedermayer2007-03-05
| | | | Originally committed as revision 8267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove usless if() before av_free()Michael Niedermayer2007-03-05
| | | | Originally committed as revision 8266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* change management of "ab" option in ffmpeg.c, so that it works as "b" option.Benoit Fouet2007-03-05
| | | | | | | | | 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
* Add the prefix "av_" to img_crop(), img_copy() and img_pad(), and rename "img"Panagiotis Issaris2007-03-04
| | | | | | to "picture" as suggested by Baptiste Coudurier. Originally committed as revision 8220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ps option and rename rtp_payload_size AVOption to psBaptiste Coudurier2007-03-01
| | | | Originally committed as revision 8172 to svn://svn.ffmpeg.org/ffmpeg/trunk
* duplicate *_opts for every codec types, in order to have the "ab" and "b" ↵Benoit Fouet2007-03-01
| | | | | | | | | | | 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
* Do not jump to "fail" without having a proper sws context in img_resample_ctxLuca Abeni2007-02-28
| | | | | | (avoid calling sws_freeContext(NULL)) Originally committed as revision 8162 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to clip functionsReimar Döffinger2007-02-25
| | | | Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move the aframes option from the video "subsection" to theBenoit Fouet2007-02-20
| | | | | | | audio "subsection". Patch by Benoit Fouet, benoit fouet % purplelabs com. Originally committed as revision 8037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* implement new grabbing interface, as described here:Ramiro Polla2007-02-14
| | | | | | | | | | 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
* rename POWERPC_PERFORMANCE_REPORT to CONFIG_POWERPC_PERFMåns Rullgård2007-02-13
| | | | Originally committed as revision 7968 to svn://svn.ffmpeg.org/ffmpeg/trunk
* This fixes error handling for BeOS, removing the need for some ifdefs.François Revol2007-02-13
| | | | | | | | | 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
* Print error message instead of crashing when combining -vcodec copy and -vhook.Matthijs Douze2007-02-09
| | | | | | patch by Matthijs Douze, Matthijs.Douze inrialpes fr Originally committed as revision 7901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* happy new yearDiego Biurrun2007-02-09
| | | | Originally committed as revision 7895 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly access av_log_level instead of calling av_log_{set, get}_level()Luca Abeni2007-02-08
| | | | | | (which will be removed at the next avutil version increment) Originally committed as revision 7882 to svn://svn.ffmpeg.org/ffmpeg/trunk