summaryrefslogtreecommitdiff
path: root/ffplay.c
Commit message (Collapse)AuthorAge
...
* 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
* Send context to the opt_* functions in ffplay.cStefano Sabatini2008-03-22
| | | | | | Patch by Stefano Sabatini ( stefano sabatini-lala poste it ) Originally committed as revision 12559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffplay use parse_number_or_die instead of atoi.Diego Biurrun2008-03-08
| | | | | | Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 12366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ;;Michael Niedermayer2008-02-19
| | | | Originally committed as revision 12153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix playing of multichannel audio for codecs without downmixingJustin Ruggles2008-01-06
| | | | Originally committed as revision 11431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop RTSP default protocol.Ronald S. Bultje2008-01-02
| | | | | | patch by Ronald S. Bultje, rsbultje gmail com Originally committed as revision 11377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* SDL does not seem to support more than two channels.Andreas Öman2007-12-15
| | | | | | So, if this is the case, ask for downmixing by the codec. Originally committed as revision 11223 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use av_log_get/set_level()Måns Rullgård2007-12-12
| | | | Originally committed as revision 11209 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce libavdeviceLuca Abeni2007-11-22
| | | | Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use dynamically allocated ByteIOContext in AVFormatContextBjörn Axelsson2007-11-21
| | | | | | | patch by: Björn Axelsson, bjorn d axelsson a intinor d se thread: [PATCH] Remove static ByteIOContexts, 06 nov 2007 Originally committed as revision 11071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffplay currently needs special handling for pausing in some protocols.Björn Axelsson2007-11-06
| | | | | | | | Patch by Björn Axelsson: bjorn ; axelsson § intinor : se Original thread: [FFmpeg-devel] [PATCH] MMSH pause support for ffplay Date: 11/02/2007 11:47 AM Originally committed as revision 10936 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove the inclusion of rtsp.h and rtp.h from avformat.h, andLuca Abeni2007-10-29
| | | | | | explicitly include such headers where needed Originally committed as revision 10871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary copyright notice from ffplay.c:show_help.Stefano Sabatini2007-09-27
| | | | | | patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 10604 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffplay show a banner at startup.Stefano Sabatini2007-09-27
| | | | | | patch by Stefano Sabatini stefano sabatini-lala poste it Originally committed as revision 10603 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make parse_date return INT64_MIN in case of unparsable input.Stefano Sabatini2007-09-19
| | | | | | | | | Patch by Stefano Sabatini: [stefano sabatini-lala poste it] Original thread: [FFmpeg-devel] [PATCH] Enhace documentation forlibavformat/utils.c:parse_date Date: 08/17/2007 09:40 PM Originally committed as revision 10533 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rtp and rtsp demuxer declarations are not part of public APIAurelien Jacobs2007-09-10
| | | | Originally committed as revision 10474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix 1fps videosMichael Niedermayer2007-08-31
| | | | Originally committed as revision 10276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change SYS_DARWIN preprocessor checks to __APPLE__, they are specificDiego Biurrun2007-08-27
| | | | | | to Mac OS X rather than to Darwin. Originally committed as revision 10247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrected pause handling when using the 's' step by frame key.Craig Nicol2007-08-27
| | | | | | | | patch by Craig Nicol: [craig nicol /\ ed ac uk] original thread:[FFmpeg-devel] [PATCH] FFplay speedup if stepping whilst paused date: 08/02/2007 12:39 PM Originally committed as revision 10244 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent the code after the last commitLuca Abeni2007-08-24
| | | | Originally committed as revision 10203 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove RTSP special casing in ffplay startupLuca Abeni2007-08-24
| | | | Originally committed as revision 10202 to svn://svn.ffmpeg.org/ffmpeg/trunk