summaryrefslogtreecommitdiff
path: root/libavutil/pixdesc.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2021-03-06 20:01:53 +0100
committerJames Almer <jamrial@gmail.com>2021-04-27 10:43:12 -0300
commit0181162bb54ce62ec212436a12d059726d8cd1df (patch)
tree9979d51f986fdd59ac683f223133ce4ba3d11095 /libavutil/pixdesc.h
parentb8accd1175d20ab308de69dbd06bda06a02183e3 (diff)
avutil/pixdesc: Remove deprecated off-by-one fields from pix fmt descs
Deprecated in 2268db2cd052674fde55c7d48b7a5098ce89b4ba. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavutil/pixdesc.h')
-rw-r--r--libavutil/pixdesc.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h
index 9b9d386ae9..81b51b767f 100644
--- a/libavutil/pixdesc.h
+++ b/libavutil/pixdesc.h
@@ -56,17 +56,6 @@ typedef struct AVComponentDescriptor {
* Number of bits in the component.
*/
int depth;
-
-#if FF_API_PLUS1_MINUS1
- /** deprecated, use step instead */
- attribute_deprecated int step_minus1;
-
- /** deprecated, use depth instead */
- attribute_deprecated int depth_minus1;
-
- /** deprecated, use offset instead */
- attribute_deprecated int offset_plus1;
-#endif
} AVComponentDescriptor;
/**