diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2015-11-18 19:23:03 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2016-02-23 18:44:12 +0100 |
commit | 14f7a3d55a43c1082ee1186a1990a431c641052d (patch) | |
tree | 8413603eb9ebbdfb8f6e84b8356a314d9101e19f /libavcodec/avcodec.h | |
parent | 3ba57bfe8ddcf151d0dcfc6bdfe76b2bb57ba018 (diff) | |
download | ffmpeg-14f7a3d55a43c1082ee1186a1990a431c641052d.tar.gz |
lavc/lavf: transmit stream_id information for mpegts KLV data packets
This allows to copy information related to the stream ID from the demuxer
to the muxer, thus allowing for example to retain information related to
synchronous and asynchronous KLV data packets. This information is used
in the muxer when remuxing to distinguish the two kind of packets (if the
information is lacking, data packets are considered synchronous).
The fate reference changes are due to the use of
av_packet_merge_side_data(), which increases the size of the output
packet size, since side data is merged into the packet data.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index d8497655b0..80f8a66339 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1403,6 +1403,12 @@ enum AVPacketSideDataType { * side data includes updated metadata which appeared in the stream. */ AV_PKT_DATA_METADATA_UPDATE, + + /** + * MPEGTS stream ID, this is required to pass the stream ID + * information from the demuxer to the corresponding muxer. + */ + AV_PKT_DATA_MPEGTS_STREAM_ID, }; #define AV_PKT_DATA_QUALITY_FACTOR AV_PKT_DATA_QUALITY_STATS //DEPRECATED |