Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-01-19cosmetics: Rename ffsink to avsink.Diego Biurrun
2012-01-11Fix a bunch of platform name and other typos.Diego Biurrun
2012-01-04avplay: Don't call avio_set_interrupt_cb(NULL)Martin Storsjö
Since we don't use avio_set_interrupt_cb for interrupt callbacks, we don't need to call it to reset the interrupt cb either. This avoids a warning about use of deprecated functions. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-01avplay: K&R cleanupAneesh Dogra
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-12-31cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun
2011-12-25lavfi: add avfilter_copy_frame_props()Stefano Sabatini
avfilter_copy_frame_props() avoids code duplication and increases robustness.
2011-12-25lavc: add a sample_aspect_ratio field to AVFrameStefano Sabatini
The sample aspect ratio is a per-frame property, so it makes sense to define it in AVFrame rather than in the codec/stream context. Simplify application-level sample aspect ratio information extraction, and allow further simplifications.
2011-12-19avplay: clear pkt_temp when pkt is freed.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2011-12-19avcodec: deprecate AVFrame.ageMans Rullgard
This was intended as an optimisation for skipped blocks in MPEG2 P-frames and never used elsewhere. Removing this "optimisation" speeds up MPEG2 decoding by 1-2% (ARM Cortex-A9). Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-12-12Replace all uses of av_close_input_file() with avformat_close_input().Anton Khirnov
2011-12-11avplay: don't request a stereo downmixJustin Ruggles
Multi-channel output works just fine for me with SDL 1.2.14.
2011-12-05avplay: use avcodec_decode_audio4()Justin Ruggles
2011-12-05avplay: use a separate buffer for playing silenceJustin Ruggles
2011-11-18avplay: Set the new interrupt callbackMartin Storsjö
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-11-08avplay: reset rdft when closing stream.Justin Ruggles
this fixes a crash when cycling audio streams if the spectrograph is displayed.
2011-11-06Call avformat_network_init/deinit in the programsMartin Storsjö
Calling the init function will become mandatory at some later point. By calling it, more heavy network init (such as SSL/TLS library init) can be done once at startup, instead of implicitly when used (which could lead to it being done a number of times). Signed-off-by: Martin Storsjö <martin@martin.st>
2011-11-02Replace outdated references to ffmpeg tool with avconv.Diego Biurrun
2011-10-22avplay: fix fullscreen behaviour with SDL 1.2.14 on Mac OS XMarton Balint
The blue channel went missing when toggling fullscreen on Mac OS X.
2011-10-18macosx: use the default surface on newer sdlLuca Barbato
SDL 1.2.14 works fine with default colorspace on macosx and seems to have some issues with 24bit surfaces and resize in addition.
2011-10-13avplay: free the active audio packet at exit.Justin Ruggles
fixes a memleak
2011-10-13avplay: free rdft data used for spectrogram analysis.Justin Ruggles
fixes a memleak
2011-10-12cmdutils/avtools: simplify show_help() by using av_opt_child_class_next()Anton Khirnov
2011-09-26avtools: parse loglevel before all the other options.Anton Khirnov
This way it can be applied to cmdutils too -- e.g. showing the banner and printing startup messages.
2011-09-22avplay: flush audio decoder with empty packets at EOF if the decoder hasJustin Ruggles
CODEC_CAP_DELAY set.
2011-09-04cmdutils: add support for caller-provided option context.Anton Khirnov
This is the first step to removing the globals plague from avtools.
2011-09-04cmdutils: move exit_program() declaration to cmdutils from avconvAnton Khirnov
Allows cmdutils to call each tool's own cleanup function.
2011-09-03cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov
Replace it with newly introduced libavutil API.
2011-08-15avtools: reinitialise filter chain when input video stream changes dimensionsKostya
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-12cmdutils: allow precisely specifying a stream for AVOptions.Anton Khirnov
2011-08-09Rename ffplay to avplay.Anton Khirnov