diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-09-26 13:14:37 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-10-08 18:17:49 +0100 |
commit | 04ccd584a70fad4ebb29ca340d704970ff313cbc (patch) | |
tree | a03a62ebbc254af84566b10f145ec172580e655d | |
parent | c732c62cee43f651775af5547cff99d418248542 (diff) | |
download | ffmpeg-04ccd584a70fad4ebb29ca340d704970ff313cbc.tar.gz |
pixfmt: mark further reserved values
-rw-r--r-- | libavutil/pixfmt.h | 2 | ||||
-rw-r--r-- | libavutil/version.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 2d554f15f5..6af65961c7 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -304,6 +304,7 @@ enum AVPixelFormat { * Chromaticity coordinates of the source primaries. */ enum AVColorPrimaries { + AVCOL_PRI_RESERVED0 = 0, AVCOL_PRI_BT709 = 1, ///< also ITU-R BT1361 / IEC 61966-2-4 / SMPTE RP177 Annex B AVCOL_PRI_UNSPECIFIED = 2, AVCOL_PRI_RESERVED = 3, @@ -321,6 +322,7 @@ enum AVColorPrimaries { * Color Transfer Characteristic. */ enum AVColorTransferCharacteristic { + AVCOL_TRC_RESERVED0 = 0, AVCOL_TRC_BT709 = 1, ///< also ITU-R BT1361 AVCOL_TRC_UNSPECIFIED = 2, AVCOL_TRC_RESERVED = 3, diff --git a/libavutil/version.h b/libavutil/version.h index c22d0c5f43..79da1aa1ab 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -55,7 +55,7 @@ #define LIBAVUTIL_VERSION_MAJOR 54 #define LIBAVUTIL_VERSION_MINOR 3 -#define LIBAVUTIL_VERSION_MICRO 0 +#define LIBAVUTIL_VERSION_MICRO 1 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ LIBAVUTIL_VERSION_MINOR, \ |