diff options
author | James Almer <jamrial@gmail.com> | 2020-05-04 12:17:01 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-05-05 11:54:58 -0300 |
commit | f90a48b72e8ef2976de7bff2d2129141b962af51 (patch) | |
tree | 22d6765501734d14e9dbd7da36d9bdb190c9e393 /libavcodec/avpacket.c | |
parent | 9473268cfb580dccd3f1f3be338cd22661ef791e (diff) | |
download | ffmpeg-f90a48b72e8ef2976de7bff2d2129141b962af51.tar.gz |
avcodec/avpacket: add missing entry for prft to av_packet_side_data_name()
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avpacket.c')
-rw-r--r-- | libavcodec/avpacket.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c index ee51c0799c..033f2d8f26 100644 --- a/libavcodec/avpacket.c +++ b/libavcodec/avpacket.c @@ -396,6 +396,7 @@ const char *av_packet_side_data_name(enum AVPacketSideDataType type) case AV_PKT_DATA_ENCRYPTION_INIT_INFO: return "Encryption initialization data"; case AV_PKT_DATA_ENCRYPTION_INFO: return "Encryption info"; case AV_PKT_DATA_AFD: return "Active Format Description data"; + case AV_PKT_DATA_PRFT: return "Producer Reference Time"; case AV_PKT_DATA_ICC_PROFILE: return "ICC Profile"; case AV_PKT_DATA_DOVI_CONF: return "DOVI configuration record"; } |