Re: [FFmpeg-devel] [PATCH]lavfi/drawutils: Do not claim to support P016

2018-03-08 Thread Carl Eugen Hoyos
2018-03-07 16:55 GMT+01:00, Michael Niedermayer :
> On Wed, Mar 07, 2018 at 12:41:13AM +0100, Carl Eugen Hoyos wrote:
>> Hi!
>>
>> Attached patch fixes fate on big-endian, I failed to fix drawutils for
>> P016.
>>
>> Please comment (or fix the underlying issue), Carl Eugen
>
>>  libavfilter/drawutils.c   |2 +-
>>  tests/ref/fate/filter-pixfmts-pad |1 -
>>  2 files changed, 1 insertion(+), 2 deletions(-)
>> cd8e8de7521d6f2913de7368ba028308f1070e0a
>> 0001-lavfi-drawutils-Do-not-claim-to-support-P016.patch
>> From 5254acb48a67adc10e2651c6be449e11ecd8cb74 Mon Sep 17 00:00:00 2001
>> From: Carl Eugen Hoyos 
>> Date: Wed, 7 Mar 2018 00:36:21 +0100
>> Subject: [PATCH] lavfi/drawutils: Do not claim to support P016.
>>
>> Fixes fate on big-endian.
>> ---
>>  libavfilter/drawutils.c   |2 +-
>>  tests/ref/fate/filter-pixfmts-pad |1 -
>>  2 files changed, 1 insertion(+), 2 deletions(-)
>
> LGTM unless someone is activly working on adding support for this

Patch applied.

Thank you, Carl Eugen
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH]lavfi/drawutils: Do not claim to support P016

2018-03-07 Thread Michael Niedermayer
On Wed, Mar 07, 2018 at 12:41:13AM +0100, Carl Eugen Hoyos wrote:
> Hi!
> 
> Attached patch fixes fate on big-endian, I failed to fix drawutils for P016.
> 
> Please comment (or fix the underlying issue), Carl Eugen

>  libavfilter/drawutils.c   |2 +-
>  tests/ref/fate/filter-pixfmts-pad |1 -
>  2 files changed, 1 insertion(+), 2 deletions(-)
> cd8e8de7521d6f2913de7368ba028308f1070e0a  
> 0001-lavfi-drawutils-Do-not-claim-to-support-P016.patch
> From 5254acb48a67adc10e2651c6be449e11ecd8cb74 Mon Sep 17 00:00:00 2001
> From: Carl Eugen Hoyos 
> Date: Wed, 7 Mar 2018 00:36:21 +0100
> Subject: [PATCH] lavfi/drawutils: Do not claim to support P016.
> 
> Fixes fate on big-endian.
> ---
>  libavfilter/drawutils.c   |2 +-
>  tests/ref/fate/filter-pixfmts-pad |1 -
>  2 files changed, 1 insertion(+), 2 deletions(-)

LGTM unless someone is activly working on adding support for this

thx

[...]

-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Those who are too smart to engage in politics are punished by being
governed by those who are dumber. -- Plato 


signature.asc
Description: PGP signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH]lavfi/drawutils: Do not claim to support P016

2018-03-06 Thread Carl Eugen Hoyos
Hi!

Attached patch fixes fate on big-endian, I failed to fix drawutils for P016.

Please comment (or fix the underlying issue), Carl Eugen
From 5254acb48a67adc10e2651c6be449e11ecd8cb74 Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos 
Date: Wed, 7 Mar 2018 00:36:21 +0100
Subject: [PATCH] lavfi/drawutils: Do not claim to support P016.

Fixes fate on big-endian.
---
 libavfilter/drawutils.c   |2 +-
 tests/ref/fate/filter-pixfmts-pad |1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c
index 77ab86b..17e26c7 100644
--- a/libavfilter/drawutils.c
+++ b/libavfilter/drawutils.c
@@ -186,7 +186,7 @@ int ff_draw_init(FFDrawContext *draw, enum AVPixelFormat format, unsigned flags)
 return AVERROR(EINVAL);
 if (desc->flags & ~(AV_PIX_FMT_FLAG_PLANAR | AV_PIX_FMT_FLAG_RGB | AV_PIX_FMT_FLAG_PSEUDOPAL | AV_PIX_FMT_FLAG_ALPHA))
 return AVERROR(ENOSYS);
-if (format == AV_PIX_FMT_P010LE || format == AV_PIX_FMT_P010BE)
+if (format == AV_PIX_FMT_P010LE || format == AV_PIX_FMT_P010BE || format == AV_PIX_FMT_P016LE || format == AV_PIX_FMT_P016BE)
 return AVERROR(ENOSYS);
 for (i = 0; i < desc->nb_components; i++) {
 c = >comp[i];
diff --git a/tests/ref/fate/filter-pixfmts-pad b/tests/ref/fate/filter-pixfmts-pad
index 097bd58..e777211 100644
--- a/tests/ref/fate/filter-pixfmts-pad
+++ b/tests/ref/fate/filter-pixfmts-pad
@@ -22,7 +22,6 @@ gray16le468bda6155bdc7a7a20c34d6e599fd16
 gray9le f8f3dfe31ca5fcba828285bceefdab9a
 nv12381574979cb04be10c9168540310afad
 nv210fdeb2cdd56cf5a7147dc273456fa217
-p016le  536a3b4c3b47d005f9ab033370cc1c3b
 rgb078d500c8361ab6423a4826a00268c908
 rgb24   17f9e2e0c609009acaf2175c42d4a2a5
 rgbab157c90191463d34fb3ce77b36c96386
-- 
1.7.10.4

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel