aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the "bug" OptionDef used for setting the workaround_bugs variable.Panagiotis Issaris2006-09-201-10/+0
| | | | Originally committed as revision 6300 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "qsquish" OptionDef. The AVOption min/max value is changed to matchPanagiotis Issaris2006-09-201-13/+0
| | | | | | the removed range check in ffmpeg.c. Originally committed as revision 6299 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "qmax" OptionDef.Panagiotis Issaris2006-09-201-13/+0
| | | | Originally committed as revision 6298 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "qmin" OptionDef.Panagiotis Issaris2006-09-201-13/+0
| | | | Originally committed as revision 6297 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "bf" OptionDef parameter so the equally named AVOption will takePanagiotis Issaris2006-09-201-15/+0
| | | | | | | over. Move over ffmpeg.c constraint checking, but allow value of zero to disable B-frame. Originally committed as revision 6296 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Migrate the "packetsize" OptionDef option to become an AVOption.Panagiotis Issaris2006-09-201-6/+3
| | | | Originally committed as revision 6293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Migrate the "muxrate" OptionDef option to become an AVOption.Panagiotis Issaris2006-09-201-5/+2
| | | | Originally committed as revision 6292 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "bufsize" OptionDef option from ffmpeg.c. The equally named "bufsize"Panagiotis Issaris2006-09-181-13/+4
| | | | | | | AVOption takes over its function with a change in unit from kilobytes to bits. Postfix "KiB" is available to ease the discomfort. Originally committed as revision 6288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "rc_init_cplx" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-8/+0
| | | | | | "rc_init_cplx" AVOption takes over its function and this occurs transparantly. Originally committed as revision 6277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "bt" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-8/+0
| | | | | | | "bt" AVOption takes over its function although the parameter unit has changed from kilobits/sec to bits/sec. Originally committed as revision 6276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "i_qfactor" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-7/+0
| | | | | | "i_qfactor" AVOption takes over its function and this occurs transparantly. Originally committed as revision 6275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "me_range" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-8/+0
| | | | | | "me_range" AVOption takes over its function and this occurs transparantly. Originally committed as revision 6273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "i_qoffset" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-7/+0
| | | | | | "i_qoffset" AVOption takes over its function and this occurs transparantly. Originally committed as revision 6271 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "b_qoffset" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-7/+0
| | | | | | "b_qoffset" AVOption takes over its function and this occurs transparantly. Originally committed as revision 6270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "b_qfactor" OptionDef option from ffmpeg.c. The equally namedPanagiotis Issaris2006-09-151-7/+0
| | | | | | "b_qfactor" AVOption takes over its function and this occurs transparantly. Originally committed as revision 6269 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix usage of b_quant_factor. It was not possible to actually use the b_qfactorPanagiotis Issaris2006-09-151-4/+1
| | | | | | | option, as b_quant_factor always got fixed to 2.0 (in any case when it actually mattered, namely when B-frames were being used). Originally committed as revision 6268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "qcomp" OptionDef option from ffmpeg.c. The equally named "qcomp"Panagiotis Issaris2006-09-151-8/+0
| | | | | | AVOption takes over its function and this occurs transparantly. Originally committed as revision 6267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "qblur" OptionDef option from ffmpeg.c. The equally named "qblur"Panagiotis Issaris2006-09-151-8/+0
| | | | | | AVOption takes over its function and this occurs transparantly. Originally committed as revision 6266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "pbias" OptionDef option from ffmpeg.c. The equally named "pbias"Panagiotis Issaris2006-09-151-8/+0
| | | | | | AVOption takes over its function and this occurs transparantly. Originally committed as revision 6265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "ibias" OptionDef option from ffmpeg.c. The equally named "ibias"Panagiotis Issaris2006-09-151-7/+0
| | | | | | AVOption takes over its function and this occurs transparantly. Originally committed as revision 6264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "preme" OptionDef option from ffmpeg.cPanagiotis Issaris2006-09-151-9/+0
| | | | Originally committed as revision 6263 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the GOP "g" OptionDef option from ffmpeg.c .Panagiotis Issaris2006-09-151-13/+4
| | | | Originally committed as revision 6262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "maxrate" and "minrate" OptionDef options from ffmpeg.c. ThisPanagiotis Issaris2006-09-151-22/+6
| | | | | | | requires some modifications to the manpage, as now the unit of -b is bits/sec not kbits/sec. Originally committed as revision 6261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the "b" OptionDef option from the ffmpeg.c file. From now on the unit ofPanagiotis Issaris2006-09-151-11/+3
| | | | | | | -b of ffmpeg is bits/sec not kbits/sec, as already was the case for the AVOption. "k" and "M" suffixes are available though. Originally committed as revision 6258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enables AVOption for muxing.Panagiotis Issaris2006-09-081-1/+8
| | | | | | | | | Patch by Takis Original thread: Date: Sep 8, 2006 10:58 AM Subject: [Ffmpeg-devel] [PATCH] Enable AVOption for muxers Originally committed as revision 6197 to svn://svn.ffmpeg.org/ffmpeg/trunk
* adds support for setting that album tag.Panagiotis Issaris2006-09-071-0/+4
| | | | | | | | | Patch by takis P issaris A uhasselt P be Original thread: [PATCH] Allow setting album tag Date: Sept 06 2006 16:39 Originally committed as revision 6187 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ignore index parameter to ignore the ODML index in aviMichael Niedermayer2006-09-051-5/+0
| | | | Originally committed as revision 6177 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarified API for numbered sequences, patch by Michel Bardiaux % mbardiaux A ↵Michel Bardiaux2006-09-041-1/+1
| | | | | | | | | | 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
* Fix linking when the FFM muxer/demuxer is disabled.Panagiotis Issaris2006-08-311-0/+4
| | | | | | patch by Panagiotis Issaris, takis.issaris _at_ uhasselt -dot- be Originally committed as revision 6136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initial support for AVOption in AVFormatContextNico Sabbi2006-08-271-0/+14
| | | | Originally committed as revision 6108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid segfaulting if the swscale context cannot be allocatedLuca Abeni2006-08-051-0/+4
| | | | Originally committed as revision 5936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix "-aspect" when "-pad*" is usedLuca Abeni2006-08-051-1/+1
| | | | Originally committed as revision 5935 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ffmpeg.c to the swscale interfaceLuca Abeni2006-08-021-66/+23
| | | | Originally committed as revision 5891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add loop_input to AVFormatContext, getting rid of old hackVíctor Paesa2006-07-131-1/+3
| | | | | | patch by Víctor Paesa <wzrlpy at arsystel com> Originally committed as revision 5729 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CONFIG_WIN32 implies MinGW and Cygwin and possibly more, so use justDiego Biurrun2006-07-111-5/+5
| | | | | | CONFIG_MINGW or __MINGW32__ instead. Originally committed as revision 5718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVBitStreamFilter (some thingy which can modify the bitstream like add or ↵Michael Niedermayer2006-07-061-7/+78
| | | | | | remove global headers or change the headers or ...) Originally committed as revision 5643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-06-241-4/+2
| | | | Originally committed as revision 5513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CODEC_CAP_SMALL_LAST_FRAME patch by Justin Ruggles jruggle earthlink netJustin Ruggles2006-06-241-1/+18
| | | | Originally committed as revision 5512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use Subversion revision for FFMPEG_VERSION.Diego Biurrun2006-06-201-0/+1
| | | | | | based on a patch by Ismail Dönmez ismail$$at$$pardus$$dot$$org$$dot$$tr Originally committed as revision 5502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const to (mostly) char* and make some functions static, which aren't usedStefan Huehner2006-06-181-4/+4
| | | | | | | outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org Originally committed as revision 5497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Snow 1pass ratecontrolLoren Merritt2006-05-281-2/+2
| | | | Originally committed as revision 5416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix cropping & padding when capturing from a v4l(2) cardLuca Abeni2006-05-161-0/+4
| | | | Originally committed as revision 5385 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify the code used for assigning video_resample, video_crop, & video_padLuca Abeni2006-04-201-43/+19
| | | | Originally committed as revision 5306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetic patch: fix indentation (broken by previous cropping / paddingLuca Abeni2006-04-101-19/+19
| | | | | | patch) Originally committed as revision 5280 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make cropping, padding, and rescaling independent (after this patch,Luca Abeni2006-04-101-38/+48
| | | | | | the cropping / padding code in img_resample() is not needed anymore) Originally committed as revision 5279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Baptiste COUDURIER's padding patch (reworked by me a little bit).Luca Abeni2006-04-101-87/+12
| | | | | | Moves padding code to imgconvert.c, and enables padding colorspaces != YUV420P. Originally committed as revision 5278 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixing -target *dv issues with not setting pix_fmt and adding dv50 targetRoman Shaposhnik2006-03-301-2/+4
| | | | Originally committed as revision 5244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change img_convert() from img_fmt to img_fmt with img_copy()Luca Abeni2006-03-291-7/+1
| | | | Originally committed as revision 5236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make the delta magnitude a user specifyable parameter:Harikrishnan Varma2006-03-151-1/+3
| | | | | | | | | | | -dts_delta_threshold. patch by Harikrishnan Varma < hvarma AH divxcorp POIS com > Original thread: Date: Mar 14, 2006 1:13 AM Subject: [Ffmpeg-devel] Audio-video sync problem when transcoding to xvid in AVI Originally committed as revision 5166 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix cropping, depending on enc pix fmtBaptiste Coudurier2006-03-101-14/+4
| | | | Originally committed as revision 5134 to svn://svn.ffmpeg.org/ffmpeg/trunk