pub unsafe extern "C" fn av_stream_get_side_data(
stream: *const AVStream,
type_: u32,
size: *mut usize,
) -> *mut u8
Expand description
Get side information from stream.
@param stream stream @param type desired side information type @param size If supplied, *size will be set to the size of the side data or to zero if the desired side data is not present.
@return pointer to data if present or NULL otherwise @deprecated use av_packet_side_data_get() with the stream’s @ref AVCodecParameters.coded_side_data “codecpar side data”