diff options
author | Niklas Haas <git@haasn.dev> | 2024-12-04 12:20:22 +0100 |
---|---|---|
committer | Niklas Haas <git@haasn.dev> | 2024-12-23 13:33:33 +0100 |
commit | 3428a8d830357c7c3a30cabbf22f74a362541a5b (patch) | |
tree | 8fca7a5619633a2b0197029b321a4a69fc247523 /doc/APIchanges | |
parent | 01084f3d16aeff2129fb1d2944921fc986cd4475 (diff) | |
download | ffmpeg-3428a8d830357c7c3a30cabbf22f74a362541a5b.tar.gz |
avutil/frame: add AV_SIDE_DATA_PROP_{SIZE,COLOR}_DEPENDENT
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 example, changing
the image size should invalidate AV_FRAME_DATA_PANSCAN because the crop
window (given in pixels) no longer corresponds to the actual image size.
For another example, tone-mapping filters (e.g. from HDR to SDR) should
strip all of the dynamic HDR related metadata.
Since there are a lot of different side data types that are affected by such
operations, it makes sense to establish this information in a common, easily
accessible way. The existing side data properties enum is a perfect fit for
this.
Diffstat (limited to 'doc/APIchanges')
-rw-r--r-- | doc/APIchanges | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/APIchanges b/doc/APIchanges index 7f5b3ef3d3..f6c4b6797e 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -2,6 +2,9 @@ The last version increases of all libraries were on 2024-03-07 API changes, most recent first: +2024-12-xx - xxxxxxxxxx - lavu 59.52.100 - frame.h + Add AV_SIDE_DATA_PROP_SIZE_DEPENDENT and AV_FRAME_DATA_PROP_COLOR_DEPENDENT. + 2024-12-xx - xxxxxxxxxx - lsws 8.13.100 - swscale.h Add enum SwsIntent and SwsContext.intent. |