summaryrefslogtreecommitdiff
path: root/ffplay.c
Commit message (Collapse)AuthorAge
* 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
* Fix blend_subrect for even-width subrects positioned on odd columnsBjörn Axelsson2009-02-09
| | | | | | Patch by Björn Axelsson ( gecko A acc D umu D se ) Originally committed as revision 17088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace the calls to the deprecated av_alloc_format_context() withStefano Sabatini2009-02-08
| | | | | | corresponding calls to avformat_alloc_context(). Originally committed as revision 17048 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix blend_subrect for some subrects positioned on odd rows.Björn Axelsson2009-02-05
| | | | | | Patch by Björn Axelsson gecko A acc D umu D se Originally committed as revision 17014 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix blend_subrect for subrects positioned on odd rows.Björn Axelsson2009-02-05
| | | | | | Patch by Björn Axelsson gecko A acc D umu D se Originally committed as revision 17013 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix vertical resolution of subtitles.Björn Axelsson2009-02-02
| | | | | | Patch by Björn Axelsson gecko A acc D umu D se Originally committed as revision 16963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove detection of mmsh protocol in ffplay.Aurelien Jacobs2009-01-19
| | | | | | | This is useless as long as mmsh is not implemented in libavformat. This is a revert of r10936. Originally committed as revision 16687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix warning: assignment makes pointer from integer without a castAurelien Jacobs2009-01-10
| | | | Originally committed as revision 16523 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix segv, always set audio_buf to audio_buf1 if decoding failBaptiste Coudurier2009-01-09
| | | | Originally committed as revision 16512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Inject NULL packets into the video packet que at EOF to force all delayedMichael Niedermayer2009-01-07
| | | | | | frames to be output. Originally committed as revision 16484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace AVSubtitleRect.rgba_palette and bitmap by AVPicture.Michael Niedermayer2009-01-03
| | | | Originally committed as revision 16416 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change AVSubtitle.rects to an array of pointers so ABI does not breakMichael Niedermayer2009-01-03
| | | | | | when the size of AVSubtitleRect changes. Originally committed as revision 16412 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Display subtitles within the display area.Michael Niedermayer2009-01-03
| | | | | | | Fixes dvd-subtitle-problem.vob. (problem likely is that the video resolution is smaller than what the subtitles expect) Originally committed as revision 16411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix files with fps between 0.5 and 0.1.Michael Niedermayer2008-12-14
| | | | | | Fixes issue749 Originally committed as revision 16123 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary calls to show_help(), make ffmpeg/ffplay print aStefano Sabatini2008-11-17
| | | | | | specific error message instead. Originally committed as revision 15868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark ffplay internal variables static. Patch by Diego PettenòDiego Pettenò2008-10-04
| | | | Originally committed as revision 15546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVOptions support for ffplay.Michael Niedermayer2008-09-28
| | | | Originally committed as revision 15451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename error_resilience to error_recognition.Michael Niedermayer2008-09-08
| | | | Originally committed as revision 15270 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix round to even for aspect ratio correction.Michael Niedermayer2008-09-03
| | | | Originally committed as revision 15173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that SDL_AddTimer() is never called with a delay of 0 becauseMichael Niedermayer2008-08-24
| | | | | | | | this leads to a runaway creation of timers. We never pass 0 currently but it is safer to check for it explicitly as changes to the code can easily lead to 0 being used. Originally committed as revision 14934 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export sample_aspect_ratio read by the demuxer in a separate fieldAurelien Jacobs2008-08-23
| | | | | | that the one read by the decoder. Originally committed as revision 14932 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify timestamp reordering by using the new API.Michael Niedermayer2008-08-20
| | | | Originally committed as revision 14872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Set AVStream.discard, so that demuxers can choose which stream to select if ↵Ronald S. Bultje2008-08-18
| | | | | | that is a serverside option (as is the case for RTSP). See "Realmedia patch" thread on mailinglist. Originally committed as revision 14825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify by using FFMAX.Michael Niedermayer2008-08-15
| | | | Originally committed as revision 14776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add sample format converter to FFplay.Peter Ross2008-08-02
| | | | Originally committed as revision 14508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify AVCodecContext usage within FFplay audio_decode_frame()Peter Ross2008-08-02
| | | | Originally committed as revision 14503 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change opt_sync function behavior to print an error message.Stefano Sabatini2008-06-12
| | | | | | Patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 13757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary header #includes.Erik Hovland2008-05-29
| | | | | | Extracted from a patch by Erik Hovland, erik hovland org. Originally committed as revision 13531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify show_banner() so that it does not require arguments, similarStefano Sabatini2008-05-29
| | | | | | | to what was previously done with show_version(). patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -formats option to ffplay.Stefano Sabatini2008-05-23
| | | | | | Patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 13246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement ffplay -L.Stefano Sabatini2008-05-22
| | | | | | Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of more senseless wrapper functions and use OPT_EXIT instead.Michael Niedermayer2008-05-21
| | | | Originally committed as revision 13233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not pass program_name as argument to show_version(), this allows someMichael Niedermayer2008-05-21
| | | | | | future simplifications. Originally committed as revision 13232 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Let ffplay support "-version".Stefano Sabatini2008-05-21
| | | | | | Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13208 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mark symbols as static, patch by Diego 'Flameeyes' Pettenò, flameeyes gmail comDiego Pettenò2008-05-01
| | | | Originally committed as revision 13025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Send context to ffplay.c:opt_seekStefano Sabatini2008-04-01
| | | | | | Patch by Stefano Sabatini (stefano sabatini-lala poste it) Originally committed as revision 12663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffplay.c:opt_seek use parse_time_or_dieStefano Sabatini2008-03-31
| | | | | | Patch by Stefano Sabatini (stefano sabatini-lala poste it) Originally committed as revision 12653 to svn://svn.ffmpeg.org/ffmpeg/trunk