summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
...
* 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
* Improve ffmpeg error reporting in case of input/output stream mismatch,Stefano Sabatini2008-06-12
| | | | | | enabling a dump_format() of the mismatched output stream. Originally committed as revision 13760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg.c:opt_thread use parse_number_or_die().Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13758 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize options context setting.Stefano Sabatini2008-06-12
| | | | | | Patch by Stefano Sabatini stefano sabatini-lala posteit Originally committed as revision 13756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enable stream copy with ffserver, to be able to chainBaptiste Coudurier2008-06-12
| | | | Originally committed as revision 13753 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set log debug when avformat debug is setBaptiste Coudurier2008-06-11
| | | | Originally committed as revision 13750 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ugly ffm_nopts hack, use AVFormatContext->timestampBaptiste Coudurier2008-06-09
| | | | Originally committed as revision 13718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support longer paths for and longer names in preset files.Michael Niedermayer2008-06-08
| | | | Originally committed as revision 13710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-06-08
| | | | Originally committed as revision 13709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Search /usr(/local)/share for preset files as well.Michael Niedermayer2008-06-08
| | | | | | This also fixed a null pointer dereference if HOME isnt set. Originally committed as revision 13708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Presets support.Michael Niedermayer2008-06-07
| | | | | | How per codec defaults and ranges will be supported is still being discussed. Originally committed as revision 13685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a few newlines to 'ffmpeg -h' output to make it more readable.Stefano Sabatini2008-05-31
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compiling ffmpeg.c fails when when the .ffm demuxer is enabled, but the .ffmPeter Ross2008-05-31
| | | | | | | | | muxer is disabled. The cause is an incorrect #ifdef that assumes that the ffm_nopts symbol (global define in ffmenc) is present when either ffm muxer OR demuxer is enabled. patch by Peter Ross, pross xvid org Originally committed as revision 13573 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove incorrect usage of av_free_static(), ffmpeg.c is not aMichael Niedermayer2008-05-30
| | | | | | windows dll which can be unloaded and loaded again. Originally committed as revision 13565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics, space before and after parenthesis, weird indentationBaptiste Coudurier2008-05-29
| | | | Originally committed as revision 13539 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary header #includes.Erik Hovland2008-05-29
| | | | | | Extracted from a patch by Erik Hovland, erik hovland org. Originally committed as revision 13531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify show_banner() so that it does not require arguments, similarStefano Sabatini2008-05-29
| | | | | | | to what was previously done with show_version(). patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Slightly clarify bitstream filter help output.Stefano Sabatini2008-05-28
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove coded_frame==NULL checks for video encoders.Michael Niedermayer2008-05-28
| | | | Originally committed as revision 13493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_fifo_generic_write, old func is deprecatedBaptiste Coudurier2008-05-27
| | | | Originally committed as revision 13455 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make stream copy of ac3 from riff based formats work.Michael Niedermayer2008-05-26
| | | | Originally committed as revision 13408 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that one can store X bytes in a fifo of size X.Michael Niedermayer2008-05-25
| | | | | | Fixed issue417. Originally committed as revision 13405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_fifo*_read() ignore the available amount of data.Michael Niedermayer2008-05-25
| | | | | | | | | | | | This is more efficient as in practice the check is redundant most of the time. Callers which do not know if enough data is available have to check it with av_fifo_size(). Doing the check in *read() means the caller has no choice to skip the check when its known to be redundant. Also the return value was never documented in a public header so changing it should not break the API. Besides this fixes the case where read() failed on a 100% full fifo. Originally committed as revision 13404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make opt_verbose() work again.Michael Niedermayer2008-05-25
| | | | Originally committed as revision 13403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move show_formats() to cmdutils.c.Stefano Sabatini2008-05-22
| | | | | | Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of more senseless wrapper functions and use OPT_EXIT instead.Michael Niedermayer2008-05-21
| | | | Originally committed as revision 13233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not pass program_name as argument to show_version(), this allows someMichael Niedermayer2008-05-21
| | | | | | future simplifications. Originally committed as revision 13232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* OPT_EXITMichael Niedermayer2008-05-21
| | | | Originally committed as revision 13231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print timestamp with increased precision.David Bolt2008-05-21
| | | | | | Patch by David Bolt Originally committed as revision 13217 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make 'ffmpeg -formats' print codec long names.Stefano Sabatini2008-05-13
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13142 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sys/resource.h needs sys/types.h on OS/2, patch by Dave Yeo, daveryeo telus netDave Yeo2008-05-11
| | | | Originally committed as revision 13116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for sys/resource.h and include it conditionally.Ramiro Polla2008-05-08
| | | | Originally committed as revision 13075 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark symbols as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail comDiego Pettenò2008-05-01
| | | | Originally committed as revision 13026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send context to some ffmpeg.c opt* functionStefano Sabatini2008-04-22
| | | | | | Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) Originally committed as revision 12927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make some ffmpeg opts use parse-number-or-die.Stefano Sabatini2008-04-21
| | | | | | Patch by Stefano Sabatini stefano sabatini-lala posteit Originally committed as revision 12919 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix bug introduced by r12827.Ramiro Polla2008-04-21
| | | | | | | If av_exit() was called after an AVFormatContext was created, but before its file was opened, av_exit() would pass a NULL pointer to url_fclose(). Originally committed as revision 12915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_exit() instead of exit() for a minimal cleanupRamiro Polla2008-04-14
| | | | | | | before leaving ffmpeg. Needed by some grab devices and possibly network streams. Originally committed as revision 12827 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_exit() so it can be used by more functionsRamiro Polla2008-04-14
| | | | | | without needing forward declaration. Originally committed as revision 12826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Complete argument information in ffmpeg.c:options for non-number argumentsStefano Sabatini2008-04-08
| | | | | | Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) Originally committed as revision 12766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export parse_time_or_die from ffmpeg.c to cmdutils.cStefano Sabatini2008-03-31
| | | | | | Patch by Stefano Sabatini (stefano sabatini-lala poste it) Originally committed as revision 12647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make option time parsing functions take argument from optionsStefano Sabatini2008-03-22
| | | | | | Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) Originally committed as revision 12551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Provide a context to parse_time_or_die().Stefano Sabatini2008-03-17
| | | | | | Patch by Stefano Sabatini: stefano sabatini-lala poste it Originally committed as revision 12472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'disposition' bitfield to AVStream and use it for both muxing and demuxingEvgeniy Stepanov2008-03-07
| | | | | | of matroska and nut. Originally committed as revision 12358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sws_flags is unsigned.Michael Niedermayer2008-03-05
| | | | | | | This together with the last commit fixes the strange behavior of -sws_flags. (issue229) Originally committed as revision 12325 to svn://svn.ffmpeg.org/ffmpeg/trunk