summaryrefslogtreecommitdiff
path: root/ffplay.c
Commit message (Collapse)AuthorAge
...
* Support filters and decoders that dont support negative linesizes.Michael Niedermayer2010-12-27
| | | | | | This patch is based on work by stefano. Originally committed as revision 26108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_find_best_stream in ffplay.Nicolas George2010-12-27
| | | | Originally committed as revision 26105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avfilter_graph_create_filter().Stefano Sabatini2010-12-02
| | | | Originally committed as revision 25862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove graphparser.h header, move AVFilterInOut andStefano Sabatini2010-11-07
| | | | | | | | avfilter_graph_parse() declaration to libavfilter/avfiltergraph.h. Simplify, and less confusing for the user. Originally committed as revision 25705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename AVFilterInOut field filter to filter_ctx, more semantically correct.Stefano Sabatini2010-11-07
| | | | Originally committed as revision 25700 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename avfilter_graph_destroy() to avfilter_graph_free().Stefano Sabatini2010-11-04
| | | | | | | | The new name is shorter and more consistent with the rest of the API. This change breaks libavfilter API/ABI. Originally committed as revision 25674 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avfilter_graph_alloc().Stefano Sabatini2010-11-04
| | | | Originally committed as revision 25673 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove usage of deprecated libavcodec/audioconvert.h functions.Stefano Sabatini2010-11-03
| | | | Originally committed as revision 25668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a common get_filtered_video_frame(), shared between ffplay.cStefano Sabatini2010-10-18
| | | | | | and ffmpeg.c. Originally committed as revision 25520 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avfilter_graph_config().Stefano Sabatini2010-10-16
| | | | Originally committed as revision 25502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize definition of the output_filter defined in both ffplay.c andStefano Sabatini2010-10-12
| | | | | | | ffmpeg.c. Replace it with a more generic definition which can be shared. Originally committed as revision 25453 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix timebase handling at the begin and at the end of the ffplay videoStefano Sabatini2010-10-12
| | | | | | | | | filterchain. Set timebase in the ffplay input, and make get_filtered_video_frame() rescale the output frames PTSes according to their timebase. Originally committed as revision 25450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not pass an unused variable when initing filt_out. Less confusing.Stefano Sabatini2010-10-12
| | | | Originally committed as revision 25448 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix ffplay to keep calling av_read_frame even if EOF has been reached.Michael Chinen2010-10-09
| | | | | | Patch by Michael Chinen, mchinen gmail Originally committed as revision 25426 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add init and uninit functions to cmdutils, reduces code duplicationReimar Döffinger2010-10-02
| | | | | | | between ffmpeg and ffplay and avoids a valgrind error by freeing avformat_opts->key. Originally committed as revision 25309 to svn://svn.ffmpeg.org/ffmpeg/trunk
* User application side of Codec specific parameters.Michael Niedermayer2010-09-29
| | | | Originally committed as revision 25266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extract timestamp correction code from ffplay.c to cmdutils.cAlexander Strange2010-09-28
| | | | Originally committed as revision 25241 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable AV_LOG_SKIP_REPEATED to maintain previous behavior.Michael Niedermayer2010-09-24
| | | | Originally committed as revision 25175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make ffplay -h show the settable AVOptions.Stefano Sabatini2010-09-24
| | | | Originally committed as revision 25167 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent.Stefano Sabatini2010-09-07
| | | | Originally committed as revision 25068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move av_picture_data_copy() to libavcore, and rename itStefano Sabatini2010-09-07
| | | | | | av_image_copy(). Originally committed as revision 25067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add _XOPEN_SOURCE definition for usleep().Dave Yeo2010-08-23
| | | | | | patch by Dave Yeo, daveryeo telus net Originally committed as revision 24893 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mention lowres if SDL can't provide the needed resolution.Carl Eugen Hoyos2010-08-17
| | | | Originally committed as revision 24802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix SDL crash on specific hardware.Mike Scheutzow2010-08-17
| | | | | | Patch by Mike Scheutzow, mjs973 optonline net Originally committed as revision 24801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move do_exit() up for upcoming patch.Mike Scheutzow2010-08-17
| | | | | | Patch by Mike Scheutzow, mjs973 optonline net Originally committed as revision 24800 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Resize data and linesize in AVFilterBufferRef to 8.S.N. Hemanth Meenakshisundaram2010-08-11
| | | | | | | | | This is required to make AVFilterBufferRef able to contain also audio data, required by audio filtering integration. Patch by S.N. Hemanth Meenakshisundaram smeen?ks@ucsd.ed?. Originally committed as revision 24773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change avfilter_open() signature, from:Stefano Sabatini2010-08-11
| | | | | | | | | | | AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name); to: int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name); This way it is possible to propagate an error code telling the reason of the failure. Originally committed as revision 24765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Separate video specific BufferRef properties into VideoProps.S.N. Hemanth Meenakshisundaram2010-08-11
| | | | | | | | | | | | Define a new struct AVFilterBufferRefVideoProps and add a type field to AVFilterBufferRef. Video specific properties in AVFilterBufferRefVideoProps are now referred to by *video pointer in AVFilterBufferRef. Patch by S.N. Hemanth Meenakshisundaram smeenaks->ucsd.edu. Originally committed as revision 24763 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename fields:S.N. Hemanth Meenakshisundaram2010-08-07
| | | | | | | | | | | | | | AVFilterLink.srcpic -> AVFilterLink.src_buf AVFilterLink.cur_pic -> AVFilterLink.cur_buf AVFilterLink.outpic -> AVFilterLink.out_buf The new names are more generic and more consistent, since the struct they contain, which was named AVFilterPicRef, has been renamed to AVFilterBufferRef. Patch by S.N. Hemanth Meenakshisundaram %smeenaks%ucsd%edu%. Originally committed as revision 24732 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename functions and fields:S.N. Hemanth Meenakshisundaram2010-08-07
| | | | | | | | | | | | avfilter_(un)ref_pic -> avfilter_(un)ref_buffer avfilter_copy_picref_props -> avfilter_copy_buffer_ref_props AVFilterBufferRef.pic -> AVFilterBufferRef.buffer They have been renamed to allow sharing with audio. Patch by S.N. Hemanth Meenakshisundaram $smeenaks$ucsd$edu$. Originally committed as revision 24731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename AVFilterPicRef to AVFilterBufferRef.S.N. Hemanth Meenakshisundaram2010-08-07
| | | | | | | | | The struct is going to be used for storing audio buffer references as well, and the new name is more generic. Patch by S.N. Hemanth Meenakshisundaram @smeenaks@ucsd@edu@. Originally committed as revision 24730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move format from AVFilterBuffer to AVFilterPicRef.S.N. Hemanth Meenakshisundaram2010-08-07
| | | | | | Patch by S.N. Hemanth Meenakshisundaram |smeenaks|ucsd|edu|. Originally committed as revision 24728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_parse_video_frame_size() and av_parse_video_frame_rate()Stefano Sabatini2010-07-26
| | | | | | | | | | | in favor of the newly added corresponding functions av_parse_video_size() and av_parse_video_rate() defined in libavcore/parseutils.h. This change also adds a linking-time dependency of libavcodec and of libavfilter on libavcore. Originally committed as revision 24518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add avsubtitle_free function.Reimar Döffinger2010-07-11
| | | | Originally committed as revision 24185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay : Fix segfault when playing monoaural streams.Jai Menon2010-07-07
| | | | Originally committed as revision 24090 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement -onkeydown and -onmousedown options for ffplay.Alexei Svitkine2010-07-04
| | | | | | | | | | Patch by Alexei Svitkine cout << name << "." << surname << "@" << "gmail.com". See thread: Subject: [FFmpeg-devel] new command-line option for ffplay Date: Wed, 23 Jun 2010 09:13:50 -0400 Originally committed as revision 24037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay : Copy all AVFrame fields from the reference picture to theJai Menon2010-07-03
| | | | | | requested buffer. Originally committed as revision 24032 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move colorspace.h from libavcodec to libavutil.Stefano Sabatini2010-07-01
| | | | | | Avoid a compile-time dependency of the pad filter on libavcodec. Originally committed as revision 23940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffplay: remove VLAMåns Rullgård2010-06-29
| | | | Originally committed as revision 23892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix pts reordering code.Michael Niedermayer2010-05-27
| | | | | | This fixes a regression introduced when libavfilter support was added to ffplay. Originally committed as revision 23343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay : Implement custom reget_buffer for the input filter.Jai Menon2010-05-24
| | | | Originally committed as revision 23287 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics : re-indent after last commit.Jai Menon2010-05-23
| | | | Originally committed as revision 23265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* FFplay : Avoid manipulating NULL data pointers so that future checksJai Menon2010-05-23
| | | | | | | remain valid. This fixes segfaults for those cases where data copy to this invalid pointer is attempted. Originally committed as revision 23264 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid mixed declaration and code, fix C89 compatibility.François Revol2010-05-15
| | | | | | Patch by François Revol revol free fr. Originally committed as revision 23143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename -vfilters cli option to -vf in ffplay as wellBaptiste Coudurier2010-05-12
| | | | Originally committed as revision 23104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix auto-scaling.Stefano Sabatini2010-05-08
| | | | | | | | Use the numeric value assigned to sws_flags for the sws_flags set in the graph, rather than the string "bilinear", which is not even parsable by the scale filter. Originally committed as revision 23060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation error of ffmpeg and ffplay with --disable-avdevice.Cyril Russo2010-04-22
| | | | | | Patch by Cyril Russo, stage D nexvision A laposte net Originally committed as revision 22940 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ffplay : Add 's' to the list of supported commands.Jai Menon2010-04-09
| | | | Originally committed as revision 22823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add -t option to ffplay.Robert Krüger2010-04-01
| | | | | | Patch by Robert Krüger, krueger signal7 de Originally committed as revision 22764 to svn://svn.ffmpeg.org/ffmpeg/trunk