aboutsummaryrefslogtreecommitdiffstats
path: root/ffmpeg.c
Commit message (Collapse)AuthorAgeFilesLines
* Add CODEC_CAP_SUBFRAMES for codecs that output multiple subframesSascha Sommer2009-09-161-1/+2
| | | | | | | | 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-161-1/+2
| | | | Originally committed as revision 19880 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for return value of some context allocations.Ramiro Polla2009-09-121-0/+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-261-1/+1
| | | | | | | 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-261-1/+5
| | | | | | 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-151-0/+4
| | | | | | 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-071-33/+0
| | | | 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-271-1/+1
| | | | | | | 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-241-0/+2
| | | | | | 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-161-3/+3
| | | | | | | | -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-041-2/+2
| | | | | | | 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-261-2/+6
| | | | | | 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-211-5/+5
| | | | Originally committed as revision 19243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support varying frame sizes in a single file.Eric Buehl2009-06-191-5/+68
| | | | | | 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-191-0/+1
| | | | | | 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-161-35/+0
| | | | Originally committed as revision 19209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg able to set the loglevel option using stringsRamiro Polla2009-06-161-2/+30
| | | | | | | | corresponding to the various log levels. Patch by Ramiro. Originally committed as revision 19208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not use av_parser_change for h264 which uses bitstream filter, fix #1027Baptiste Coudurier2009-06-141-0/+5
| | | | Originally committed as revision 19196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print error message when output buffer allocation failsMåns Rullgård2009-06-141-0/+2
| | | | Originally committed as revision 19194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fail and print correct error message when video stream pixel formatBaptiste Coudurier2009-06-121-0/+4
| | | | | | is unknown. Originally committed as revision 19164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove even condition on pad and crop.Baptiste Coudurier2009-06-111-32/+0
| | | | | | | Odd padding or cropping is needed when encoders only support even resolution. Originally committed as revision 19146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentRamiro Polla2009-05-311-8/+8
| | | | Originally committed as revision 19071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless if(), leftover from the vhook removal.Ramiro Polla2009-05-311-4/+0
| | | | Originally committed as revision 19070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove commented code using real_pict_numBaptiste Coudurier2009-05-301-4/+3
| | | | Originally committed as revision 18989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pad last audio frame when encodingBaptiste Coudurier2009-05-231-2/+11
| | | | Originally committed as revision 18907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated RGB_TO_[YUV] macros, use those included inStefano Sabatini2009-05-221-17/+1
| | | | | | libavcodec/colorspace.h. Originally committed as revision 18901 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Copy input codec's chroma_sample_location to output codec when transcoding.David Conrad2009-05-121-0/+1
| | | | | | Currently only used by yuv4mpeg. Originally committed as revision 18799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make function pointer assignments consistent in option handling.Benoit Fouet2009-04-271-2/+2
| | | | Originally committed as revision 18697 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change return type of opt_loglevel() from void to int.Wolfram Gloger2009-04-241-1/+2
| | | | | | Patch by Wolfram Gloger: wmglo (your at here) dent med uni (minus) muenchen de Originally committed as revision 18678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Don't loose bits_per_raw_sample when transcoding.Michael Niedermayer2009-04-231-0/+2
| | | | Originally committed as revision 18671 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check that channel layout is compatible with number of channels forJustin Ruggles2009-04-191-0/+2
| | | | | | output audio stream. Originally committed as revision 18621 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded assignment from av_encode() found by CSA.Michael Niedermayer2009-04-171-1/+0
| | | | Originally committed as revision 18567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from print_report() found by CSA.Michael Niedermayer2009-04-171-2/+1
| | | | Originally committed as revision 18566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded assignment in ffmpeg.c found by CSA.Michael Niedermayer2009-04-171-1/+0
| | | | Originally committed as revision 18562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support audio sample formats than S16 when encoding a small last frame.Justin Ruggles2009-04-141-1/+2
| | | | Originally committed as revision 18505 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set pkt duration for last smaller frame, should fix alac in m4a muxingBaptiste Coudurier2009-04-141-0/+2
| | | | Originally committed as revision 18504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentationBaptiste Coudurier2009-04-131-1/+1
| | | | Originally committed as revision 18500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move audio buffers declarations and free them in av_exitBaptiste Coudurier2009-04-131-4/+10
| | | | Originally committed as revision 18486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move freeing code before exiting because of signalBaptiste Coudurier2009-04-131-5/+5
| | | | Originally committed as revision 18485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* free options contexts in av_exit, valgrind should be happy nowBaptiste Coudurier2009-04-131-0/+5
| | | | Originally committed as revision 18484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix initialization of avpkt in output_packet().Thilo Borgmann2009-04-111-5/+3
| | | | | | Patch by Thilo Borgmann thilo.surname AT googlemaildotcom. Originally committed as revision 18451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the new avcodec_decode_* API.Thilo Borgmann2009-04-101-22/+24
| | | | | | Patch by Thilo Borgmann th_lo.borgm_n_@goog_email.co_. Originally committed as revision 18417 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix -ss / -t interaction with -acodec copy.Michael Niedermayer2009-04-091-1/+4
| | | | | | Fixes issue203 Originally committed as revision 18382 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not write ffm write index by default, detect if file is being written and ↵Baptiste Coudurier2009-03-201-1/+1
| | | | | | return EOF Originally committed as revision 18063 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffmpeg fail if the argument provided to the -pix_fmt option isStefano Sabatini2009-03-191-2/+6
| | | | | | invalid. Originally committed as revision 18053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use read_yesno() in opt_output_file().Stefano Sabatini2009-03-181-6/+1
| | | | Originally committed as revision 18038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Flush the remaning chars in the input buffer after reading theStefano Sabatini2009-03-181-0/+2
| | | | | | | | response to the "Overwrite ? [y/N]" question. Fix the behaviour when the question is asked more than one time. Originally committed as revision 18036 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add loglevel option to set libav* logging level, -v does not set it anymoreBaptiste Coudurier2009-03-151-2/+8
| | | | Originally committed as revision 17973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stag option to force subtitle tagBaptiste Coudurier2009-03-111-0/+15
| | | | Originally committed as revision 17941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, set ret to 0 when finishedBaptiste Coudurier2009-03-111-0/+1
| | | | Originally committed as revision 17931 to svn://svn.ffmpeg.org/ffmpeg/trunk