Re: [FFmpeg-devel] [PATCH 1/6] avutil/frame: add av_frame_remove_side_data_changed

2024-11-29 Thread James Almer
On 5/2/2024 7:11 AM, Niklas Haas wrote: On Fri, 26 Apr 2024 16:29:03 -0300 James Almer wrote: On 4/26/2024 9:27 AM, Niklas Haas wrote: From: Niklas Haas Many filters modify certain aspects of frame data, e.g. through resizing (vf_*scale* family), color volume mapping (vf_lut*, vf_tonemap*),

Re: [FFmpeg-devel] [PATCH 1/6] avutil/frame: add av_frame_remove_side_data_changed

2024-11-29 Thread Niklas Haas
On Thu, 02 May 2024 12:11:25 +0200 Niklas Haas wrote: > On Fri, 26 Apr 2024 16:29:03 -0300 James Almer wrote: > > On 4/26/2024 9:27 AM, Niklas Haas wrote: > > > From: Niklas Haas > > > > > > Many filters modify certain aspects of frame data, e.g. through resizing > > > (vf_*scale* family), color

Re: [FFmpeg-devel] [PATCH 1/6] avutil/frame: add av_frame_remove_side_data_changed

2024-05-02 Thread Niklas Haas
On Fri, 26 Apr 2024 16:29:03 -0300 James Almer wrote: > On 4/26/2024 9:27 AM, Niklas Haas wrote: > > From: Niklas Haas > > > > Many filters modify certain aspects of frame data, e.g. through resizing > > (vf_*scale* family), color volume mapping (vf_lut*, vf_tonemap*), or > > possibly others. >

Re: [FFmpeg-devel] [PATCH 1/6] avutil/frame: add av_frame_remove_side_data_changed

2024-04-26 Thread epirat07
On 26 Apr 2024, at 14:27, Niklas Haas wrote: > From: Niklas Haas > > Many filters modify certain aspects of frame data, e.g. through resizing > (vf_*scale* family), color volume mapping (vf_lut*, vf_tonemap*), or > possibly others. > > When this happens, we should strip all frame side data that w

Re: [FFmpeg-devel] [PATCH 1/6] avutil/frame: add av_frame_remove_side_data_changed

2024-04-26 Thread Niklas Haas
On Fri, 26 Apr 2024 14:27:58 +0200 Niklas Haas wrote: > From: Niklas Haas > > Many filters modify certain aspects of frame data, e.g. through resizing > (vf_*scale* family), color volume mapping (vf_lut*, vf_tonemap*), or > possibly others. > > When this happens, we should strip all frame side

[FFmpeg-devel] [PATCH 1/6] avutil/frame: add av_frame_remove_side_data_changed

2024-04-26 Thread Niklas Haas
From: Niklas Haas Many filters modify certain aspects of frame data, e.g. through resizing (vf_*scale* family), color volume mapping (vf_lut*, vf_tonemap*), or possibly others. When this happens, we should strip all frame side data that will no longer be correct/relevant after the operation. For