diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-06-21 10:22:58 -0400 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-06-27 12:27:53 -0400 |
commit | 444a36269f853844369af0a9836507e5a2780323 (patch) | |
tree | 196fc736428786a0841d937de66ac7062611969f /libavutil | |
parent | f172e22d6aed0bff36e975bafb0183b6779f9444 (diff) | |
download | ffmpeg-444a36269f853844369af0a9836507e5a2780323.tar.gz |
pixdesc: Fix AVCOL_TRC_BT2020_12 name
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index f43f2a8d30..6d9e38db7b 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -1633,7 +1633,7 @@ static const char *color_transfer_names[] = { [AVCOL_TRC_BT1361_ECG] = "bt1361e", [AVCOL_TRC_IEC61966_2_1] = "iec61966-2-1", [AVCOL_TRC_BT2020_10] = "bt2020-10", - [AVCOL_TRC_BT2020_12] = "bt2020-20", + [AVCOL_TRC_BT2020_12] = "bt2020-12", [AVCOL_TRC_SMPTE2084] = "smpte2084", [AVCOL_TRC_SMPTE428] = "smpte428", [AVCOL_TRC_ARIB_STD_B67] = "arib-std-b67", |