summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
* Do not copy codec_tag in stream copy case if it is associated with a ↵Michael Niedermayer2009-12-25
| | | | | | | | different codec_id fixes issue1568 Originally committed as revision 20921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use positive logic, improve readability, consistent with r20877.Stefano Sabatini2009-12-25
| | | | Originally committed as revision 20920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print usage instead of help when no files are specified.Ramiro Polla2009-12-21
| | | | Originally committed as revision 20905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split show_usage() out of show_help().Ramiro Polla2009-12-21
| | | | Originally committed as revision 20904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a general [options] to the basic usage string.Ramiro Polla2009-12-21
| | | | Originally committed as revision 20903 to svn://svn.ffmpeg.org/ffmpeg/trunk
* First print the program description and then the basic usage line.Ramiro Polla2009-12-21
| | | | Originally committed as revision 20902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -vlang option to set ISO 639 video stream language code.Matthieu Crapet2009-12-16
| | | | | | | | This is similar to existing -alang & -slang options. Patch by Matthieu Crapet m${surname} ^ gmail com. Originally committed as revision 20880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use positive logic in opt_target() for selecting the PAL/othersStefano Sabatini2009-12-15
| | | | | | options, make its semantics mildly easier to compile by human minds. Originally committed as revision 20877 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify freeing of audio_language and subtitle_language.Matthieu Crapet2009-12-15
| | | | | | Patch by Matthieu, mcrapet gmail com Originally committed as revision 20875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use symbolic names for PAL/NTSC/FILM rather than numeric constants in ↵Stefano Sabatini2009-12-14
| | | | | | | | opt_target(). Improve readability. Originally committed as revision 20870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct typoVitor Sessak2009-12-14
| | | | Originally committed as revision 20868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include dup/drop info if any frames where duplicated or dropedMichael Niedermayer2009-12-14
| | | | | | | instead of when verbose>1. From ffmbc0.3 Originally committed as revision 20865 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Off by 1 bugfix for nb_frames_dup.Michael Niedermayer2009-12-14
| | | | | | From ffmbc0.3 Originally committed as revision 20864 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize ic->streams[i] out,Michael Niedermayer2009-12-14
| | | | | | change from ffmbc Originally committed as revision 20852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Show help if no cmd line options are provided at all.Michael Niedermayer2009-12-13
| | | | | | This safes the users time to find out which of -h --help -? works. Originally committed as revision 20822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move list_fmts() from ffmpeg.c to cmdutils.{h,c}, so that it can beStefano Sabatini2009-12-12
| | | | | | shared by the other ff* tools code. Originally committed as revision 20812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do as the comment says and signal an error.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20770 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l bug, use av_fast_malloc() instead if av_malloc() for allocating audioMichael Niedermayer2009-12-08
| | | | | | | buffers. This and the previous revision fix a heap overflow. Originally committed as revision 20769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Try to allocate audio buffer sizes depending on the number of input bytes.Michael Niedermayer2009-12-08
| | | | | | Fixes issue1167. Originally committed as revision 20768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that the buffer size speified to avcodec_encode_audio() is not larger ↵Michael Niedermayer2009-12-08
| | | | | | than the actual size. Originally committed as revision 20767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not assume that av_get_bits_per_sample() is a multiple of 8.Michael Niedermayer2009-12-08
| | | | Originally committed as revision 20766 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of audio_out2, it seems unneeded.Michael Niedermayer2009-12-07
| | | | Originally committed as revision 20760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update frame_width and frame_height based on the lowres value.Jai Menon2009-12-05
| | | | | | Fixes issues 1387, 1097 and probably some other lowres related problems. Originally committed as revision 20741 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 'const' attribute to the last_asked_format variable, fix aStefano Sabatini2009-12-05
| | | | | | compiler warning. Originally committed as revision 20740 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not crash on frame size changes.Michael Niedermayer2009-12-04
| | | | | | Fixes issue1481. Originally committed as revision 20730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update help text for -fpre option to make it a little less confusing.Ramiro Polla2009-12-03
| | | | Originally committed as revision 20713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize common commandline options definition.Stefano Sabatini2009-11-29
| | | | Originally committed as revision 20664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove "frame size must be a multiple of 2" check.Michael Niedermayer2009-11-27
| | | | | | | This check only caught explicitly set sizes from the cmd line and overriding the users wish seems silly, especially as it seems to work. Originally committed as revision 20634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove special case that changed video sync behavior for ↵Michael Niedermayer2009-11-25
| | | | | | | | | av_q2d(enc->time_base) <= 0.001. This should make the default behave more like one would expect and not change behavior at 1000fps. Originally committed as revision 20615 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split show_formats().Michael Niedermayer2009-11-19
| | | | Originally committed as revision 20553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-11-02
| | | | Originally committed as revision 20436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -fpre option to take a preset file as parameter. The -[avs]pre options noRamiro Polla2009-11-02
| | | | | | longer accept filenames, and -fpre should be used instead. Originally committed as revision 20435 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Issue an error when forced format cannot be honored.Etienne Buira2009-10-30
| | | | | | Patch by Etienne Buira $name $surname lists chez free.fr Originally committed as revision 20417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "loglevel" over "logging level number or string" as argname ofStefano Sabatini2009-10-02
| | | | | | | | | | the loglevel command line option. Make the loglevel option help message more clear, since the option argument is shown as a single token, and make the whole message better aligned with the other help messages. Originally committed as revision 20149 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CODEC_CAP_SUBFRAMES for codecs that output multiple subframesSascha Sommer2009-09-16
| | | | | | | | per AVPacket No longer print "Multiple frames in a packet" error message when CODEC_CAP_SUBFRAMES is set (wmapro, wavpack) Originally committed as revision 19881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix PTS calculation for audio formats with bits per sample != 16Sascha Sommer2009-09-16
| | | | Originally committed as revision 19880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for return value of some context allocations.Ramiro Polla2009-09-12
| | | | Originally committed as revision 19826 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase maximum encoded subtitle size from 64 kB to 1 MB.Reimar Döffinger2009-08-26
| | | | | | | Fixes "dvd_subtitle too big" errors when encoding HD video subtitles to DVD format. Originally committed as revision 19713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that start_display_time is 0 by moving its value onto pts.Reimar Döffinger2009-08-26
| | | | | | If it was not 0, subtitle encoding would fail. Originally committed as revision 19710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, error out if subtitle encoder failed instead of writing an AVPacketReimar Döffinger2009-08-15
| | | | | | with ridiculous size and thus crashing. Originally committed as revision 19641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove some hunks of unused and disabled code cruft.Diego Biurrun2009-08-07
| | | | Originally committed as revision 19606 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change type of received_sigterm variable from sig_atomic_t to int,Martin Storsjö2009-07-27
| | | | | | | which is more portable (works on Windows CE). patch by Martin Storsjö, martin martin st Originally committed as revision 19515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for HAVE_ISATTY.Martin Storsjö2009-07-24
| | | | | | Patch by Martin Storsjö <martin at martin dot st> Originally committed as revision 19505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename invalid option name "gop" to "g" in opt_target(), so thatLou Logan2009-07-16
| | | | | | | | -target *-dvd works correctly. Patch by Lou Logan <$firstname@fakeoutdoorsman com>. Originally committed as revision 19447 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum CodecID instead of int.Carl Eugen Hoyos2009-07-04
| | | | | | | Fixes the following icc warning: warning #188: enumerated type mixed with another type Originally committed as revision 19340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Handle variable input stream pixfmts using the same framework introducedJason Garrett-Glaser2009-06-26
| | | | | | by the variable frame size patch. Fixes at least issue 1165. Originally committed as revision 19279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* clarify encoder and decoder opening error messagesBaptiste Coudurier2009-06-21
| | | | Originally committed as revision 19243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support varying frame sizes in a single file.Eric Buehl2009-06-19
| | | | | | patch by Eric Buehl, eric.buehl gmail com Originally committed as revision 19226 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add pts field to AVSubtitle, for use by future XSUB encoder (and XSUB decoderReimar Döffinger2009-06-19
| | | | | | should use it, too). Originally committed as revision 19221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move opt_loglevel() from ffmpeg.c to cmdutils.c.Stefano Sabatini2009-06-16
| | | | Originally committed as revision 19209 to svn://svn.ffmpeg.org/ffmpeg/trunk