On 01.08.2017 17:01, Muhammad Faiz wrote:
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libavfilter/vf_ssim.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c
index c3c204268f..dfd276e015 100644
--- a/libavfilter/vf_ssim.c
+++
---
Changelog| 2 +
doc/demuxers.texi| 17
libavformat/Makefile | 1 +
libavformat/allformats.c | 1 +
libavformat/cuedec.c | 246 +++
libavformat/version.h| 2 +-
6 files changed, 268 insertions(+), 1 de
---
doc/muxers.texi | 4
libavformat/segment.c | 40 +---
2 files changed, 33 insertions(+), 11 deletions(-)
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 23ef2e7..93147e1 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -1576,6 +1576,10
---
doc/muxers.texi | 6 +
libavformat/segment.c | 65 +++
libavformat/version.h | 2 +-
3 files changed, 67 insertions(+), 6 deletions(-)
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 94472ce..23ef2e7 100644
--- a/doc/muxers.texi
---
libavformat/segment.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavformat/segment.c b/libavformat/segment.c
index 590f62b..ef0a915 100644
--- a/libavformat/segment.c
+++ b/libavformat/segment.c
@@ -182,6 +182,7 @@ static int segment_mux_init(AVFormatContext *s)
}
---
libavformat/flacenc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c
index 9768b6a..1906aee 100644
--- a/libavformat/flacenc.c
+++ b/libavformat/flacenc.c
@@ -322,7 +322,7 @@ static int flac_write_trailer(struct AVFormatContext
---
libavformat/flacenc.c | 285 +++---
1 file changed, 250 insertions(+), 35 deletions(-)
diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c
index b894f9e..9768b6a 100644
--- a/libavformat/flacenc.c
+++ b/libavformat/flacenc.c
@@ -21,10 +21,13
---
libavformat/flacenc.c| 87 ++--
tests/ref/acodec/flac| 4 +-
tests/ref/acodec/flac-exact-rice | 4 +-
tests/ref/seek/acodec-flac | 36 -
4 files changed, 106 insertions(+), 25 deletions(-)
diff --git a/libavfo
The following patchset adds support for V4L2 mem2mem codecs.
This feature gives ffmpeg access to any hardware codec implementing the
V4L2 API. Since the number of hardware codecs implementing this API is
expected to increase, we believe it will be benefitial to all users to
integrate its support i
From: Alexis Ballier
In preparation to support the integation of the V4L2 API for encoding
and decoding, move v4l2 related files to libavcodec.
Signed-off-by: Alexis Ballier
Reviewed-by: Jorge Ramirez-Ortiz
---
configure | 6 ++-
libavcodec/Makefile | 1 +
libavcodec
From: Alexis Ballier
In addition, enable the multi planar raw formats.
Reviewed-by: Jorge Ramirez
Tested-by: Jorge Ramirez
---
libavcodec/v4l2-common.c | 30 ++
1 file changed, 30 insertions(+)
diff --git a/libavcodec/v4l2-common.c b/libavcodec/v4l2-common.c
index
From: Alexis Ballier
Extend the mapping function to use the v4l2 conversion tables.
Reviewed-by: Jorge Ramirez
Tested-by: Jorge Ramirez
---
libavcodec/v4l2-common.c | 63
libavcodec/v4l2-common.h | 7 +-
libavdevice/v4l2.c | 2 +-
l
On Tue, Aug 1, 2017 at 2:54 PM, Jorge Ramirez-Ortiz
wrote:
> From: Alexis Ballier
>
> This patchset enhances Alexis Ballier's original patch and validates
> it using Qualcomm's Venus hardware (driver recently landed upstream
> [1]).
>
> This has been tested on Qualcomm's DragonBoard 410c and 820c
On 01.08.2017 17:33, Paul B Mahol wrote:
On 8/1/17, Tobias Rapp wrote:
On 01.08.2017 15:31, Paul B Mahol wrote:
On 8/1/17, Tobias Rapp wrote:
On 01.08.2017 13:03, Paul B Mahol wrote:
Signed-off-by: Paul B Mahol
---
doc/filters.texi | 13 ++
libavfilter/Makefile | 1
On Wed, Aug 02, 2017 at 03:18:49AM +0200, Michael Niedermayer wrote:
> This seems to break a full "make fate"
OK, removing the offending line and resending.
/* Steinar */
--
Homepage: https://www.sesse.net/
___
ffmpeg-devel mailing list
ffmpeg-devel@ff
The height convention for decoding frames with only a single field made sense
for compatibility with legacy decoders, but doesn't really match the convention
used by NDI, which is the primary (only?) user. Thus, change it to simply
assuming that if the two fields overlap, the frame is meant to be a
Also add simple FATE tests, based on output produced by the NDI SDK.
---
tests/Makefile | 1 +
tests/fate/vcodec.mak | 2 ++
tests/ref/fate/speedhq-422 | 6 ++
tests/ref/fate/speedhq-422-singlefield | 6 ++
4 files changed, 15 insertions
---
MAINTAINERS | 2 ++
1 file changed, 2 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index ae0e08d121..ce5e1dae08 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -233,6 +233,7 @@ Codecs:
smvjpegdec.c Ash Hughes
snow* Michael N
Le quintidi 15 thermidor, an CCXXV, Jorge Ramirez-Ortiz a écrit :
> From: Alexis Ballier
>
> In preparation to support the integation of the V4L2 API for encoding
> and decoding, move v4l2 related files to libavcodec.
>
> Signed-off-by: Alexis Ballier
> Reviewed-by: Jorge Ramirez-Ortiz
> ---
>
Add synchronous metadata to mpegtsenc
* Added AV_CODEC_ID_SYNCHRONOUS_METADATA
* PMT will have metadata_descriptor and metadata_std_descriptor
in accordance with MISB ST 1402.2
* stream_type will be 0x15 metadata carried in PES packets
* stream_id will be 0xfc metadata stream
Users must supply M
On 08/02/2017 10:29 AM, Nicolas George wrote:
Le quintidi 15 thermidor, an CCXXV, Jorge Ramirez-Ortiz a écrit :
From: Alexis Ballier
In preparation to support the integation of the V4L2 API for encoding
and decoding, move v4l2 related files to libavcodec.
Signed-off-by: Alexis Ballier
Review
On 08/02/2017 09:33 AM, Hendrik Leppkes wrote:
On Tue, Aug 1, 2017 at 2:54 PM, Jorge Ramirez-Ortiz
wrote:
From: Alexis Ballier
This patchset enhances Alexis Ballier's original patch and validates
it using Qualcomm's Venus hardware (driver recently landed upstream
[1]).
This has been tested o
On 02/08/17 08:32, Jorge Ramirez-Ortiz wrote:
> From: Alexis Ballier
>
> This patchset enhances Alexis Ballier's original patch and validates
> it using Qualcomm's Venus hardware (driver recently landed upstream
> [1]).
>
> This has been tested on Qualcomm's DragonBoard 410c and 820c
>
> Tested
On Wed, Aug 2, 2017 at 2:10 PM, Tobias Rapp wrote:
> On 01.08.2017 17:01, Muhammad Faiz wrote:
>>
>> Fix Ticket6519.
>>
>> Signed-off-by: Muhammad Faiz
>> ---
>> libavfilter/vf_ssim.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/libavfilter/vf_ssim.c b/libavfilter/
On 02.08.2017 12:31, Muhammad Faiz wrote:
On Wed, Aug 2, 2017 at 2:10 PM, Tobias Rapp wrote:
On 01.08.2017 17:01, Muhammad Faiz wrote:
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libavfilter/vf_ssim.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_s
Hi,
On Wed, Aug 2, 2017 at 3:10 AM, Tobias Rapp wrote:
> On 01.08.2017 17:01, Muhammad Faiz wrote:
>
>> Fix Ticket6519.
>>
>> Signed-off-by: Muhammad Faiz
>> ---
>> libavfilter/vf_ssim.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/libavfilter/vf_ssim.c b/libavfi
On Sun, Jul 23, 2017 at 6:16 PM, Carl Eugen Hoyos
wrote:
> 2017-07-22 15:39 GMT+02:00 Aaron Boxer :
>
> > GStreamer project now has a working muxer/demuxer for J2K over MPEG TS.
>
> Did you test it?
>
I have acquired a test capture of VSF TR1 video from a nevion VS902:
http://s3.amazonaws.com/
On 02.08.2017 14:04, Ronald S. Bultje wrote:
Hi,
On Wed, Aug 2, 2017 at 3:10 AM, Tobias Rapp wrote:
On 01.08.2017 17:01, Muhammad Faiz wrote:
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libavfilter/vf_ssim.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfi
On 08/02/2017 12:16 PM, Mark Thompson wrote:
On 02/08/17 08:32, Jorge Ramirez-Ortiz wrote:
From: Alexis Ballier
This patchset enhances Alexis Ballier's original patch and validates
it using Qualcomm's Venus hardware (driver recently landed upstream
[1]).
This has been tested on Qualcomm's Dra
From: Ashish Singh
Signed-off-by: Ashish Singh
---
doc/filters.texi| 19 +++
libavfilter/Makefile| 1 +
libavfilter/allfilters.c| 1 +
libavfilter/vf_vmafmotion.c | 404
libavfilter/vmaf_motion.h | 42 +
5 files ch
On Wed, Aug 02, 2017 at 01:30:44AM -0500, Rodger Combs wrote:
> ---
> libavformat/flacenc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c
> index 9768b6a..1906aee 100644
> --- a/libavformat/flacenc.c
> +++ b/libavformat/flac
On Wed, Aug 02, 2017 at 09:32:51AM +0200, Jorge Ramirez-Ortiz wrote:
> From: Alexis Ballier
>
> In addition, enable the multi planar raw formats.
>
> Reviewed-by: Jorge Ramirez
> Tested-by: Jorge Ramirez
> ---
> libavcodec/v4l2-common.c | 30 ++
> 1 file changed, 3
On Tue, Aug 01, 2017 at 02:46:22PM +0100, James Cowgill wrote:
> Fixes filter-pixfmts-scale test failing on big-endian systems due to
> alpSrc not being cast to (const int32_t**).
>
> Also fixes distortions in the output alpha channel values by copying the
> alpha channel code from the rgba64 case
On Tue, Aug 01, 2017 at 02:50:27PM +0300, Александр Слободенюк wrote:
> This is actually a bug, that just doesn't affect anything.
> First of all, the logic of functions that work with ff_codec_bmp_tags
> is "One tag -- one codec id", or "one codec id for one tag".
>
> Also if you write
On Tue, Aug 01, 2017 at 02:55:31PM +0300, Александр Слободенюк wrote:
> This patch was reviewed by Derek Buitenhuis last month and later ignored, no
> idea
> why.
>
> (archive:
> http://ffmpeg-devel.ffmpeg.narkive.com/vnPIkBwh/patch-avformat-riff-h-remove-unused-function-parameter-const-avcodect
On 08/02/2017 02:43 PM, Hendrik Leppkes wrote:
On Wed, Aug 2, 2017 at 11:39 AM, Jorge Ramirez
wrote:
On 08/02/2017 09:33 AM, Hendrik Leppkes wrote:
On Tue, Aug 1, 2017 at 2:54 PM, Jorge Ramirez-Ortiz
wrote:
From: Alexis Ballier
This patchset enhances Alexis Ballier's original patch and val
On Wed, Aug 2, 2017 at 11:39 AM, Jorge Ramirez
wrote:
> On 08/02/2017 09:33 AM, Hendrik Leppkes wrote:
>>
>> On Tue, Aug 1, 2017 at 2:54 PM, Jorge Ramirez-Ortiz
>> wrote:
>>>
>>> From: Alexis Ballier
>>>
>>> This patchset enhances Alexis Ballier's original patch and validates
>>> it using Qualco
Le quintidi 15 thermidor, an CCXXV, Ashish Pratap Singh a écrit :
> +FFDualInputContext dinput;
dualinput is about to be removed, please see the patch series two days
ago.
Regards,
--
Nicolas George
___
ffmpeg-devel mailing list
ffmpeg-devel@ffm
Hi,
On Wed, Aug 2, 2017 at 8:45 AM, Tobias Rapp wrote:
> On 02.08.2017 14:04, Ronald S. Bultje wrote:
>
>> On Wed, Aug 2, 2017 at 3:10 AM, Tobias Rapp
>> wrote:
>>
>>> On 01.08.2017 17:01, Muhammad Faiz wrote:
>>>
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libav
On 8/2/2017 4:39 AM, Steinar H. Gunderson wrote:
> Also add simple FATE tests, based on output produced by the NDI SDK.
> ---
> tests/Makefile | 1 +
> tests/fate/vcodec.mak | 2 ++
> tests/ref/fate/speedhq-422 | 6 ++
> tests/ref/fate/speed
On 8/2/2017 3:30 AM, Rodger Combs wrote:
> ---
> libavformat/flacenc.c | 285
> +++---
> 1 file changed, 250 insertions(+), 35 deletions(-)
>
> diff --git a/libavformat/flacenc.c b/libavformat/flacenc.c
> index b894f9e..9768b6a 100644
[...]
> @@ -166
Hi,
On 02/08/17 14:18, Michael Niedermayer wrote:
> On Tue, Aug 01, 2017 at 02:46:22PM +0100, James Cowgill wrote:
>> Fixes filter-pixfmts-scale test failing on big-endian systems due to
>> alpSrc not being cast to (const int32_t**).
>>
>> Also fixes distortions in the output alpha channel values
On Wed, Aug 2, 2017 at 3:30 PM, Jorge Ramirez
wrote:
> On 08/02/2017 02:43 PM, Hendrik Leppkes wrote:
>>
>> On Wed, Aug 2, 2017 at 11:39 AM, Jorge Ramirez
>> wrote:
>>>
>>> On 08/02/2017 09:33 AM, Hendrik Leppkes wrote:
On Tue, Aug 1, 2017 at 2:54 PM, Jorge Ramirez-Ortiz
wrote:
>>
Hi,
On Aug 2, 2017 19:18, "Nicolas George" wrote:
Le quintidi 15 thermidor, an CCXXV, Ashish Pratap Singh a écrit :
> +FFDualInputContext dinput;
dualinput is about to be removed, please see the patch series two days
ago.
Regards,
--
Ok
Nicolas George
_
On 08/02/2017 04:34 PM, Hendrik Leppkes wrote:
On Wed, Aug 2, 2017 at 3:30 PM, Jorge Ramirez
wrote:
On 08/02/2017 02:43 PM, Hendrik Leppkes wrote:
On Wed, Aug 2, 2017 at 11:39 AM, Jorge Ramirez
wrote:
On 08/02/2017 09:33 AM, Hendrik Leppkes wrote:
On Tue, Aug 1, 2017 at 2:54 PM, Jorge Ramir
On Tue, Aug 1, 2017 at 11:46 PM, Ivan Kalvachev wrote:
> On 7/31/17, Henrik Gramner wrote:
>> Use rN instead of rNq for numbered registers (q suffix is used for
>> named args only due to preprocessor limitations).
>
> Is this documented?
Not sure, but there's probably a bunch small things like t
Also add simple FATE tests, based on output produced by the NDI SDK.
---
tests/Makefile | 1 +
tests/fate/speedhq.mak | 7 +++
tests/ref/fate/speedhq-422 | 6 ++
tests/ref/fate/speedhq-422-singlefield | 6 ++
4 files changed, 20 inser
---
MAINTAINERS | 2 ++
1 file changed, 2 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index ae0e08d121..ce5e1dae08 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -233,6 +233,7 @@ Codecs:
smvjpegdec.c Ash Hughes
snow* Michael N
The height convention for decoding frames with only a single field made sense
for compatibility with legacy decoders, but doesn't really match the convention
used by NDI, which is the primary (only?) user. Thus, change it to simply
assuming that if the two fields overlap, the frame is meant to be a
Le quintidi 15 thermidor, an CCXXV, Jorge Ramirez a écrit :
Could at least one of you trim their mail once in a while please?
> I am probably not the best person to discuss why other libraries/codecs are
> managed the way they are(I lack the background and I would probably be
> spawning discussi
I am probably not the best person to discuss why other libraries/codecs are
managed the way they are(I lack the background and I would probably be
spawning discussions that have been already had);
We could ask it the other way around: do you propose that every single
application that wants to u
On 02/08/17 07:28, Nicolas George wrote:
> L'octidi 8 thermidor, an CCXXV, Li, Zhong a écrit :
>> It is similar to hw_device_match_type_in_name() in ffmpeg_hw.c:
>> if (strstr(codec_name, type_name))
>>return type;
>
> I must say, I really do not like the idea of having an API example
On Wed, Aug 2, 2017 at 7:14 PM, Jorge Ramirez
wrote:
>
> I just think is wrong and I am a bit surprised we could have no real
> argument on the matter.
>
I've asked for your arguments on why v4l2 is so special that it
warrants special treatment above any other external library/headers,
and I have
On 08/02/2017 07:40 PM, Hendrik Leppkes wrote:
On Wed, Aug 2, 2017 at 7:14 PM, Jorge Ramirez
wrote:
I just think is wrong and I am a bit surprised we could have no real
argument on the matter.
I've asked for your arguments on why v4l2 is so special that it
warrants special treatment above any
2017-08-02 14:07 GMT+02:00 Aaron Boxer :
> On Sun, Jul 23, 2017 at 6:16 PM, Carl Eugen Hoyos wrote:
>
>> 2017-07-22 15:39 GMT+02:00 Aaron Boxer :
>>
>> > GStreamer project now has a working muxer/demuxer for
>> > J2K over MPEG TS.
>>
>> Did you test it?
>
> I have acquired a test capture of VSF TR1
On Wed, Aug 2, 2017 at 12:02 PM, Carl Eugen Hoyos
wrote:
> 2017-08-02 14:07 GMT+02:00 Aaron Boxer :
> > On Sun, Jul 23, 2017 at 6:16 PM, Carl Eugen Hoyos wrote:
> >
> >> 2017-07-22 15:39 GMT+02:00 Aaron Boxer :
> >>
> >> > GStreamer project now has a working muxer/demuxer for
> >> > J2K over MPEG
Sorry, it looks like this is a packet capture of mpeg ts.
On Wed, Aug 2, 2017 at 1:26 PM, Aaron Boxer wrote:
>
>
> On Wed, Aug 2, 2017 at 12:02 PM, Carl Eugen Hoyos
> wrote:
>
>> 2017-08-02 14:07 GMT+02:00 Aaron Boxer :
>> > On Sun, Jul 23, 2017 at 6:16 PM, Carl Eugen Hoyos wrote:
>> >
>> >> 20
2017-07-31 23:40 GMT+02:00 Dale Curtis :
> [mov] Bail when invalid sample data is present.
Could you provide such a sample?
Could the patch stop demuxing samples that are
supported so far?
Carl Eugen
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.or
On 02.08.2017, at 19:53, Jorge Ramirez wrote:
> On 08/02/2017 07:40 PM, Hendrik Leppkes wrote:
>> On Wed, Aug 2, 2017 at 7:14 PM, Jorge Ramirez
>> wrote:
>>> I just think is wrong and I am a bit surprised we could have no real
>>> argument on the matter.
>>>
>> I've asked for your arguments on
On 08/02/2017 10:51 PM, Reimar Döffinger wrote:
On 02.08.2017, at 19:53, Jorge Ramirez wrote:
On 08/02/2017 07:40 PM, Hendrik Leppkes wrote:
On Wed, Aug 2, 2017 at 7:14 PM, Jorge Ramirez
wrote:
I just think is wrong and I am a bit surprised we could have no real
argument on the matter.
I'
2017-07-25 21:27 GMT+02:00 Michael Niedermayer :
> On Mon, Jul 24, 2017 at 08:00:51PM +0200, Carl Eugen Hoyos wrote:
>> Attached is a PoC for a code simplification that imo makes a logic in
>> libswscale easier to read and also fixes the Big Endian fate failure.
>> If this approach is preferred, I
On Wed, Aug 02, 2017 at 03:32:04PM +0100, James Cowgill wrote:
> Hi,
>
> On 02/08/17 14:18, Michael Niedermayer wrote:
> > On Tue, Aug 01, 2017 at 02:46:22PM +0100, James Cowgill wrote:
> >> Fixes filter-pixfmts-scale test failing on big-endian systems due to
> >> alpSrc not being cast to (const i
Hi
Posting this to both [ffmpeg-devel] and [Freetel-codec2] in hopes of
maximum feedback.
I've been spending the last few days getting codec2 (http://freedv.org/
) hooked up in libavcodec, and a set of muxers and demuxers for both
raw codec2 streams and the recently created .c2 format. codec2 is
2017-08-03 0:40 GMT+02:00 Tomas Härdin :
> Decoding a .c2 file is straightforward however, thanks to the header:
>
> ffmpeg -i report2074.c2 out.wav
The probe score is too high.
I suspect you should also check for the major version,
the score should be MAX/2 if the first 32bit are ok,
significa
Fixes: When converting yuv -> yuv and changing any of srcRange,
dstRange, brightness, contrast, or saturation the context would not be
re-initialized as required.
---
libswscale/utils.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libswscale/utils.c b/libswscale/utils.c
index 17c9967..90
On 02/08/17 08:32, Jorge Ramirez-Ortiz wrote:
> ...
> diff --git a/compat/v4l2/v4l2-common.h b/compat/v4l2/v4l2-common.h
> diff --git a/compat/v4l2/videodev2.h b/compat/v4l2/videodev2.h
These are discussed in other threads. I don't really have any comment either
way.
> diff --git a/configure b/
On Wed, Aug 02, 2017 at 06:08:46PM +0200, Steinar H. Gunderson wrote:
> Also add simple FATE tests, based on output produced by the NDI SDK.
> ---
> tests/Makefile | 1 +
> tests/fate/speedhq.mak | 7 +++
> tests/ref/fate/speedhq-422 | 6
On Wed, Aug 2, 2017 at 6:48 PM, Tobias Rapp wrote:
> On 02.08.2017 12:31, Muhammad Faiz wrote:
>>
>> On Wed, Aug 2, 2017 at 2:10 PM, Tobias Rapp
>> wrote:
>>>
>>> On 01.08.2017 17:01, Muhammad Faiz wrote:
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libavf
On Wed, Aug 2, 2017 at 8:57 PM, Ronald S. Bultje wrote:
> Hi,
>
> On Wed, Aug 2, 2017 at 8:45 AM, Tobias Rapp wrote:
>
>> On 02.08.2017 14:04, Ronald S. Bultje wrote:
>>
>>> On Wed, Aug 2, 2017 at 3:10 AM, Tobias Rapp
>>> wrote:
>>>
On 01.08.2017 17:01, Muhammad Faiz wrote:
> Fix T
On Wed, Aug 02, 2017 at 06:08:28PM +0200, Steinar H. Gunderson wrote:
> The height convention for decoding frames with only a single field made sense
> for compatibility with legacy decoders, but doesn't really match the
> convention
> used by NDI, which is the primary (only?) user. Thus, change i
Also use av_mallocz_array.
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libavfilter/vf_ssim.c | 8 +---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c
index c3c204268f..d8c049177c 100644
--- a/libavfilter/vf_ssim.c
+++ b/libavf
On Thu, Aug 03, 2017 at 12:18:01AM +0100, Mark Boorer wrote:
> Fixes: When converting yuv -> yuv and changing any of srcRange,
> dstRange, brightness, contrast, or saturation the context would not be
> re-initialized as required.
> ---
> libswscale/utils.c | 3 +++
> 1 file changed, 3 insertions(+
On 30.07.2017 17:19, Marton Balint wrote:
[...]
Subject: [PATCH] lavd: implement NewTek NDI muxer/demuxer support
lavd: implement NewTek NDI input/output device support
fixed
[...]
- Dolby E decoder and SMPTE 337M demuxer
+- NewTek NDI muxer/demuxer
NewTek NDI input/output device
fixed
From: Ashish Singh
Hi, it fixes the errors while converting to framesync2.
libvmaf was changed recently, double *score variable is removed in the new
version since it's not used anywhere. This patch fixes all the warnings and
segmentation faults.
Signed-off-by: Ashish Singh
---
libavfilter/vf_
On 03.08.2017 03:03, Muhammad Faiz wrote:
Also use av_mallocz_array.
Fix Ticket6519.
Signed-off-by: Muhammad Faiz
---
libavfilter/vf_ssim.c | 8 +---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c
index c3c204268f..d8c049177c 100
75 matches
Mail list logo