summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Expand)AuthorAgeFilesLines
* Add a few newlines to 'ffmpeg -h' output to make it more readable.Stefano Sabatini2008-05-311-0/+3
* Compiling ffmpeg.c fails when when the .ffm demuxer is enabled, but the .ffmPeter Ross2008-05-311-1/+1
* Remove incorrect usage of av_free_static(), ffmpeg.c is not aMichael Niedermayer2008-05-301-2/+0
* cosmetics, space before and after parenthesis, weird indentationBaptiste Coudurier2008-05-291-12/+12
* Remove unnecessary header #includes.Erik Hovland2008-05-291-1/+0
* Simplify show_banner() so that it does not require arguments, similarStefano Sabatini2008-05-291-2/+2
* Slightly clarify bitstream filter help output.Stefano Sabatini2008-05-281-3/+3
* Remove coded_frame==NULL checks for video encoders.Michael Niedermayer2008-05-281-5/+5
* use av_fifo_generic_write, old func is deprecatedBaptiste Coudurier2008-05-271-1/+1
* Make stream copy of ac3 from riff based formats work.Michael Niedermayer2008-05-261-0/+2
* Ensure that one can store X bytes in a fifo of size X.Michael Niedermayer2008-05-251-1/+1
* Make av_fifo*_read() ignore the available amount of data.Michael Niedermayer2008-05-251-3/+4
* Make opt_verbose() work again.Michael Niedermayer2008-05-251-1/+1
* Move show_formats() to cmdutils.c.Stefano Sabatini2008-05-221-124/+1
* Get rid of more senseless wrapper functions and use OPT_EXIT instead.Michael Niedermayer2008-05-211-7/+1
* Do not pass program_name as argument to show_version(), this allows someMichael Niedermayer2008-05-211-2/+2
* OPT_EXITMichael Niedermayer2008-05-211-16/+3
* Print timestamp with increased precision.David Bolt2008-05-211-1/+1
* Make 'ffmpeg -formats' print codec long names.Stefano Sabatini2008-05-131-2/+3
* sys/resource.h needs sys/types.h on OS/2, patch by Dave Yeo, daveryeo telus netDave Yeo2008-05-111-0/+1
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-8/+8
* Check for sys/resource.h and include it conditionally.Ramiro Polla2008-05-081-2/+3
* Mark symbols as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail comDiego Pettenò2008-05-011-3/+3
* Send context to some ffmpeg.c opt* functionStefano Sabatini2008-04-221-12/+16
* Make some ffmpeg opts use parse-number-or-die.Stefano Sabatini2008-04-211-4/+4
* Fix bug introduced by r12827.Ramiro Polla2008-04-211-1/+1
* Use av_exit() instead of exit() for a minimal cleanupRamiro Polla2008-04-141-83/+83
* Move av_exit() so it can be used by more functionsRamiro Polla2008-04-141-53/+53
* Complete argument information in ffmpeg.c:options for non-number argumentsStefano Sabatini2008-04-081-6/+6
* Export parse_time_or_die from ffmpeg.c to cmdutils.cStefano Sabatini2008-03-311-11/+0
* Make option time parsing functions take argument from optionsStefano Sabatini2008-03-221-12/+16
* Provide a context to parse_time_or_die().Stefano Sabatini2008-03-171-7/+7
* Add 'disposition' bitfield to AVStream and use it for both muxing and demuxingEvgeniy Stepanov2008-03-071-0/+2
* sws_flags is unsigned.Michael Niedermayer2008-03-051-1/+1
* Remove INFINITY.Michael Niedermayer2008-03-011-5/+0
* Clarify the documentation for 'ffmpeg -v'.Stefano Sabatini2008-02-251-1/+1
* Reduce initial fifo size, so as not to senselessly waste memory.Michael Niedermayer2008-02-241-1/+1
* realloc fifoMichael Niedermayer2008-02-241-0/+1
* Remove a superfluous call to atoi in ffmpeg.c:opt_verboseStefano Sabatini2008-02-181-1/+1
* Add notes where known timestamp issues remain.Michael Niedermayer2008-02-171-0/+3
* Set initial next_pts to unknown, this avoids the nonsense timestampMichael Niedermayer2008-02-171-4/+1
* Print a warning if a decoder produces more than 1 frame of output forMichael Niedermayer2008-02-171-0/+3
* Set next_pts to pts if it is unknown and pkt->dts is not known either. ThisMichael Niedermayer2008-02-171-0/+3
* simplify (next_)pts codeMichael Niedermayer2008-02-171-7/+4
* Use next_pts if pkt->dts is unknown. In an ideal world this would not be neededMichael Niedermayer2008-02-171-1/+1
* Update ist->pts after decoding a codec frame not after decoding a containerMichael Niedermayer2008-02-151-8/+8
* -vsync 2 (drop frames if there are too many but do not duplicate any)Michael Niedermayer2008-02-141-0/+2
* Remove pointless #if.Diego Biurrun2008-02-091-2/+0
* constMichael Niedermayer2008-02-041-1/+1
* non-const 2nd parameter for strtol/strtodAurelien Jacobs2008-02-021-14/+13