diff options
author | Marvin Scholz <epirat07@gmail.com> | 2025-04-25 18:19:04 +0200 |
---|---|---|
committer | Marvin Scholz <epirat07@gmail.com> | 2025-07-07 16:33:48 +0200 |
commit | 73d77693c507fc64ab1e58e27ba6a1fa8254922e (patch) | |
tree | cdfa04fd3706cee6db5f7bf90e3c07a395919e97 /libavcodec/packet.h | |
parent | 74aa710879689bf9ba569fbd13fb5074a666e92b (diff) | |
download | ffmpeg-73d77693c507fc64ab1e58e27ba6a1fa8254922e.tar.gz |
avcodec: add AV_PKT_DATA_RTCP_SR side data type
Diffstat (limited to 'libavcodec/packet.h')
-rw-r--r-- | libavcodec/packet.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/packet.h b/libavcodec/packet.h index a3953776fc..2e4a9a8184 100644 --- a/libavcodec/packet.h +++ b/libavcodec/packet.h @@ -357,6 +357,12 @@ enum AVPacketSideDataType { AV_PKT_DATA_3D_REFERENCE_DISPLAYS, /** + * Contains the last received RTCP SR (Sender Report) information + * in the form of the AVRTCPSenderReport struct. + */ + AV_PKT_DATA_RTCP_SR, + + /** * The number of side data types. * This is not part of the public API/ABI in the sense that it may * change when new side data types are added. |