summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
...
* Limit discontinuity handling to containers that allow discontinuities.Michael Niedermayer2008-10-09
| | | | Originally committed as revision 15590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationAurelien Jacobs2008-10-08
| | | | Originally committed as revision 15588 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lookup AVCodec by nameAurelien Jacobs2008-10-08
| | | | Originally committed as revision 15587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused and invalid code from ffmpeg.c.Stefano Sabatini2008-10-05
| | | | Originally committed as revision 15567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Uniformly define _XOPEN_SOURCE to 600.Diego Biurrun2008-09-29
| | | | | | | | | The feature_tests.h header from Sun systems (Solaris/OpenSolaris) will abort the build if _XOPEN_SOURCE is defined to 500, and C99 is requested (as well as POSIX.1-2001), and will only accept it to be defined to 600. inspired by a patch from Diego Pettenò, flameeyes gmail com Originally committed as revision 15460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently use #ifdef in preprocessor directives.Diego Biurrun2008-09-29
| | | | Originally committed as revision 15459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set video_enc->sample_aspect_ratio to fix stream copyWolfram Gloger2008-09-28
| | | | | | patch by Wolfram Gloger wmglo _at_ dent.med.uni-muenchen _dot_ de Originally committed as revision 15457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move opt_default() and set_context_opts() to cmdutils so it can be used fromMichael Niedermayer2008-09-28
| | | | | | the other tools as well. Originally committed as revision 15450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement the force_fps option, which disables the automatic selectionStefano Sabatini2008-09-28
| | | | | | | | | | | of the best framerate amongst the list of supported framerates of the codec. Use the av_find_nearest_q_idx() function to choose the best framerate. See the thread: "Implement in lavc a flag which makes avcodec_open() to choose the best framerate". Originally committed as revision 15445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support loading presets from random paths.Michael Niedermayer2008-09-28
| | | | | | Fixes issue659. Originally committed as revision 15443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* include sys/select.h, fix freebsd 5.5 compilationBaptiste Coudurier2008-09-26
| | | | Originally committed as revision 15421 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support comments in preset files.Michael Niedermayer2008-09-18
| | | | Originally committed as revision 15366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix setting default value of scan_offset option for target svcd.Gert Vervoort2008-09-13
| | | | | | Patch by Gert Vervoort gert D vervoort A hccnet D nl Originally committed as revision 15310 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add -xerror option, ffmpeg will now exit right when an error occursBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print error when deinterlacing failsBaptiste Coudurier2008-09-04
| | | | Originally committed as revision 15201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove further 1sample=2byte assumptions within FFmpeg to allowPeter Ross2008-09-04
| | | | | | F32LE/F64BE/F64LE audio to be encoded properly. Originally committed as revision 15192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Display error message when user attempts to resample non-S16 audio formats.Peter Ross2008-08-31
| | | | | | Patch supplied by Daniel Serpell <daniel dot serpell at gmail dotcom>. Originally committed as revision 15119 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify the indexing logic in the av_encode() streams mapping code.Stefano Sabatini2008-08-27
| | | | Originally committed as revision 14992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export sample_aspect_ratio read by the demuxer in a separate fieldAurelien Jacobs2008-08-23
| | | | | | that the one read by the decoder. Originally committed as revision 14932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a context to opt_frame_rate(), and make it print the wrongStefano Sabatini2008-08-23
| | | | | | | value in case of error. Improve error reporting and consistency with the other opt_* functions. Originally committed as revision 14914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace invocations of av_fifo_realloc(), which is going to beStefano Sabatini2008-08-19
| | | | | | deprecated, with corresponding invocations of av_fifo_realloc2(). Originally committed as revision 14848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ensure we get explicit definition of various _XOPEN_SOURCE functions we useAurelien Jacobs2008-08-14
| | | | Originally committed as revision 14766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* align the audio decoding buffer, since some codecs write to it with simdLoren Merritt2008-08-12
| | | | Originally committed as revision 14707 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase the maximum number of supported stream mappings in ffmpeg.c.Stefano Sabatini2008-08-03
| | | | | | | The new value is given by maximum_files_nb * maximum_streams_per_file_nb, which looks also more correct in respect to the previous value. Originally committed as revision 14520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sample format converter to FFmpeg (adds -sample_fmt option)Peter Ross2008-08-03
| | | | Originally committed as revision 14512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add opt handler for pending "-sample_fmt" optionPeter Ross2008-07-31
| | | | Originally committed as revision 14486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg dump output format in case of codec type mismatch betweenStefano Sabatini2008-07-28
| | | | | | an input stream and the corresponding output stream. Originally committed as revision 14462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add CODEC_ID_PCM_F32BE (32-bit floating point PCM big endian decoder)Peter Ross2008-07-26
| | | | Originally committed as revision 14409 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo fixesDiego Biurrun2008-07-24
| | | | Originally committed as revision 14376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit strict_std_compliance support as it seems to work fine overMichael Niedermayer2008-07-19
| | | | | | | AVOptions, actually it works even finer as it also gets passed to the decoder. Originally committed as revision 14307 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg -t X with X<=0 transcode nothing.Stefano Sabatini2008-07-18
| | | | Originally committed as revision 14285 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correcting displayed muxing overhead and video stream size.Michael Niedermayer2008-07-18
| | | | | | Partially fixes issue348. Originally committed as revision 14282 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -itsscale to scale timestampsMichael Niedermayer2008-07-13
| | | | | | fixes issue511 Originally committed as revision 14226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop non-C99-compliant initialization.Diego Biurrun2008-07-13
| | | | Originally committed as revision 14224 to svn://svn.ffmpeg.org/ffmpeg/trunk
* On EOF keep calling the decoders until they do not output anythingMichael Niedermayer2008-07-13
| | | | | | anymore, instead of just once. Originally committed as revision 14220 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use -vsync 0 unless the user explicitly asked for somethingMichael Niedermayer2008-07-13
| | | | | | | else when the framerate is above 1000. Fixes issue259. Originally committed as revision 14208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent users from setting -vol and -acodec copy together.Ramiro Polla2008-07-12
| | | | | | They are incompatible since the frames are not decoded, so they can't be preprocessed. Originally committed as revision 14178 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-07-09
| | | | Originally committed as revision 14137 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow setting codecs through preset filesMichael Niedermayer2008-07-09
| | | | Originally committed as revision 14136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the av_set_string() free / alloc issue.Michael Niedermayer2008-07-08
| | | | Originally committed as revision 14134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Register intrrupt_cb() early enough so we dont get stuck with tcp inputMichael Niedermayer2008-06-26
| | | | | | | for example. Fixes issue66 Originally committed as revision 13992 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary function opt_qdiff(), max_qdiff is set now throughStefano Sabatini2008-06-25
| | | | | | | the AVOption system. Also removes the previous constraints when setting max_qdiff through opt_qdiff() (1 <= max_qdiff <= 31). Originally committed as revision 13981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use correct timestamp value for stream copy.Michael Niedermayer2008-06-25
| | | | Originally committed as revision 13963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: move ffmpeg.c dframes option definition from within theStefano Sabatini2008-06-22
| | | | | | video options to the generic options where it belongs. Originally committed as revision 13893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, reindentBaptiste Coudurier2008-06-22
| | | | Originally committed as revision 13869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable feeder threadsBaptiste Coudurier2008-06-22
| | | | Originally committed as revision 13868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: display ffmpeg -h generic advanced options just afterStefano Sabatini2008-06-17
| | | | | | generic non-advanced options. Originally committed as revision 13794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't show advanced subtitle options within the ffmpeg -h genericStefano Sabatini2008-06-16
| | | | | | advanced options. Originally committed as revision 13779 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't show subtitle and grab options within the ffmpeg -h generic options.Stefano Sabatini2008-06-16
| | | | Originally committed as revision 13778 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg.c use print_error() when it can't read an ffserver stream.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13761 to svn://svn.ffmpeg.org/ffmpeg/trunk