summaryrefslogtreecommitdiff
path: root/ffmpeg.c
Commit message (Collapse)AuthorAge
* 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
* Make ffmpeg able to set the loglevel option using stringsRamiro Polla2009-06-16
| | | | | | | | 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-14
| | | | Originally committed as revision 19196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print error message when output buffer allocation failsMåns Rullgård2009-06-14
| | | | 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-12
| | | | | | is unknown. Originally committed as revision 19164 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove even condition on pad and crop.Baptiste Coudurier2009-06-11
| | | | | | | 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-31
| | | | Originally committed as revision 19071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless if(), leftover from the vhook removal.Ramiro Polla2009-05-31
| | | | Originally committed as revision 19070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove commented code using real_pict_numBaptiste Coudurier2009-05-30
| | | | Originally committed as revision 18989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* pad last audio frame when encodingBaptiste Coudurier2009-05-23
| | | | Originally committed as revision 18907 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated RGB_TO_[YUV] macros, use those included inStefano Sabatini2009-05-22
| | | | | | 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-12
| | | | | | 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-27
| | | | 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-24
| | | | | | 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-23
| | | | 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-19
| | | | | | 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-17
| | | | Originally committed as revision 18567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused variable from print_report() found by CSA.Michael Niedermayer2009-04-17
| | | | Originally committed as revision 18566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded assignment in ffmpeg.c found by CSA.Michael Niedermayer2009-04-17
| | | | 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-14
| | | | 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-14
| | | | Originally committed as revision 18504 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix indentationBaptiste Coudurier2009-04-13
| | | | Originally committed as revision 18500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move audio buffers declarations and free them in av_exitBaptiste Coudurier2009-04-13
| | | | Originally committed as revision 18486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move freeing code before exiting because of signalBaptiste Coudurier2009-04-13
| | | | 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-13
| | | | Originally committed as revision 18484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix initialization of avpkt in output_packet().Thilo Borgmann2009-04-11
| | | | | | 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-10
| | | | | | 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-09
| | | | | | 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-20
| | | | | | 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-19
| | | | | | invalid. Originally committed as revision 18053 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use read_yesno() in opt_output_file().Stefano Sabatini2009-03-18
| | | | 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-18
| | | | | | | | 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-15
| | | | Originally committed as revision 17973 to svn://svn.ffmpeg.org/ffmpeg/trunk
* stag option to force subtitle tagBaptiste Coudurier2009-03-11
| | | | Originally committed as revision 17941 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l, set ret to 0 when finishedBaptiste Coudurier2009-03-11
| | | | Originally committed as revision 17931 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dump_format after av_write_header to print updated parametersBaptiste Coudurier2009-03-11
| | | | Originally committed as revision 17930 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder arguments for av_fifo_generic_read to be more logical andReimar Döffinger2009-03-09
| | | | | | consistent with av_fifo_generic_write. Originally committed as revision 17914 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all uses of the replaced av_fifo_read by av_fifo_generic_readReimar Döffinger2009-03-08
| | | | Originally committed as revision 17873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allocate AVFifoBuffer through the fifo API to reduce future API/ABI issues.Michael Niedermayer2009-03-08
| | | | | | | Yes this breaks ABI/API but ive already broken it and will bump avutil major soon. Originally committed as revision 17869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename avctx_opts to avcodec_opts.Stefano Sabatini2009-03-03
| | | | | | | The new name is more meaningful and consistent with avformat_opts and sws_opts. Originally committed as revision 17789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable AVFMT_FLAG_NONBLOCK.Michael Niedermayer2009-03-03
| | | | Originally committed as revision 17785 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do usleep(10000) when all demuxers returned EAGAIN.Michael Niedermayer2009-03-03
| | | | Originally committed as revision 17784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If a demuxer returns EAGAIN, try another demuxer.Michael Niedermayer2009-03-03
| | | | Originally committed as revision 17782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove deprecated vhook subsystem.Diego Biurrun2009-03-03
| | | | Originally committed as revision 17769 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix last usage of old metadata API in ffmpeg.c (handling of AVStream language)Aurelien Jacobs2009-03-01
| | | | Originally committed as revision 17688 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert ffmpeg to new metadata APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure -vsync 2 does not produce timestamps equal to the previous,Michael Niedermayer2009-02-27
| | | | | | | rather drop a frame. Fixes Issue872. Originally committed as revision 17643 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update commented fprintf().Michael Niedermayer2009-02-27
| | | | Originally committed as revision 17642 to svn://svn.ffmpeg.org/ffmpeg/trunk