- 22 Jan, 2019 1 commit
-
-
Lou Logan authored
Signed-off-by:
Lou Logan <lou@lrcd.com> Signed-off-by:
Kieran O Leary <kieran.o.leary@gmail.com>
-
- 28 Jan, 2018 1 commit
-
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 13 Nov, 2017 1 commit
-
-
Steven Liu authored
fix ticket id: #1452 when use frame_pts option, the output image name can be set with PTS of current frame. Signed-off-by:
Steven Liu <lq@onvideo.cn>
-
- 01 Nov, 2017 1 commit
-
-
Gyan Doshi authored
'updatefirst' is an undocumented option redundant to older option 'update'. Since it doesn't serve as a shorthand, this patch removes it.
-
- 26 Sep, 2017 2 commits
-
-
James Almer authored
It's unnecessary after a call to av_packet_ref(). Signed-off-by:
James Almer <jamrial@gmail.com>
-
James Almer authored
Signed-off-by:
James Almer <jamrial@gmail.com>
-
- 30 Aug, 2017 1 commit
-
-
Paras Chadha authored
Signed-off-by:
Paras Chadha <paraschadha18@gmail.com>
-
- 01 Nov, 2016 2 commits
-
-
Michael Niedermayer authored
breaks API Found-by: jamrial This reverts commit 1a956c64.
-
rogerdpack authored
Signed-off-by:
rogerdpack <rogerpack2005@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 04 Aug, 2016 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 19 Apr, 2016 1 commit
-
-
Luca Barbato authored
And use it for the separate-plane side-feature as well. Bug-Id: 935
-
- 23 Feb, 2016 1 commit
-
-
Anton Khirnov authored
Currently, AVStream contains an embedded AVCodecContext instance, which is used by demuxers to export stream parameters to the caller and by muxers to receive stream parameters from the caller. It is also used internally as the codec context that is passed to parsers. In addition, it is also widely used by the callers as the decoding (when demuxer) or encoding (when muxing) context, though this has been officially discouraged since Libav 11. There are multiple important problems with this approach: - the fields in AVCodecContext are in general one of * stream parameters * codec options * codec state However, it's not clear which ones are which. It is consequently unclear which fields are a demuxer allowed to set or a muxer allowed to read. This leads to erratic behaviour depending on whether decoding or encoding is being performed or not (and whether it uses the AVStream embedded codec context). - various synchronization issues arising from the fact that the same context is used by several different APIs (muxers/demuxers, parsers, bitstream filters and encoders/decoders) simultaneously, with there being no clear rules for who can modify what and the different processes being typically delayed with respect to each other. - avformat_find_stream_info() making it necessary to support opening and closing a single codec context multiple times, thus complicating the semantics of freeing various allocated objects in the codec context. Those problems are resolved by replacing the AVStream embedded codec context with a newly added AVCodecParameters instance, which stores only the stream parameters exported by the demuxers or read by the muxers.
-
- 14 Feb, 2016 3 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Marton Balint authored
Currently it is broken when explicitly using the file protocol, it uses an insecure temporary file name, and in commit b4431c80 disabling the option by default was already considered. Also it is not very consistent to have such an option for one particular muxer. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 27 Jan, 2016 1 commit
-
-
Derek Buitenhuis authored
Libav, for some reason, merged this as a public API function. This will aid in future merges. A define is left for backwards compat, just in case some person used it, since it is in a public header. Signed-off-by:
Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
- 24 Jan, 2016 1 commit
-
-
Anton Khirnov authored
Some (de)muxers open additional files beyond the main IO context. Currently, they call avio_open() directly, which prevents the caller from using custom IO for such streams. This commit adds callbacks to AVFormatContext that default to avio_open2()/avio_close(), but can be overridden by the caller. All muxers and demuxers using AVIO are switched to using those callbacks instead of calling avio_open()/avio_close() directly. (de)muxers that use the URLProtocol layer directly instead of AVIO remain unconverted for now. This should be fixed in later commits.
-
- 21 Dec, 2015 1 commit
-
-
Clément Bœsch authored
This behaviour change caused a regression on our side recently, we might want to disable the option by default.
-
- 04 Dec, 2015 1 commit
-
-
Clément Bœsch authored
-
- 28 Oct, 2015 1 commit
-
-
Michael Niedermayer authored
They work now after fixing the implementation Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 27 Oct, 2015 3 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
For protocols other than local files ff_rename() is not implemented For split planes support the implementation is simply wrong Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Hendrik Leppkes authored
-
- 23 Oct, 2015 1 commit
-
-
Luca Barbato authored
Users that want to generate a live-preview and serve it would otherwise get partial images.
-
- 08 Sep, 2015 1 commit
-
-
Hendrik Leppkes authored
-
- 07 Sep, 2015 1 commit
-
-
tab authored
Allows avformat_query_codec to be used to check for valid image2 encoders. Reuses the existing ff_guess_image2_codec ID table. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 14 Feb, 2015 1 commit
-
-
Diego Biurrun authored
-
- 08 Jan, 2015 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 Nov, 2014 2 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Found-by: jamrial Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 05 Apr, 2014 1 commit
-
-
Carl Eugen Hoyos authored
-
- 26 Mar, 2014 1 commit
-
-
Vittorio Giovara authored
-
- 16 Mar, 2014 1 commit
-
-
Jean First authored
Some applications use the j2c extension for jpeg2000 codestream files.
-
- 21 Dec, 2013 1 commit
-
-
Justin Ruggles authored
-
- 07 Nov, 2013 3 commits
-
-
Clément Bœsch authored
-
Clément Bœsch authored
-
Clément Bœsch authored
Fixes Ticket #2936.
-
- 21 Sep, 2013 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 22 Aug, 2013 1 commit
-
-
Stefano Sabatini authored
Address trac ticket #2884.
-
- 18 Jul, 2013 1 commit
-
-
Ramiro Polla authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-