- 03 Oct, 2017 1 commit
-
-
Carl Eugen Hoyos authored
Fixes ticket #5925. Reviewed-by: Marton
-
- 23 Sep, 2017 2 commits
-
-
Marton Balint authored
Fixes ticket #6631. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 31 Aug, 2017 2 commits
-
-
孙浩(晓黑) authored
Fixes: 20170829B.mxf Co-Author: 张洪亮(望初)" <wangchu.zhl@alibaba-inc.com> Found-by: Xiaohei and Wangchu from Alibaba Security Team Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
孙浩(晓黑) authored
Fixes: 20170829A.mxf Co-Author: 张洪亮(望初)" <wangchu.zhl@alibaba-inc.com> Found-by: Xiaohei and Wangchu from Alibaba Security Team Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 01 Feb, 2017 1 commit
-
-
Anton Khirnov authored
-
- 22 Nov, 2016 1 commit
-
-
Andreas Cadhalpun authored
Metadata streams have priv_data set to NULL. Reviewed-by:
Josh de Kock <josh@itanimul.li> Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
- 05 Nov, 2016 1 commit
-
-
Andreas Cadhalpun authored
Metadata streams have priv_data set to NULL. Reviewed-by:
Michael Niedermayer <michael@niedermayer.cc> Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
- 21 Oct, 2016 6 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Mark Reid authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Mark Reid authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Mark Reid authored
Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Tobias Rapp authored
Read video_line_map from MXF generic picture essence descriptor and use it to derive the coded field order. Use field_dominance to derive the display field order from coded field order. If field_dominance is not available the default value "1" is used as defined in SMPTE S377-1. Fixes field_order detection for a bunch of DV/DVCPRO files. The heuristic for deriving coded field order from video_line_map is inspired by MediaInfo. Signed-off-by:
Tobias Rapp <t.rapp@noa-archive.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 30 Sep, 2016 1 commit
-
-
Anton Khirnov authored
It is supposed to be a flag. The only currently defined value is AVIO_SEEKABLE_NORMAL, but other ones may be added in the future. However all the current lavf code treats this field as a bool (mainly for historical reasons). Change all those cases to properly check for AVIO_SEEKABLE_NORMAL.
-
- 20 Sep, 2016 1 commit
-
-
Mark Reid authored
This commit fixes a issue with mxf footage having multiple components on a material track. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 28 Aug, 2016 1 commit
-
-
Marton Balint authored
Use proper ISO 8601 timestamps which also signal that they are in UTC. This changes the format of creation_time and modification_date metadata values from 2016-06-01 22:30:00 to 2016-01-01T22:30:00.000000Z Fixes ticket #5673. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 31 Jul, 2016 1 commit
-
-
Anton Khirnov authored
-
- 13 Jun, 2016 1 commit
-
-
Marton Balint authored
Fixes ticket #5554. Reviewed-by:
Tomas Härdin <tomas.hardin@codemill.se> Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 04 May, 2016 1 commit
-
-
Vittorio Giovara authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 28 Mar, 2016 1 commit
-
-
Lou Logan authored
Signed-off-by:
Lou Logan <lou@lrcd.com>
-
- 14 Mar, 2016 1 commit
-
-
Carl Eugen Hoyos authored
-
- 10 Mar, 2016 1 commit
-
-
Carl Eugen Hoyos authored
Fixes ticket #5316.
-
- 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.
-
- 08 Dec, 2015 1 commit
-
-
Marton Balint authored
Regression since 53f2ef2c. Fixes ticket #5017. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 07 Dec, 2015 1 commit
-
-
Anshul Maheshwari authored
Signed-off-by:
Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 29 Nov, 2015 1 commit
-
-
Carl Eugen Hoyos authored
Fixes ticket #5029. Reported and analyzed by videolan trac user HenkDemper in vlc ticket #15762.
-
- 18 Nov, 2015 1 commit
-
-
Andreas Cadhalpun authored
Previously only the edit_rate of material_track was checked. If it's negative, it causes assertion failures in av_rescale_rnd. Reviewed-by:
Tim Nicholson <nichot20-at-yahoo.com@ffmpeg.org> Signed-off-by:
Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
-
- 21 Oct, 2015 2 commits
-
-
Alexis Ballier authored
libavformat/mxfdec.c: Report dark metadata keys only when they match no parser at all, not everytime they fail to match one. Reviewed-by:
Tomas Härdin <tomas.hardin@codemill.se> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
Alexis Ballier authored
Reviewed-by:
Tomas Härdin <tomas.hardin@codemill.se> Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 04 Sep, 2015 2 commits
-
-
Arnaud Bienner authored
Signed-off-by:
Carl Eugen Hoyos <cehoyos@ag.or.at>
-
Carl Eugen Hoyos authored
Fixes decoding for the sample from ticket #4820.
-
- 14 Aug, 2015 1 commit
-
-
Marton Balint authored
Since 53f2ef2c seeking is done using PTS. Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 04 Aug, 2015 1 commit
-
-
Matthieu Bouron authored
According to S377M, segmented frame layout is identical to separate field layout except that the two fields are taken from a single scan of the incoming image, ie: they are coincident in time. Thus the resulting frame is progressive. Signed-off-by:
Michael Niedermayer <michael@niedermayer.cc>
-
- 27 Jul, 2015 1 commit
-
-
Vittorio Giovara authored
Signed-off-by:
Vittorio Giovara <vittorio.giovara@gmail.com>
-
- 22 Jul, 2015 2 commits
-
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
-
- 16 Jul, 2015 1 commit
-
-
Marton Balint authored
This should fix seeking for open GOP files as well. Reviewed-by:
Tomas Härdin <tomas.hardin@codemill.se> Signed-off-by:
Marton Balint <cus@passwd.hu>
-
- 16 Jun, 2015 1 commit
-
-
Michael Niedermayer authored
This should make no difference as the byte is ignored Found-by:
tim nicholson <nichot20@yahoo.com> Reviewed-by:
tim nicholson <nichot20@yahoo.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 12 Jun, 2015 1 commit
-
-
Michael Niedermayer authored
Fixes Ticket2345 Reviewed-by:
Paul B Mahol <onemda@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-