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
2014-07-09avconv: set the output stream timebaseAnton Khirnov
This is required by the new API.
2014-06-20Use av_packet_rescale_ts() to simplify code.Anton Khirnov
2014-06-17avconv: use the correct variable in comparisonAnton Khirnov
2014-06-12avconv: make -shortest work with streamcopyAnton Khirnov
CC: libav-stable@libav.org
2014-06-04avconv: Report the codec and the encoder separatelyLuca Barbato
Bug-Id: 694
2014-06-01avconv: do not use the stream codec context for encodingAnton Khirnov
2014-06-01avconv: do not use the stream codec context for decodingAnton Khirnov
2014-05-19avconv: do not use poorly defined and undocumented AVStream.ptsAnton Khirnov
Use OutputStream.last_mux_dts as an approximation of 'current' output time instead.
2014-05-18avconv: set the "encoder" tag when transcodingAnton Khirnov
2014-05-18avconv: set output avg_frame_rate when knownAnton Khirnov
2014-05-03avconv: rename OutputStream.opts to OutputStream.encoder_optsAnton Khirnov
This makes it more clear what is this variable for exactly.
2014-05-03avconv: remove a useless lineAnton Khirnov
Doing anything with that field when we are doing streamcopy (so the encoder is not opened) should have absolutely no effect.
2014-05-03avconv: rename 'codec' to 'enc_ctx'Anton Khirnov
This more clearly describes what is the variable used for. Also, move its declaration into the block where it is actually used.
2014-05-03avconv: rename 'icodec' to 'dec_ctx'Anton Khirnov
This more clearly describes what is the variable used for.
2014-05-03avconv: rename InputStream.opts to InputStream.decoder_optsAnton Khirnov
This makes it more clear what is this variable for exactly.
2014-05-03avconv: simplify exit_program() by using more local varsAnton Khirnov
2014-04-22avconv: always reset packet pts after decoding an audio frameAnton Khirnov
Currently, if a decoder sets AVFrame.pts, we'd send the same timestamp to it twice, which is wrong.
2014-03-25avconv: More descriptive message about framedropVittorio Giovara
2014-03-24avconv: don't warn on multiple frames per packet for codecs that expect itAnton Khirnov
2014-03-24avconv: print verbose per-stream transcoding statisticsAnton Khirnov
2014-03-24avconv: split printing the final statistics into a separate functionAnton Khirnov
2014-03-24avconv: rewrite output data size trackingAnton Khirnov
Store a variable per OutputStream instead of globals for audio/video/extradata. This makes the code simpler and cleaner and fixes 2pass with multiple output streams.
2014-03-24avconv: explicitly report when the muxing overhead is unknownAnton Khirnov
2014-03-24avconv: remove unused nb_frames_dupAnton Khirnov
Frame duplication now happens in vf_fps.
2014-03-24avconv: add stream-global side data to the first demuxed packetAnton Khirnov
2014-02-24avconv: remove a write-only variableAnton Khirnov
2014-02-20avconv: Do not divide by zeroLuca Barbato
2014-01-17avconv: print a warning when falling back to default 25fpsAnton Khirnov
2013-12-11avconv: do not call avcodec_get_frame_defaults()Anton Khirnov
Strictly speaking it is not correct to call it on refcounted frames, in any case it is unnecessary, since filtered_frame is always unreferenced after poll_filter() returns.
2013-12-11Replace all uses of avcodec_free_frame with av_frame_free().Anton Khirnov
2013-11-24Add missing #includes for *INT64_MAX and *INT64_CDiego Biurrun
2013-11-23avconv: add infrastructure for using hwaccelsAnton Khirnov
2013-11-16Replace all instances of avcodec_alloc_frame() with av_frame_alloc().Anton Khirnov
2013-10-31lavc: deprecate FF_DEBUG_MV and remove all traces of its useAnton Khirnov
It has not been actually used since 37045e422903695e610cca6ecb753df643ab9380, when the broken vismv code was removed.
2013-10-29avconv: stop accessing AVStream.parserAnton Khirnov
It is private and must not be touched from outside of lavf.
2013-10-28avconv: drop a now useless variableAnton Khirnov
2013-08-05avconv: support -t as an input option.Anton Khirnov
It limits the duration of the data read from a given input.
2013-08-05avconv: distinguish between -ss 0 and -ss not being usedAnton Khirnov
Using -ss 0 to drop frames with negative timestamps is a perfectly valid use case.
2013-07-07cmdutils: wrap exit explicitlyLuca Barbato
Some C runtime implementations deadlock when calling threading functions on the atexit() handler. Use a simpler wrapper similar to av_log to call the cleanup function before exit. Bug-Id: 523
2013-06-29avconv: Don't include colorspace.hDerek Buitenhuis
The header is private, and avconv.c doesn't use it for anything. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-06-22avconv: report the error for codec open failureLuca Barbato
External codec may have corner case reason to fail at init, better report them instead having the user wonder.
2013-06-22avconv: drop additional strerror fallbackLuca Barbato
strerror_r is called by av_strerror already.
2013-06-04avconv: check that the output format context exists before accessing itAnton Khirnov
Fixes a segfault in exit_program() if opening an output file fails.
2013-05-27avconv: make -aspect work with streamcopyAnton Khirnov
2013-05-07avconv: remove -deinterlaceAnton Khirnov
It is incompatible with refcounted frames and since it's been deprecated for a long time now, fixing it is not worth the effort.
2013-05-03avconv: do not send non-monotonous DTS to the muxers.Anton Khirnov
Hack partially based on a commit by Michael Niedermayer <michaelni@gmx.at> Should fix (or work around) bug 458.
2013-05-03avconv: improve -re implementationAnton Khirnov
Integrate the code in the packet reading function, instead of inserting sleeps in many places. This is simpler to follow and should work better.
2013-04-30avconv: make output -ss insert trim/atrim filters.Anton Khirnov
This makes output -ss sample-accurate for audio and will allow further simplication in the future.
2013-04-30avconv: make -t insert trim/atrim filters.Anton Khirnov
This makes -t sample-accurate for audio and will allow further simplication in the future. Most of the FATE changes are due to audio now being sample accurate. In some cases a video frame was incorrectly passed with the old code, while its was over the limit.
2013-04-11lavfi: change the filter registering system to match the other librariesAnton Khirnov
Removes an arbitrary hardcoded limit on the number of filters.