FFmpeg
packet.h
Go to the documentation of this file.
1 /*
2  * AVPacket public API
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20 
21 #ifndef AVCODEC_PACKET_H
22 #define AVCODEC_PACKET_H
23 
24 #include <stddef.h>
25 #include <stdint.h>
26 
27 #include "libavutil/attributes.h"
28 #include "libavutil/buffer.h"
29 #include "libavutil/dict.h"
30 #include "libavutil/rational.h"
31 #include "libavutil/version.h"
32 
34 
35 /**
36  * @defgroup lavc_packet_side_data AVPacketSideData
37  *
38  * Types and functions for working with AVPacketSideData.
39  * @{
40  */
42  /**
43  * An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE
44  * bytes worth of palette. This side data signals that a new palette is
45  * present.
46  */
48 
49  /**
50  * The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format
51  * that the extradata buffer was changed and the receiving side should
52  * act upon it appropriately. The new extradata is embedded in the side
53  * data buffer and should be immediately used for processing the current
54  * frame or packet.
55  */
57 
58  /**
59  * An AV_PKT_DATA_PARAM_CHANGE side data packet is laid out as follows:
60  * @code
61  * u32le param_flags
62  * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE)
63  * s32le sample_rate
64  * if (param_flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS)
65  * s32le width
66  * s32le height
67  * @endcode
68  */
70 
71  /**
72  * An AV_PKT_DATA_H263_MB_INFO side data packet contains a number of
73  * structures with info about macroblocks relevant to splitting the
74  * packet into smaller packets on macroblock edges (e.g. as for RFC 2190).
75  * That is, it does not necessarily contain info about all macroblocks,
76  * as long as the distance between macroblocks in the info is smaller
77  * than the target payload size.
78  * Each MB info structure is 12 bytes, and is laid out as follows:
79  * @code
80  * u32le bit offset from the start of the packet
81  * u8 current quantizer at the start of the macroblock
82  * u8 GOB number
83  * u16le macroblock address within the GOB
84  * u8 horizontal MV predictor
85  * u8 vertical MV predictor
86  * u8 horizontal MV predictor for block number 3
87  * u8 vertical MV predictor for block number 3
88  * @endcode
89  */
91 
92  /**
93  * This side data should be associated with an audio stream and contains
94  * ReplayGain information in form of the AVReplayGain struct.
95  */
97 
98  /**
99  * This side data contains a 3x3 transformation matrix describing an affine
100  * transformation that needs to be applied to the decoded video frames for
101  * correct presentation.
102  *
103  * See libavutil/display.h for a detailed description of the data.
104  */
106 
107  /**
108  * This side data should be associated with a video stream and contains
109  * Stereoscopic 3D information in form of the AVStereo3D struct.
110  */
112 
113  /**
114  * This side data should be associated with an audio stream and corresponds
115  * to enum AVAudioServiceType.
116  */
118 
119  /**
120  * This side data contains quality related information from the encoder.
121  * @code
122  * u32le quality factor of the compressed frame. Allowed range is between 1 (good) and FF_LAMBDA_MAX (bad).
123  * u8 picture type
124  * u8 error count
125  * u16 reserved
126  * u64le[error count] sum of squared differences between encoder in and output
127  * @endcode
128  */
130 
131  /**
132  * This side data contains an integer value representing the stream index
133  * of a "fallback" track. A fallback track indicates an alternate
134  * track to use when the current track can not be decoded for some reason.
135  * e.g. no decoder available for codec.
136  */
138 
139  /**
140  * This side data corresponds to the AVCPBProperties struct.
141  */
143 
144  /**
145  * Recommends skipping the specified number of samples
146  * @code
147  * u32le number of samples to skip from start of this packet
148  * u32le number of samples to skip from end of this packet
149  * u8 reason for start skip
150  * u8 reason for end skip (0=padding silence, 1=convergence)
151  * @endcode
152  */
154 
155  /**
156  * An AV_PKT_DATA_JP_DUALMONO side data packet indicates that
157  * the packet may contain "dual mono" audio specific to Japanese DTV
158  * and if it is true, recommends only the selected channel to be used.
159  * @code
160  * u8 selected channels (0=main/left, 1=sub/right, 2=both)
161  * @endcode
162  */
164 
165  /**
166  * A list of zero terminated key/value strings. There is no end marker for
167  * the list, so it is required to rely on the side data size to stop.
168  */
170 
171  /**
172  * Subtitle event position
173  * @code
174  * u32le x1
175  * u32le y1
176  * u32le x2
177  * u32le y2
178  * @endcode
179  */
181 
182  /**
183  * Data found in BlockAdditional element of matroska container. There is
184  * no end marker for the data, so it is required to rely on the side data
185  * size to recognize the end. 8 byte id (as found in BlockAddId) followed
186  * by data.
187  */
189 
190  /**
191  * The optional first identifier line of a WebVTT cue.
192  */
194 
195  /**
196  * The optional settings (rendering instructions) that immediately
197  * follow the timestamp specifier of a WebVTT cue.
198  */
200 
201  /**
202  * A list of zero terminated key/value strings. There is no end marker for
203  * the list, so it is required to rely on the side data size to stop. This
204  * side data includes updated metadata which appeared in the stream.
205  */
207 
208  /**
209  * MPEGTS stream ID as uint8_t, this is required to pass the stream ID
210  * information from the demuxer to the corresponding muxer.
211  */
213 
214  /**
215  * Mastering display metadata (based on SMPTE-2086:2014). This metadata
216  * should be associated with a video stream and contains data in the form
217  * of the AVMasteringDisplayMetadata struct.
218  */
220 
221  /**
222  * This side data should be associated with a video stream and corresponds
223  * to the AVSphericalMapping structure.
224  */
226 
227  /**
228  * Content light level (based on CTA-861.3). This metadata should be
229  * associated with a video stream and contains data in the form of the
230  * AVContentLightMetadata struct.
231  */
233 
234  /**
235  * ATSC A53 Part 4 Closed Captions. This metadata should be associated with
236  * a video stream. A53 CC bitstream is stored as uint8_t in AVPacketSideData.data.
237  * The number of bytes of CC data is AVPacketSideData.size.
238  */
240 
241  /**
242  * This side data is encryption initialization data.
243  * The format is not part of ABI, use av_encryption_init_info_* methods to
244  * access.
245  */
247 
248  /**
249  * This side data contains encryption info for how to decrypt the packet.
250  * The format is not part of ABI, use av_encryption_info_* methods to access.
251  */
253 
254  /**
255  * Active Format Description data consisting of a single byte as specified
256  * in ETSI TS 101 154 using AVActiveFormatDescription enum.
257  */
259 
260  /**
261  * Producer Reference Time data corresponding to the AVProducerReferenceTime struct,
262  * usually exported by some encoders (on demand through the prft flag set in the
263  * AVCodecContext export_side_data field).
264  */
266 
267  /**
268  * ICC profile data consisting of an opaque octet buffer following the
269  * format described by ISO 15076-1.
270  */
272 
273  /**
274  * DOVI configuration
275  * ref:
276  * dolby-vision-bitstreams-within-the-iso-base-media-file-format-v2.1.2, section 2.2
277  * dolby-vision-bitstreams-in-mpeg-2-transport-stream-multiplex-v1.2, section 3.3
278  * Tags are stored in struct AVDOVIDecoderConfigurationRecord.
279  */
281 
282  /**
283  * Timecode which conforms to SMPTE ST 12-1:2014. The data is an array of 4 uint32_t
284  * where the first uint32_t describes how many (1-3) of the other timecodes are used.
285  * The timecode format is described in the documentation of av_timecode_get_smpte_from_framenum()
286  * function in libavutil/timecode.h.
287  */
289 
290  /**
291  * HDR10+ dynamic metadata associated with a video frame. The metadata is in
292  * the form of the AVDynamicHDRPlus struct and contains
293  * information for color volume transform - application 4 of
294  * SMPTE 2094-40:2016 standard.
295  */
297 
298  /**
299  * IAMF Mix Gain Parameter Data associated with the audio frame. This metadata
300  * is in the form of the AVIAMFParamDefinition struct and contains information
301  * defined in sections 3.6.1 and 3.8.1 of the Immersive Audio Model and
302  * Formats standard.
303  */
305 
306  /**
307  * IAMF Demixing Info Parameter Data associated with the audio frame. This
308  * metadata is in the form of the AVIAMFParamDefinition struct and contains
309  * information defined in sections 3.6.1 and 3.8.2 of the Immersive Audio Model
310  * and Formats standard.
311  */
313 
314  /**
315  * IAMF Recon Gain Info Parameter Data associated with the audio frame. This
316  * metadata is in the form of the AVIAMFParamDefinition struct and contains
317  * information defined in sections 3.6.1 and 3.8.3 of the Immersive Audio Model
318  * and Formats standard.
319  */
321 
322  /**
323  * Ambient viewing environment metadata, as defined by H.274. This metadata
324  * should be associated with a video stream and contains data in the form
325  * of the AVAmbientViewingEnvironment struct.
326  */
328 
329  /**
330  * The number of pixels to discard from the top/bottom/left/right border of the
331  * decoded frame to obtain the sub-rectangle intended for presentation.
332  *
333  * @code
334  * u32le crop_top
335  * u32le crop_bottom
336  * u32le crop_left
337  * u32le crop_right
338  * @endcode
339  */
341 
342  /**
343  * Raw LCEVC payload data, as a uint8_t array, with NAL emulation
344  * bytes intact.
345  */
347 
348  /**
349  * This side data contains information about the reference display width(s)
350  * and reference viewing distance(s) as well as information about the
351  * corresponding reference stereo pair(s), i.e., the pair(s) of views to be
352  * displayed for the viewer's left and right eyes on the reference display
353  * at the reference viewing distance.
354  * The payload is the AV3DReferenceDisplaysInfo struct defined in
355  * libavutil/tdrdi.h.
356  */
358 
359  /**
360  * Contains the last received RTCP SR (Sender Report) information
361  * in the form of the AVRTCPSenderReport struct.
362  */
364 
365  /**
366  * Extensible image file format metadata. The payload is a buffer containing
367  * EXIF metadata, starting with either 49 49 2a 00, or 4d 4d 00 2a.
368  */
370 
371  /**
372  * HDR dynamic metadata associated with a video frame. The payload is an
373  * AVDynamicHDRSmpte2094App5 type and contains information for color volume
374  * transform as specified in the SMPTE 2094-50 standard.
375  */
377 
378  /**
379  * The number of side data types.
380  * This is not part of the public API/ABI in the sense that it may
381  * change when new side data types are added.
382  * This must stay the last enum value.
383  * If its value becomes huge, some code using it
384  * needs to be updated as it assumes it to be smaller than other limits.
385  */
387 };
388 
389 /**
390  * This structure stores auxiliary information for decoding, presenting, or
391  * otherwise processing the coded stream. It is typically exported by demuxers
392  * and encoders and can be fed to decoders and muxers either in a per packet
393  * basis, or as global side data (applying to the entire coded stream).
394  *
395  * Global side data is handled as follows:
396  * - During demuxing, it may be exported through
397  * @ref AVCodecParameters.coded_side_data "AVStream's codec parameters", which can
398  * then be passed as input to decoders through the
399  * @ref AVCodecContext.coded_side_data "decoder context's side data", for
400  * initialization.
401  * - For muxing, it can be fed through @ref AVCodecParameters.coded_side_data
402  * "AVStream's codec parameters", typically the output of encoders through
403  * the @ref AVCodecContext.coded_side_data "encoder context's side data", for
404  * initialization.
405  *
406  * Packet specific side data is handled as follows:
407  * - During demuxing, it may be exported through @ref AVPacket.side_data
408  * "AVPacket's side data", which can then be passed as input to decoders.
409  * - For muxing, it can be fed through @ref AVPacket.side_data "AVPacket's
410  * side data", typically the output of encoders.
411  *
412  * Different modules may accept or export different types of side data
413  * depending on media type and codec. Refer to @ref AVPacketSideDataType for a
414  * list of defined types and where they may be found or used.
415  */
416 typedef struct AVPacketSideData {
417  uint8_t *data;
418  size_t size;
421 
422 /**
423  * Allocate a new packet side data.
424  *
425  * @param sd pointer to an array of side data to which the side data should
426  * be added. *sd may be NULL, in which case the array will be
427  * initialized.
428  * @param nb_sd pointer to an integer containing the number of entries in
429  * the array. The integer value will be increased by 1 on success.
430  * @param type side data type
431  * @param size desired side data size
432  * @param flags currently unused. Must be zero
433  *
434  * @return pointer to freshly allocated side data on success, or NULL otherwise.
435  */
438  size_t size, int flags);
439 
440 /**
441  * Wrap existing data as packet side data.
442  *
443  * @param sd pointer to an array of side data to which the side data should
444  * be added. *sd may be NULL, in which case the array will be
445  * initialized
446  * @param nb_sd pointer to an integer containing the number of entries in
447  * the array. The integer value will be increased by 1 on success.
448  * @param type side data type
449  * @param data a data array. It must be allocated with the av_malloc() family
450  * of functions. The ownership of the data is transferred to the
451  * side data array on success
452  * @param size size of the data array
453  * @param flags currently unused. Must be zero
454  *
455  * @return pointer to freshly allocated side data on success, or NULL otherwise
456  * On failure, the side data array is unchanged and the data remains
457  * owned by the caller.
458  */
461  void *data, size_t size, int flags);
462 
463 /**
464  * Get side information from a side data array.
465  *
466  * @param sd the array from which the side data should be fetched
467  * @param nb_sd value containing the number of entries in the array.
468  * @param type desired side information type
469  *
470  * @return pointer to side data if present or NULL otherwise
471  */
473  int nb_sd,
475 
476 /**
477  * Remove side data of the given type from a side data array.
478  *
479  * @param sd the array from which the side data should be removed
480  * @param nb_sd pointer to an integer containing the number of entries in
481  * the array. Will be reduced by the amount of entries removed
482  * upon return
483  * @param type side information type
484  */
485 void av_packet_side_data_remove(AVPacketSideData *sd, int *nb_sd,
487 
488 /**
489  * Convenience function to free all the side data stored in an array, and
490  * the array itself.
491  *
492  * @param sd pointer to array of side data to free. Will be set to NULL
493  * upon return.
494  * @param nb_sd pointer to an integer containing the number of entries in
495  * the array. Will be set to 0 upon return.
496  */
497 void av_packet_side_data_free(AVPacketSideData **sd, int *nb_sd);
498 
499 struct AVFrameSideData;
500 
501 /**
502  * Add a new packet side data entry to an array based on existing frame
503  * side data, if a matching type exists for packet side data.
504  *
505  * @param flags Currently unused. Must be 0.
506  * @retval >= 0 Success
507  * @retval AVERROR(EINVAL) The frame side data type does not have a matching
508  * packet side data type.
509  * @retval AVERROR(ENOMEM) Failed to add a side data entry to the array, or
510  * similar.
511  */
513  const struct AVFrameSideData *src, unsigned int flags);
514 /**
515  * Add a new frame side data entry to an array based on existing packet
516  * side data, if a matching type exists for frame side data.
517  *
518  * @param flags Some combination of AV_FRAME_SIDE_DATA_FLAG_* flags,
519  * or 0.
520  * @retval >= 0 Success
521  * @retval AVERROR(EINVAL) The packet side data type does not have a matching
522  * frame side data type.
523  * @retval AVERROR(ENOMEM) Failed to add a side data entry to the array, or
524  * similar.
525  */
526 int av_packet_side_data_to_frame(struct AVFrameSideData ***sd, int *nb_sd,
527  const AVPacketSideData *src, unsigned int flags);
528 
530 
531 /**
532  * @}
533  */
534 
535 /**
536  * @defgroup lavc_packet AVPacket
537  *
538  * Types and functions for working with AVPacket.
539  * @{
540  */
541 
542 /**
543  * This structure stores compressed data. It is typically exported by demuxers
544  * and then passed as input to decoders, or received as output from encoders and
545  * then passed to muxers.
546  *
547  * For video, it should typically contain one compressed frame. For audio it may
548  * contain several compressed frames. Encoders are allowed to output empty
549  * packets, with no compressed data, containing only side data
550  * (e.g. to update some stream parameters at the end of encoding).
551  *
552  * The semantics of data ownership depends on the buf field.
553  * If it is set, the packet data is dynamically allocated and is
554  * valid indefinitely until a call to av_packet_unref() reduces the
555  * reference count to 0.
556  *
557  * If the buf field is not set av_packet_ref() would make a copy instead
558  * of increasing the reference count.
559  *
560  * The side data is always allocated with av_malloc(), copied by
561  * av_packet_ref() and freed by av_packet_unref().
562  *
563  * sizeof(AVPacket) being a part of the public ABI is deprecated. once
564  * av_init_packet() is removed, new packets will only be able to be allocated
565  * with av_packet_alloc(), and new fields may be added to the end of the struct
566  * with a minor bump.
567  *
568  * @see av_packet_alloc
569  * @see av_packet_ref
570  * @see av_packet_unref
571  */
572 typedef struct AVPacket {
573  /**
574  * A reference to the reference-counted buffer where the packet data is
575  * stored.
576  * May be NULL, then the packet data is not reference-counted.
577  */
579  /**
580  * Presentation timestamp in AVStream->time_base units; the time at which
581  * the decompressed packet will be presented to the user.
582  * Can be AV_NOPTS_VALUE if it is not stored in the file.
583  * pts MUST be larger or equal to dts as presentation cannot happen before
584  * decompression, unless one wants to view hex dumps. Some formats misuse
585  * the terms dts and pts/cts to mean something different. Such timestamps
586  * must be converted to true pts/dts before they are stored in AVPacket.
587  */
589  /**
590  * Decompression timestamp in AVStream->time_base units; the time at which
591  * the packet is decompressed.
592  * Can be AV_NOPTS_VALUE if it is not stored in the file.
593  */
595  uint8_t *data;
596  int size;
598  /**
599  * A combination of AV_PKT_FLAG values
600  */
601  int flags;
602  /**
603  * Additional packet data that can be provided by the container.
604  * Packet can contain several types of side information.
605  */
608 
609  /**
610  * Duration of this packet in AVStream->time_base units, 0 if unknown.
611  * Equals next_pts - this_pts in presentation order.
612  */
614 
615  int64_t pos; ///< byte position in stream, -1 if unknown
616 
617  /**
618  * for some private data of the user
619  */
620  void *opaque;
621 
622  /**
623  * AVBufferRef for free use by the API user. FFmpeg will never check the
624  * contents of the buffer ref. FFmpeg calls av_buffer_unref() on it when
625  * the packet is unreferenced. av_packet_copy_props() calls create a new
626  * reference with av_buffer_ref() for the target packet's opaque_ref field.
627  *
628  * This is unrelated to the opaque field, although it serves a similar
629  * purpose.
630  */
632 
633  /**
634  * Time base of the packet's timestamps.
635  * In the future, this field may be set on packets output by encoders or
636  * demuxers, but its value will be by default ignored on input to decoders
637  * or muxers.
638  */
640 } AVPacket;
641 
642 #if FF_API_INIT_PACKET
644 typedef struct AVPacketList {
645  AVPacket pkt;
646  struct AVPacketList *next;
647 } AVPacketList;
648 #endif
649 
650 #define AV_PKT_FLAG_KEY 0x0001 ///< The packet contains a keyframe
651 #define AV_PKT_FLAG_CORRUPT 0x0002 ///< The packet content is corrupted
652 /**
653  * Flag is used to discard packets which are required to maintain valid
654  * decoder state but are not required for output and should be dropped
655  * after decoding.
656  **/
657 #define AV_PKT_FLAG_DISCARD 0x0004
658 /**
659  * The packet comes from a trusted source.
660  *
661  * Otherwise-unsafe constructs such as arbitrary pointers to data
662  * outside the packet may be followed.
663  */
664 #define AV_PKT_FLAG_TRUSTED 0x0008
665 /**
666  * Flag is used to indicate packets that contain frames that can
667  * be discarded by the decoder. I.e. Non-reference frames.
668  */
669 #define AV_PKT_FLAG_DISPOSABLE 0x0010
670 
674 };
675 
676 /**
677  * Allocate an AVPacket and set its fields to default values. The resulting
678  * struct must be freed using av_packet_free().
679  *
680  * @return An AVPacket filled with default values or NULL on failure.
681  *
682  * @note this only allocates the AVPacket itself, not the data buffers. Those
683  * must be allocated through other means such as av_new_packet.
684  *
685  * @see av_new_packet
686  */
688 
689 /**
690  * Create a new packet that references the same data as src.
691  *
692  * This is a shortcut for av_packet_alloc()+av_packet_ref().
693  *
694  * @return newly created AVPacket on success, NULL on error.
695  *
696  * @see av_packet_alloc
697  * @see av_packet_ref
698  */
700 
701 /**
702  * Free the packet, if the packet is reference counted, it will be
703  * unreferenced first.
704  *
705  * @param pkt packet to be freed. The pointer will be set to NULL.
706  * @note passing NULL is a no-op.
707  */
708 void av_packet_free(AVPacket **pkt);
709 
710 #if FF_API_INIT_PACKET
711 /**
712  * Initialize optional fields of a packet with default values.
713  *
714  * Note, this does not touch the data and size members, which have to be
715  * initialized separately.
716  *
717  * @param pkt packet
718  *
719  * @see av_packet_alloc
720  * @see av_packet_unref
721  *
722  * @deprecated This function is deprecated. Once it's removed,
723  sizeof(AVPacket) will not be a part of the ABI anymore.
724  */
726 void av_init_packet(AVPacket *pkt);
727 #endif
728 
729 /**
730  * Allocate the payload of a packet and initialize its fields with
731  * default values.
732  *
733  * @param pkt packet
734  * @param size wanted payload size
735  * @return 0 if OK, AVERROR_xxx otherwise
736  */
737 int av_new_packet(AVPacket *pkt, int size);
738 
739 /**
740  * Reduce packet size, correctly zeroing padding
741  *
742  * @param pkt packet
743  * @param size new size
744  */
745 void av_shrink_packet(AVPacket *pkt, int size);
746 
747 /**
748  * Increase packet size, correctly zeroing padding
749  *
750  * @param pkt packet
751  * @param grow_by number of bytes by which to increase the size of the packet
752  */
753 int av_grow_packet(AVPacket *pkt, int grow_by);
754 
755 /**
756  * Initialize a reference-counted packet from av_malloc()ed data.
757  *
758  * @param pkt packet to be initialized. This function will set the data, size,
759  * and buf fields, all others are left untouched.
760  * @param data Data allocated by av_malloc() to be used as packet data. If this
761  * function returns successfully, the data is owned by the underlying AVBuffer.
762  * The caller may not access the data through other means.
763  * @param size size of data in bytes, without the padding. I.e. the full buffer
764  * size is assumed to be size + AV_INPUT_BUFFER_PADDING_SIZE.
765  *
766  * @return 0 on success, a negative AVERROR on error
767  */
768 int av_packet_from_data(AVPacket *pkt, uint8_t *data, int size);
769 
770 /**
771  * Allocate new information of a packet.
772  *
773  * @param pkt packet
774  * @param type side information type
775  * @param size side information size
776  * @return pointer to fresh allocated data or NULL otherwise
777  */
779  size_t size);
780 
781 /**
782  * Wrap an existing array as a packet side data.
783  *
784  * @param pkt packet
785  * @param type side information type
786  * @param data the side data array. It must be allocated with the av_malloc()
787  * family of functions. The ownership of the data is transferred to
788  * pkt.
789  * @param size side information size
790  * @return a non-negative number on success, a negative AVERROR code on
791  * failure. On failure, the packet is unchanged and the data remains
792  * owned by the caller.
793  */
795  uint8_t *data, size_t size);
796 
797 /**
798  * Shrink the already allocated side data buffer
799  *
800  * @param pkt packet
801  * @param type side information type
802  * @param size new side information size
803  * @return 0 on success, < 0 on failure
804  */
806  size_t size);
807 
808 /**
809  * Get side information from packet.
810  *
811  * @param pkt packet
812  * @param type desired side information type
813  * @param size If supplied, *size will be set to the size of the side data
814  * or to zero if the desired side data is not present.
815  * @return pointer to data if present or NULL otherwise
816  */
818  size_t *size);
819 
820 /**
821  * Pack a dictionary for use in side_data.
822  *
823  * @param dict The dictionary to pack.
824  * @param size pointer to store the size of the returned data
825  * @return pointer to data if successful, NULL otherwise
826  */
827 uint8_t *av_packet_pack_dictionary(AVDictionary *dict, size_t *size);
828 /**
829  * Unpack a dictionary from side_data.
830  *
831  * @param data data from side_data
832  * @param size size of the data
833  * @param dict the metadata storage dictionary
834  * @return 0 on success, < 0 on failure
835  */
836 int av_packet_unpack_dictionary(const uint8_t *data, size_t size,
837  AVDictionary **dict);
838 
839 /**
840  * Convenience function to free all the side data stored.
841  * All the other fields stay untouched.
842  *
843  * @param pkt packet
844  */
846 
847 /**
848  * Setup a new reference to the data described by a given packet
849  *
850  * If src is reference-counted, setup dst as a new reference to the
851  * buffer in src. Otherwise allocate a new buffer in dst and copy the
852  * data from src into it.
853  *
854  * All the other fields are copied from src.
855  *
856  * @see av_packet_unref
857  *
858  * @param dst Destination packet. Will be completely overwritten.
859  * @param src Source packet
860  *
861  * @return 0 on success, a negative AVERROR on error. On error, dst
862  * will be blank (as if returned by av_packet_alloc()).
863  */
864 int av_packet_ref(AVPacket *dst, const AVPacket *src);
865 
866 /**
867  * Wipe the packet.
868  *
869  * Unreference the buffer referenced by the packet and reset the
870  * remaining packet fields to their default values.
871  *
872  * @param pkt The packet to be unreferenced.
873  */
875 
876 /**
877  * Move every field in src to dst and reset src.
878  *
879  * @see av_packet_unref
880  *
881  * @param src Source packet, will be reset
882  * @param dst Destination packet
883  */
885 
886 /**
887  * Copy only "properties" fields from src to dst.
888  *
889  * Properties for the purpose of this function are all the fields
890  * beside those related to the packet data (buf, data, size)
891  *
892  * @param dst Destination packet
893  * @param src Source packet
894  *
895  * @return 0 on success AVERROR on failure.
896  */
898 
899 /**
900  * Ensure the data described by a given packet is reference counted.
901  *
902  * @note This function does not ensure that the reference will be writable.
903  * Use av_packet_make_writable instead for that purpose.
904  *
905  * @see av_packet_ref
906  * @see av_packet_make_writable
907  *
908  * @param pkt packet whose data should be made reference counted.
909  *
910  * @return 0 on success, a negative AVERROR on error. On failure, the
911  * packet is unchanged.
912  */
914 
915 /**
916  * Create a writable reference for the data described by a given packet,
917  * avoiding data copy if possible.
918  *
919  * @param pkt Packet whose data should be made writable.
920  *
921  * @return 0 on success, a negative AVERROR on failure. On failure, the
922  * packet is unchanged.
923  */
925 
926 /**
927  * Convert valid timing fields (timestamps / durations) in a packet from one
928  * timebase to another. Timestamps with unknown values (AV_NOPTS_VALUE) will be
929  * ignored.
930  *
931  * @param pkt packet on which the conversion will be performed
932  * @param tb_src source timebase, in which the timing fields in pkt are
933  * expressed
934  * @param tb_dst destination timebase, to which the timing fields will be
935  * converted
936  */
937 void av_packet_rescale_ts(AVPacket *pkt, AVRational tb_src, AVRational tb_dst);
938 
939 /**
940  * Allocate an AVContainerFifo instance for AVPacket.
941  *
942  * @param flags currently unused
943  */
945 
946 /**
947  * @}
948  */
949 
950 #endif // AVCODEC_PACKET_H
flags
const SwsFlags flags[]
Definition: swscale.c:72
AV_PKT_DATA_DISPLAYMATRIX
@ AV_PKT_DATA_DISPLAYMATRIX
This side data contains a 3x3 transformation matrix describing an affine transformation that needs to...
Definition: packet.h:105
av_packet_unref
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: packet.c:433
AV_PKT_DATA_AMBIENT_VIEWING_ENVIRONMENT
@ AV_PKT_DATA_AMBIENT_VIEWING_ENVIRONMENT
Ambient viewing environment metadata, as defined by H.274.
Definition: packet.h:327
AV_PKT_DATA_QUALITY_STATS
@ AV_PKT_DATA_QUALITY_STATS
This side data contains quality related information from the encoder.
Definition: packet.h:129
AV_PKT_DATA_FRAME_CROPPING
@ AV_PKT_DATA_FRAME_CROPPING
The number of pixels to discard from the top/bottom/left/right border of the decoded frame to obtain ...
Definition: packet.h:340
AV_PKT_DATA_NEW_EXTRADATA
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
Definition: packet.h:56
AV_PKT_DATA_MASTERING_DISPLAY_METADATA
@ AV_PKT_DATA_MASTERING_DISPLAY_METADATA
Mastering display metadata (based on SMPTE-2086:2014).
Definition: packet.h:219
rational.h
int64_t
long long int64_t
Definition: coverity.c:34
av_grow_packet
int av_grow_packet(AVPacket *pkt, int grow_by)
Increase packet size, correctly zeroing padding.
Definition: packet.c:121
AVPacketSideData
This structure stores auxiliary information for decoding, presenting, or otherwise processing the cod...
Definition: packet.h:416
AVPacket::data
uint8_t * data
Definition: packet.h:595
AV_PKT_DATA_ENCRYPTION_INIT_INFO
@ AV_PKT_DATA_ENCRYPTION_INIT_INFO
This side data is encryption initialization data.
Definition: packet.h:246
av_packet_shrink_side_data
int av_packet_shrink_side_data(AVPacket *pkt, enum AVPacketSideDataType type, size_t size)
Shrink the already allocated side data buffer.
Definition: packet.c:380
AV_PKT_DATA_FALLBACK_TRACK
@ AV_PKT_DATA_FALLBACK_TRACK
This side data contains an integer value representing the stream index of a "fallback" track.
Definition: packet.h:137
data
const char data[16]
Definition: mxf.c:149
av_packet_side_data_remove
void av_packet_side_data_remove(AVPacketSideData *sd, int *nb_sd, enum AVPacketSideDataType type)
Remove side data of the given type from a side data array.
Definition: packet.c:717
version_major.h
AV_PKT_DATA_S12M_TIMECODE
@ AV_PKT_DATA_S12M_TIMECODE
Timecode which conforms to SMPTE ST 12-1:2014.
Definition: packet.h:288
AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
@ AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE
Definition: packet.h:672
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:613
AVDictionary
Definition: dict.c:32
AV_PKT_DATA_RTCP_SR
@ AV_PKT_DATA_RTCP_SR
Contains the last received RTCP SR (Sender Report) information in the form of the AVRTCPSenderReport ...
Definition: packet.h:363
av_packet_free_side_data
void av_packet_free_side_data(AVPacket *pkt)
Convenience function to free all the side data stored.
Definition: packet.c:188
av_packet_side_data_to_frame
int av_packet_side_data_to_frame(struct AVFrameSideData ***sd, int *nb_sd, const AVPacketSideData *src, unsigned int flags)
Add a new frame side data entry to an array based on existing packet side data, if a matching type ex...
Definition: avcodec.c:867
av_packet_free
void av_packet_free(AVPacket **pkt)
Free the packet, if the packet is reference counted, it will be unreferenced first.
Definition: packet.c:74
AV_PKT_DATA_DOVI_CONF
@ AV_PKT_DATA_DOVI_CONF
DOVI configuration ref: dolby-vision-bitstreams-within-the-iso-base-media-file-format-v2....
Definition: packet.h:280
AVPacketSideData::size
size_t size
Definition: packet.h:418
AV_PKT_DATA_REPLAYGAIN
@ AV_PKT_DATA_REPLAYGAIN
This side data should be associated with an audio stream and contains ReplayGain information in form ...
Definition: packet.h:96
AV_PKT_DATA_IAMF_RECON_GAIN_INFO_PARAM
@ AV_PKT_DATA_IAMF_RECON_GAIN_INFO_PARAM
IAMF Recon Gain Info Parameter Data associated with the audio frame.
Definition: packet.h:320
av_packet_add_side_data
int av_packet_add_side_data(AVPacket *pkt, enum AVPacketSideDataType type, uint8_t *data, size_t size)
Wrap an existing array as a packet side data.
Definition: packet.c:197
AV_PKT_DATA_PALETTE
@ AV_PKT_DATA_PALETTE
An AV_PKT_DATA_PALETTE side data packet contains exactly AVPALETTE_SIZE bytes worth of palette.
Definition: packet.h:47
AVPacket::opaque_ref
AVBufferRef * opaque_ref
AVBufferRef for free use by the API user.
Definition: packet.h:631
av_shrink_packet
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
Definition: packet.c:113
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
AV_PKT_DATA_WEBVTT_SETTINGS
@ AV_PKT_DATA_WEBVTT_SETTINGS
The optional settings (rendering instructions) that immediately follow the timestamp specifier of a W...
Definition: packet.h:199
AV_PKT_DATA_PARAM_CHANGE
@ AV_PKT_DATA_PARAM_CHANGE
An AV_PKT_DATA_PARAM_CHANGE side data packet is laid out as follows:
Definition: packet.h:69
AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
@ AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS
Definition: packet.h:673
av_packet_side_data_name
const char * av_packet_side_data_name(enum AVPacketSideDataType type)
Definition: packet.c:269
av_new_packet
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: packet.c:98
AVPacketSideData::data
uint8_t * data
Definition: packet.h:417
AV_PKT_DATA_STEREO3D
@ AV_PKT_DATA_STEREO3D
This side data should be associated with a video stream and contains Stereoscopic 3D information in f...
Definition: packet.h:111
AV_PKT_DATA_SUBTITLE_POSITION
@ AV_PKT_DATA_SUBTITLE_POSITION
Subtitle event position.
Definition: packet.h:180
AVContainerFifo
AVContainerFifo is a FIFO for "containers" - dynamically allocated reusable structs (e....
Definition: container_fifo.c:27
AV_PKT_DATA_LCEVC
@ AV_PKT_DATA_LCEVC
Raw LCEVC payload data, as a uint8_t array, with NAL emulation bytes intact.
Definition: packet.h:346
AVPacket::opaque
void * opaque
for some private data of the user
Definition: packet.h:620
av_packet_side_data_free
void av_packet_side_data_free(AVPacketSideData **sd, int *nb_sd)
Convenience function to free all the side data stored in an array, and the array itself.
Definition: packet.c:733
AVSideDataParamChangeFlags
AVSideDataParamChangeFlags
Definition: packet.h:671
AV_PKT_DATA_3D_REFERENCE_DISPLAYS
@ AV_PKT_DATA_3D_REFERENCE_DISPLAYS
This side data contains information about the reference display width(s) and reference viewing distan...
Definition: packet.h:357
AVPacket::buf
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: packet.h:578
AV_PKT_DATA_EXIF
@ AV_PKT_DATA_EXIF
Extensible image file format metadata.
Definition: packet.h:369
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVPacketSideData::type
enum AVPacketSideDataType type
Definition: packet.h:419
av_packet_ref
int av_packet_ref(AVPacket *dst, const AVPacket *src)
Setup a new reference to the data described by a given packet.
Definition: packet.c:441
av_packet_move_ref
void av_packet_move_ref(AVPacket *dst, AVPacket *src)
Move every field in src to dst and reset src.
Definition: packet.c:490
AV_PKT_DATA_CONTENT_LIGHT_LEVEL
@ AV_PKT_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
Definition: packet.h:232
AV_PKT_DATA_NB
@ AV_PKT_DATA_NB
The number of side data types.
Definition: packet.h:386
av_packet_side_data_get
const AVPacketSideData * av_packet_side_data_get(const AVPacketSideData *sd, int nb_sd, enum AVPacketSideDataType type)
Get side information from a side data array.
Definition: packet.c:645
AV_PKT_DATA_SPHERICAL
@ AV_PKT_DATA_SPHERICAL
This side data should be associated with a video stream and corresponds to the AVSphericalMapping str...
Definition: packet.h:225
av_packet_from_data
int av_packet_from_data(AVPacket *pkt, uint8_t *data, int size)
Initialize a reference-counted packet from av_malloc()ed data.
Definition: packet.c:172
AVPacket::size
int size
Definition: packet.h:596
dst
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
Definition: dsp.h:87
AV_PKT_DATA_DYNAMIC_HDR10_PLUS
@ AV_PKT_DATA_DYNAMIC_HDR10_PLUS
HDR10+ dynamic metadata associated with a video frame.
Definition: packet.h:296
size
int size
Definition: twinvq_data.h:10344
AV_PKT_DATA_METADATA_UPDATE
@ AV_PKT_DATA_METADATA_UPDATE
A list of zero terminated key/value strings.
Definition: packet.h:206
av_packet_unpack_dictionary
int av_packet_unpack_dictionary(const uint8_t *data, size_t size, AVDictionary **dict)
Unpack a dictionary from side_data.
Definition: packet.c:353
buffer.h
attribute_deprecated
#define attribute_deprecated
Definition: attributes.h:127
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:594
av_packet_side_data_add
AVPacketSideData * av_packet_side_data_add(AVPacketSideData **sd, int *nb_sd, enum AVPacketSideDataType type, void *data, size_t size, int flags)
Wrap existing data as packet side data.
Definition: packet.c:688
AV_PKT_DATA_PRFT
@ AV_PKT_DATA_PRFT
Producer Reference Time data corresponding to the AVProducerReferenceTime struct, usually exported by...
Definition: packet.h:265
attributes.h
av_packet_pack_dictionary
uint8_t * av_packet_pack_dictionary(AVDictionary *dict, size_t *size)
Pack a dictionary for use in side_data.
Definition: packet.c:318
av_packet_make_refcounted
int av_packet_make_refcounted(AVPacket *pkt)
Ensure the data described by a given packet is reference counted.
Definition: packet.c:496
AVPacket::flags
int flags
A combination of AV_PKT_FLAG values.
Definition: packet.h:601
av_packet_alloc
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition: packet.c:63
av_packet_rescale_ts
void av_packet_rescale_ts(AVPacket *pkt, AVRational tb_src, AVRational tb_dst)
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another.
Definition: packet.c:537
av_packet_side_data_from_frame
int av_packet_side_data_from_frame(AVPacketSideData **sd, int *nb_sd, const struct AVFrameSideData *src, unsigned int flags)
Add a new packet side data entry to an array based on existing frame side data, if a matching type ex...
AV_PKT_DATA_STRINGS_METADATA
@ AV_PKT_DATA_STRINGS_METADATA
A list of zero terminated key/value strings.
Definition: packet.h:169
av_packet_copy_props
int av_packet_copy_props(AVPacket *dst, const AVPacket *src)
Copy only "properties" fields from src to dst.
Definition: packet.c:396
AV_PKT_DATA_CPB_PROPERTIES
@ AV_PKT_DATA_CPB_PROPERTIES
This side data corresponds to the AVCPBProperties struct.
Definition: packet.h:142
AV_PKT_DATA_H263_MB_INFO
@ AV_PKT_DATA_H263_MB_INFO
An AV_PKT_DATA_H263_MB_INFO side data packet contains a number of structures with info about macroblo...
Definition: packet.h:90
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:588
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size)
Get side information from packet.
Definition: packet.c:252
AV_PKT_DATA_ICC_PROFILE
@ AV_PKT_DATA_ICC_PROFILE
ICC profile data consisting of an opaque octet buffer following the format described by ISO 15076-1.
Definition: packet.h:271
AV_PKT_DATA_MPEGTS_STREAM_ID
@ AV_PKT_DATA_MPEGTS_STREAM_ID
MPEGTS stream ID as uint8_t, this is required to pass the stream ID information from the demuxer to t...
Definition: packet.h:212
version.h
AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL
@ AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL
Data found in BlockAdditional element of matroska container.
Definition: packet.h:188
AV_PKT_DATA_JP_DUALMONO
@ AV_PKT_DATA_JP_DUALMONO
An AV_PKT_DATA_JP_DUALMONO side data packet indicates that the packet may contain "dual mono" audio s...
Definition: packet.h:163
dict.h
av_packet_side_data_new
AVPacketSideData * av_packet_side_data_new(AVPacketSideData **psd, int *pnb_sd, enum AVPacketSideDataType type, size_t size, int flags)
Allocate a new packet side data.
Definition: packet.c:695
AVPacket::side_data
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: packet.h:606
AV_PKT_DATA_WEBVTT_IDENTIFIER
@ AV_PKT_DATA_WEBVTT_IDENTIFIER
The optional first identifier line of a WebVTT cue.
Definition: packet.h:193
av_packet_new_side_data
uint8_t * av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type, size_t size)
Allocate new information of a packet.
Definition: packet.c:231
av_packet_make_writable
int av_packet_make_writable(AVPacket *pkt)
Create a writable reference for the data described by a given packet, avoiding data copy if possible.
Definition: packet.c:515
AV_PKT_DATA_AFD
@ AV_PKT_DATA_AFD
Active Format Description data consisting of a single byte as specified in ETSI TS 101 154 using AVAc...
Definition: packet.h:258
AV_PKT_DATA_SKIP_SAMPLES
@ AV_PKT_DATA_SKIP_SAMPLES
Recommends skipping the specified number of samples.
Definition: packet.h:153
AVPacketSideDataType
AVPacketSideDataType
Definition: packet.h:41
AVPacket::stream_index
int stream_index
Definition: packet.h:597
AV_PKT_DATA_ENCRYPTION_INFO
@ AV_PKT_DATA_ENCRYPTION_INFO
This side data contains encryption info for how to decrypt the packet.
Definition: packet.h:252
AV_PKT_DATA_AUDIO_SERVICE_TYPE
@ AV_PKT_DATA_AUDIO_SERVICE_TYPE
This side data should be associated with an audio stream and corresponds to enum AVAudioServiceType.
Definition: packet.h:117
AV_PKT_DATA_A53_CC
@ AV_PKT_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: packet.h:239
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
AVFrameSideData
Structure to hold side data for an AVFrame.
Definition: frame.h:289
AVPacket
This structure stores compressed data.
Definition: packet.h:572
AV_PKT_DATA_DYNAMIC_HDR_SMPTE_2094_APP5
@ AV_PKT_DATA_DYNAMIC_HDR_SMPTE_2094_APP5
HDR dynamic metadata associated with a video frame.
Definition: packet.h:376
AVPacket::pos
int64_t pos
byte position in stream, -1 if unknown
Definition: packet.h:615
pkt
static AVPacket * pkt
Definition: demux_decode.c:55
AV_PKT_DATA_IAMF_MIX_GAIN_PARAM
@ AV_PKT_DATA_IAMF_MIX_GAIN_PARAM
IAMF Mix Gain Parameter Data associated with the audio frame.
Definition: packet.h:304
src
#define src
Definition: vp8dsp.c:248
AVPacket::time_base
AVRational time_base
Time base of the packet's timestamps.
Definition: packet.h:639
AVPacket::side_data_elems
int side_data_elems
Definition: packet.h:607
av_packet_clone
AVPacket * av_packet_clone(const AVPacket *src)
Create a new packet that references the same data as src.
Definition: packet.c:477
av_container_fifo_alloc_avpacket
struct AVContainerFifo * av_container_fifo_alloc_avpacket(unsigned flags)
Allocate an AVContainerFifo instance for AVPacket.
Definition: packet.c:770
AV_PKT_DATA_IAMF_DEMIXING_INFO_PARAM
@ AV_PKT_DATA_IAMF_DEMIXING_INFO_PARAM
IAMF Demixing Info Parameter Data associated with the audio frame.
Definition: packet.h:312