Re: [FFmpeg-devel] [PATCH 1/1] avutil/csp: create public API for colorspace structs

2022-05-20 Thread Andreas Rheinhardt
Leo Izen: > On 5/20/22 12:01, Andreas Rheinhardt wrote: >> Leo Izen: >>> This commit moves some of the functionality from avfilter/colorspace >>> into avutil/csp and exposes it as a public API so it can be used by >>> libavcodec and/or libavformat. It also converts those structs from >>> double val

Re: [FFmpeg-devel] [PATCH 1/1] avutil/csp: create public API for colorspace structs

2022-05-20 Thread Leo Izen
On 5/20/22 12:01, Andreas Rheinhardt wrote: Leo Izen: This commit moves some of the functionality from avfilter/colorspace into avutil/csp and exposes it as a public API so it can be used by libavcodec and/or libavformat. It also converts those structs from double values to AVRational to make re

Re: [FFmpeg-devel] [PATCH 1/1] avutil/csp: create public API for colorspace structs

2022-05-20 Thread Andreas Rheinhardt
Leo Izen: > This commit moves some of the functionality from avfilter/colorspace > into avutil/csp and exposes it as a public API so it can be used by > libavcodec and/or libavformat. It also converts those structs from > double values to AVRational to make regression testing easier and > more cons

[FFmpeg-devel] [PATCH 1/1] avutil/csp: create public API for colorspace structs

2022-05-20 Thread Leo Izen
This commit moves some of the functionality from avfilter/colorspace into avutil/csp and exposes it as a public API so it can be used by libavcodec and/or libavformat. It also converts those structs from double values to AVRational to make regression testing easier and more consistent. --- libavfi