summaryrefslogtreecommitdiff
path: root/ffplay.c
Commit message (Collapse)AuthorAge
* Fix seeking by bytes with the mouse and do so by default if the duration isMichael Niedermayer2010-01-30
| | | | | | nonsense. Originally committed as revision 21563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix AVFormat AVOprions.Michael Niedermayer2010-01-30
| | | | Originally committed as revision 21561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Redesign packet queue full check to be more robust.Michael Niedermayer2010-01-30
| | | | Originally committed as revision 21555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump up MAX_VIDEOQ_SIZE to fix stuttering of oddly interleaved avi files.Michael Niedermayer2010-01-30
| | | | | | Fixes issue1211 Originally committed as revision 21554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_get_pix_fmt() instead of the deprecated avcodec_get_pix_fmt()Stefano Sabatini2010-01-30
| | | | | | function. Originally committed as revision 21550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård2010-01-22
| | | | Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentMåns Rullgård2010-01-20
| | | | Originally committed as revision 21359 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Always call avcodec_thread_init()Måns Rullgård2010-01-20
| | | | | | | | | The various avcodec_thread_init() functions are updated to return immediately after setting avctx->thread_count. This allows -threads 0 to pass through to codecs. It also simplifies the usage for apps using libavcodec. Originally committed as revision 21358 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set thread_count in the decoder before to open it.Stefano Sabatini2009-12-28
| | | | | | | | | | | | | | | This is safer since avcodec_open() may initialize some structure using the thread_count default value which will be changed later, causing potential security / stability issues. Also do not explicitely set the thread_count value in the decoder, since this is already done by avcodec_thread_init(). See the thread: "[FFmpeg-devel] [PATCH] Make ffplay define in the encoder the number of threads *before* to open it", started in date 2008-03-08. Originally committed as revision 20954 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
* 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
* Until -DHAVE_AV_CONFIG_H is removed from ffplays compilation, *printf must ↵Michael Niedermayer2009-12-13
| | | | | | | | | | be #undef. Without this random changes to the header inclusion can trigger linking failures, and these are not even picked up in some environments (some fate machines didnt catch it). Originally committed as revision 20833 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
* Factorize common commandline options definition.Stefano Sabatini2009-11-29
| | | | Originally committed as revision 20664 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
* Add #include for required header config.h.Diego Biurrun2009-11-11
| | | | Originally committed as revision 20518 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 a -loglevel command line option to ffplay.Stefano Sabatini2009-09-26
| | | | | | | The -loglevel option makes possible to set the logging level used by the libav* libraries. Originally committed as revision 20027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Moves the display of metadata to dump_format()Peter Ross2009-08-12
| | | | Originally committed as revision 19632 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
* Make 'stats' a bool option again.Benoit Fouet2009-08-04
| | | | | | To disable stats, use -nostats option. Originally committed as revision 19581 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase audio queue size in FFplay so files with big audio/video delayBaptiste Coudurier2009-07-30
| | | | | | like mov can play nicely. Originally committed as revision 19554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Display stats by default in FFplay and increase refresh time.Baptiste Coudurier2009-07-30
| | | | | | Change -stats cli option to take int, so stats can be disabled. Originally committed as revision 19552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary rtsp.h #include.Diego Biurrun2009-07-14
| | | | | | Nothing from the header was used and it caused trouble on Windows CE. Originally committed as revision 19430 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicated RGB_TO_[YUV]_CCIR macros, directly use those definedStefano Sabatini2009-05-23
| | | | | | in libavcodec/colorspace.h. Originally committed as revision 18922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix mouse seeking when start time is not set, fix #1083Baptiste Coudurier2009-05-22
| | | | Originally committed as revision 18902 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move img_convert_ctx to VideoState and free it in stream_close().Martin Storsjö2009-05-16
| | | | | | Patch by Martin Storsjö, martin martin st Originally committed as revision 18854 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing frees to stream_close() and do_exit().Martin Storsjö2009-05-16
| | | | | | Patch by Martin Storsjö, martin martin st Originally committed as revision 18853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reset eof state on seeking.Michael Niedermayer2009-04-28
| | | | | | Fixes issue1005. Originally committed as revision 18710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2009-04-19
| | | | Originally committed as revision 18630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only insert null packets into the video que if there is a video stream.Michael Niedermayer2009-04-19
| | | | | | Fixes memleak and should fix issue791. Originally committed as revision 18629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid 100% CPU useage at EOF.Michael Niedermayer2009-04-19
| | | | Originally committed as revision 18625 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure that video frames are flushed at EOF.Michael Niedermayer2009-04-19
| | | | | | This should fix a regression. Originally committed as revision 18624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the new avcodec_decode_* API.Thilo Borgmann2009-04-10
| | | | | | Patch by Thilo Borgmann thilo.borgmann * googlemail ! com. Originally committed as revision 18414 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move declaration of 'pict' closer to where it is used and initialize it.avcoder2009-03-23
| | | | | | Patch by avcoder: gmail(ffmpeg) Originally committed as revision 18171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Switch ffplay to new seeking API.Michael Niedermayer2009-03-14
| | | | Originally committed as revision 17958 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
* Document ffplay -ast, -vst, and -sst options.Stefano Sabatini2009-03-01
| | | | Originally committed as revision 17694 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply the same logic used for subtitle stream selection to audio and videoStefano Sabatini2009-03-01
| | | | | | | | | | | | stream selection. Make the counting starts from 0, and disable the corresponding playbck when the selected stream number is negative. See the thread: " [FFmpeg-devel] [PATCH] Add documentation for -ast, -vst, -sst". Originally committed as revision 17693 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify the logic for the subtitle stream selection.Stefano Sabatini2009-03-01
| | | | Originally committed as revision 17692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix subtitle selection logic, make ffplay select the subtitle stream NStefano Sabatini2009-03-01
| | | | | | rather than the subtitle stream N-1 when N is not zero. Originally committed as revision 17691 to svn://svn.ffmpeg.org/ffmpeg/trunk
* convert ffplay to new metadata APIAurelien Jacobs2009-03-01
| | | | Originally committed as revision 17684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Take account of struct size in total packet queue size tracking.Aurelien Jacobs2009-02-21
| | | | | | fix issue806 Originally committed as revision 17476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay: Stop processing input file when AVERROR_EOF is returned from ↵Peter Ross2009-02-19
| | | | | | av_read_frame() Originally committed as revision 17458 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move debug trace to the new compute_frame_delay() function.Tomer Barletz2009-02-18
| | | | | | Patch by Tomer Barletz: barletz gmail Originally committed as revision 17434 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after previous commit.Benoit Fouet2009-02-18
| | | | Originally committed as revision 17433 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not force last delay value to its own value.Tomer Barletz2009-02-18
| | | | | | Adapted from a patch by Tomer Barletz: surname chez gmail Originally committed as revision 17432 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extract into its own function the code to compute frame delay.Tomer Barletz2009-02-18
| | | | | | Patch by Tomer Barletz gmail_address(last_name) Originally committed as revision 17431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ffplay subtitle stream selection command-line parameterBjörn Axelsson2009-02-09
| | | | | | Patch by Björn Axelsson ( gecko A acc D umu D se ) Originally committed as revision 17089 to svn://svn.ffmpeg.org/ffmpeg/trunk