summaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Do not pass program_name as argument to show_version(), this allows someMichael Niedermayer2008-05-211-2/+2
| | | | | | future simplifications. Originally committed as revision 13232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* OPT_EXITMichael Niedermayer2008-05-211-16/+3
| | | | Originally committed as revision 13231 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print timestamp with increased precision.David Bolt2008-05-211-1/+1
| | | | | | 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-131-2/+3
| | | | | | 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-111-0/+1
| | | | Originally committed as revision 13116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-8/+8
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for sys/resource.h and include it conditionally.Ramiro Polla2008-05-081-2/+3
| | | | 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-011-3/+3
| | | | Originally committed as revision 13026 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send context to some ffmpeg.c opt* functionStefano Sabatini2008-04-221-12/+16
| | | | | | 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-211-4/+4
| | | | | | 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-211-1/+1
| | | | | | | 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-141-83/+83
| | | | | | | 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-141-53/+53
| | | | | | 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-081-6/+6
| | | | | | 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-311-11/+0
| | | | | | 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-221-12/+16
| | | | | | 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-171-7/+7
| | | | | | 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-071-0/+2
| | | | | | of matroska and nut. Originally committed as revision 12358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sws_flags is unsigned.Michael Niedermayer2008-03-051-1/+1
| | | | | | | 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
* Remove INFINITY.Michael Niedermayer2008-03-011-5/+0
| | | | Originally committed as revision 12288 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify the documentation for 'ffmpeg -v'.Stefano Sabatini2008-02-251-1/+1
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 12216 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce initial fifo size, so as not to senselessly waste memory.Michael Niedermayer2008-02-241-1/+1
| | | | Originally committed as revision 12186 to svn://svn.ffmpeg.org/ffmpeg/trunk
* realloc fifoMichael Niedermayer2008-02-241-0/+1
| | | | Originally committed as revision 12185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove a superfluous call to atoi in ffmpeg.c:opt_verboseStefano Sabatini2008-02-181-1/+1
| | | | | | | | Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) [FFmpeg-devel] [PATCH] Cosmetics: remove a superfluos call to atoi in ffmpeg.c:opt_verbose Originally committed as revision 12136 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add notes where known timestamp issues remain.Michael Niedermayer2008-02-171-0/+3
| | | | Originally committed as revision 12135 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set initial next_pts to unknown, this avoids the nonsense timestampMichael Niedermayer2008-02-171-4/+1
| | | | | | | | discontinuity at the start. I hope this has no sideeffects, if it does send a bugreport! fixes issue137 Originally committed as revision 12134 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print a warning if a decoder produces more than 1 frame of output forMichael Niedermayer2008-02-171-0/+3
| | | | | | a single frame it got from the demuxer+parser. Originally committed as revision 12133 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set next_pts to pts if it is unknown and pkt->dts is not known either. ThisMichael Niedermayer2008-02-171-0/+3
| | | | | | | is needed because next_pts is used to calculate the next pts and adding to AV_NOPTS_VALUE does not achieve the intended result. Originally committed as revision 12132 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify (next_)pts codeMichael Niedermayer2008-02-171-7/+4
| | | | Originally committed as revision 12131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use next_pts if pkt->dts is unknown. In an ideal world this would not be neededMichael Niedermayer2008-02-171-1/+1
| | | | | | but sadly there are cases where the timestamps cannot be found without decoding. Originally committed as revision 12130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update ist->pts after decoding a codec frame not after decoding a containerMichael Niedermayer2008-02-151-8/+8
| | | | | | frame. Originally committed as revision 12062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* -vsync 2 (drop frames if there are too many but do not duplicate any)Michael Niedermayer2008-02-141-0/+2
| | | | Originally committed as revision 11934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless #if.Diego Biurrun2008-02-091-2/+0
| | | | Originally committed as revision 11888 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-041-1/+1
| | | | Originally committed as revision 11844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-const 2nd parameter for strtol/strtodAurelien Jacobs2008-02-021-14/+13
| | | | Originally committed as revision 11803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not print quality when stream copy,Baptiste Coudurier2008-02-011-2/+4
| | | | | | | | | | | | | Silence valgrind complaint: ==14746== Conditional jump or move depends on uninitialised value(s) ==14746== at 0x43488DF: (within /lib/i686/cmov/libc-2.7.so) ==14746== by 0x434ED81: __printf_fp (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x434A3F3: vfprintf (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x436EA93: vsnprintf (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x4353234: snprintf (in /lib/i686/cmov/libc-2.7.so) ==14746== by 0x806247C: print_report (ffmpeg.c:963) Originally committed as revision 11728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sbsf option for subtitle bitstream filterReimar Döffinger2008-01-281-1/+8
| | | | Originally committed as revision 11658 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for Matroska attachments.Evgeniy Stepanov2008-01-271-0/+2
| | | | | | patch by eugeni _dot_ stepanov _at_ gmail.com and myself Originally committed as revision 11635 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix Benoit's ugly formatting.Diego Biurrun2008-01-221-4/+3
| | | | Originally committed as revision 11593 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Inform user when bitstream filter fails.Benoit Fouet2008-01-211-1/+7
| | | | Originally committed as revision 11587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "genre" command line optionkweiner@spamcop.net2008-01-101-0/+4
| | | | | | | Patch by kweiner spamcop net closes Issue318 Originally committed as revision 11489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly use output format stream index for bitstream filter when doing ↵Andreas Öman2008-01-091-1/+1
| | | | | | stream copy. Originally committed as revision 11480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dont crash if resampling is requested but no audio packets are ever processed.Andreas Öman2008-01-071-1/+1
| | | | Originally committed as revision 11449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix prototype and return value of opt_bitrate and opt_bsf.Morten Hustveit2008-01-021-2/+6
| | | | | | Patch by Morten Hustveit: lists rashbox org Originally committed as revision 11370 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define rc override string as const.Morten Hustveit2008-01-021-3/+3
| | | | | | Patch by Morten Hustveit: lists rashbox org Originally committed as revision 11369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not force fps unless the user actually specified one.Michael Niedermayer2007-12-261-5/+5
| | | | | | fixes issue309 Originally committed as revision 11322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix pts and keyframe flags for yuv4mpegMichael Niedermayer2007-12-261-4/+2
| | | | | | fixes issue258 Originally committed as revision 11320 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prevent silent overwriting of files on windows.Michael Niedermayer2007-12-251-0/+1
| | | | | | | fixes issue308 untested Originally committed as revision 11315 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix "suggest parentheses around assignment used as truth value" warnings.Diego Biurrun2007-12-211-5/+5
| | | | Originally committed as revision 11293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reset manually selected codecs at the end of opt_input_file, to avoid ↵Baptiste Coudurier2007-12-211-0/+3
| | | | | | propagating selection to output file Originally committed as revision 11289 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud