FFmpeg
packet.c
Go to the documentation of this file.
1 /*
2  * AVPacket functions for libavcodec
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include <string.h>
23 
24 #include "libavutil/avassert.h"
25 #include "libavutil/avutil.h"
27 #include "libavutil/intreadwrite.h"
28 #include "libavutil/mathematics.h"
29 #include "libavutil/mem.h"
30 #include "libavutil/rational.h"
31 
32 #include "defs.h"
33 #include "packet.h"
34 #include "packet_internal.h"
35 
36 #if FF_API_INIT_PACKET
37 void av_init_packet(AVPacket *pkt)
38 {
41  pkt->pos = -1;
42  pkt->duration = 0;
43  pkt->flags = 0;
44  pkt->stream_index = 0;
45  pkt->buf = NULL;
46  pkt->side_data = NULL;
47  pkt->side_data_elems = 0;
48  pkt->opaque = NULL;
49  pkt->opaque_ref = NULL;
50  pkt->time_base = av_make_q(0, 1);
51 }
52 #endif
53 
55 {
56  memset(pkt, 0, sizeof(*pkt));
57 
60  pkt->pos = -1;
61  pkt->time_base = av_make_q(0, 1);
62 }
63 
65 {
66  AVPacket *pkt = av_malloc(sizeof(AVPacket));
67  if (!pkt)
68  return pkt;
69 
71 
72  return pkt;
73 }
74 
76 {
77  if (!pkt || !*pkt)
78  return;
79 
81  av_freep(pkt);
82 }
83 
84 static int packet_alloc(AVBufferRef **buf, int size)
85 {
86  int ret;
87  if (size < 0 || size >= INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
88  return AVERROR(EINVAL);
89 
91  if (ret < 0)
92  return ret;
93 
94  memset((*buf)->data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
95 
96  return 0;
97 }
98 
100 {
101  AVBufferRef *buf = NULL;
102  int ret = packet_alloc(&buf, size);
103  if (ret < 0)
104  return ret;
105 
107  pkt->buf = buf;
108  pkt->data = buf->data;
109  pkt->size = size;
110 
111  return 0;
112 }
113 
115 {
116  if (pkt->size <= size)
117  return;
118  pkt->size = size;
119  memset(pkt->data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
120 }
121 
122 int av_grow_packet(AVPacket *pkt, int grow_by)
123 {
124  int new_size;
125  av_assert0((unsigned)pkt->size <= INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE);
126  if ((unsigned)grow_by >
127  INT_MAX - (pkt->size + AV_INPUT_BUFFER_PADDING_SIZE))
128  return AVERROR(ENOMEM);
129 
130  new_size = pkt->size + grow_by + AV_INPUT_BUFFER_PADDING_SIZE;
131  if (pkt->buf) {
132  size_t data_offset;
133  uint8_t *old_data = pkt->data;
134  if (pkt->data == NULL) {
135  data_offset = 0;
136  pkt->data = pkt->buf->data;
137  } else {
138  data_offset = pkt->data - pkt->buf->data;
139  if (data_offset > INT_MAX - new_size)
140  return AVERROR(ENOMEM);
141  }
142 
143  if (new_size + data_offset > pkt->buf->size ||
145  int ret;
146 
147  // allocate slightly more than requested to avoid excessive
148  // reallocations
149  if (new_size + data_offset < INT_MAX - new_size/16)
150  new_size += new_size/16;
151 
152  ret = av_buffer_realloc(&pkt->buf, new_size + data_offset);
153  if (ret < 0) {
154  pkt->data = old_data;
155  return ret;
156  }
157  pkt->data = pkt->buf->data + data_offset;
158  }
159  } else {
160  pkt->buf = av_buffer_alloc(new_size);
161  if (!pkt->buf)
162  return AVERROR(ENOMEM);
163  if (pkt->size > 0)
164  memcpy(pkt->buf->data, pkt->data, pkt->size);
165  pkt->data = pkt->buf->data;
166  }
167  pkt->size += grow_by;
168  memset(pkt->data + pkt->size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
169 
170  return 0;
171 }
172 
174 {
175  if (size >= INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
176  return AVERROR(EINVAL);
177 
180  if (!pkt->buf)
181  return AVERROR(ENOMEM);
182 
183  pkt->data = data;
184  pkt->size = size;
185 
186  return 0;
187 }
188 
190 {
191  int i;
192  for (i = 0; i < pkt->side_data_elems; i++)
195  pkt->side_data_elems = 0;
196 }
197 
199  uint8_t *data, size_t size)
200 {
202  int i, elems = pkt->side_data_elems;
203 
204  for (i = 0; i < elems; i++) {
205  AVPacketSideData *sd = &pkt->side_data[i];
206 
207  if (sd->type == type) {
208  av_free(sd->data);
209  sd->data = data;
210  sd->size = size;
211  return 0;
212  }
213  }
214 
215  if ((unsigned)elems + 1 > AV_PKT_DATA_NB)
216  return AVERROR(ERANGE);
217 
218  tmp = av_realloc(pkt->side_data, (elems + 1) * sizeof(*tmp));
219  if (!tmp)
220  return AVERROR(ENOMEM);
221 
222  pkt->side_data = tmp;
223  pkt->side_data[elems].data = data;
224  pkt->side_data[elems].size = size;
225  pkt->side_data[elems].type = type;
226  pkt->side_data_elems++;
227 
228  return 0;
229 }
230 
231 
233  size_t size)
234 {
235  int ret;
236  uint8_t *data;
237 
238  if (size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
239  return NULL;
241  if (!data)
242  return NULL;
243 
245  if (ret < 0) {
246  av_freep(&data);
247  return NULL;
248  }
249 
250  return data;
251 }
252 
254  size_t *size)
255 {
256  int i;
257 
258  for (i = 0; i < pkt->side_data_elems; i++) {
259  if (pkt->side_data[i].type == type) {
260  if (size)
261  *size = pkt->side_data[i].size;
262  return pkt->side_data[i].data;
263  }
264  }
265  if (size)
266  *size = 0;
267  return NULL;
268 }
269 
271 {
272  switch(type) {
273  case AV_PKT_DATA_PALETTE: return "Palette";
274  case AV_PKT_DATA_NEW_EXTRADATA: return "New Extradata";
275  case AV_PKT_DATA_PARAM_CHANGE: return "Param Change";
276  case AV_PKT_DATA_H263_MB_INFO: return "H263 MB Info";
277  case AV_PKT_DATA_REPLAYGAIN: return "Replay Gain";
278  case AV_PKT_DATA_DISPLAYMATRIX: return "Display Matrix";
279  case AV_PKT_DATA_STEREO3D: return "Stereo 3D";
280  case AV_PKT_DATA_AUDIO_SERVICE_TYPE: return "Audio Service Type";
281  case AV_PKT_DATA_QUALITY_STATS: return "Quality stats";
282  case AV_PKT_DATA_FALLBACK_TRACK: return "Fallback track";
283  case AV_PKT_DATA_CPB_PROPERTIES: return "CPB properties";
284  case AV_PKT_DATA_SKIP_SAMPLES: return "Skip Samples";
285  case AV_PKT_DATA_JP_DUALMONO: return "JP Dual Mono";
286  case AV_PKT_DATA_STRINGS_METADATA: return "Strings Metadata";
287  case AV_PKT_DATA_SUBTITLE_POSITION: return "Subtitle Position";
288  case AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL: return "Matroska BlockAdditional";
289  case AV_PKT_DATA_WEBVTT_IDENTIFIER: return "WebVTT ID";
290  case AV_PKT_DATA_WEBVTT_SETTINGS: return "WebVTT Settings";
291  case AV_PKT_DATA_METADATA_UPDATE: return "Metadata Update";
292  case AV_PKT_DATA_MPEGTS_STREAM_ID: return "MPEGTS Stream ID";
293  case AV_PKT_DATA_MASTERING_DISPLAY_METADATA: return "Mastering display metadata";
294  case AV_PKT_DATA_CONTENT_LIGHT_LEVEL: return "Content light level metadata";
295  case AV_PKT_DATA_SPHERICAL: return "Spherical Mapping";
296  case AV_PKT_DATA_A53_CC: return "A53 Closed Captions";
297  case AV_PKT_DATA_ENCRYPTION_INIT_INFO: return "Encryption initialization data";
298  case AV_PKT_DATA_ENCRYPTION_INFO: return "Encryption info";
299  case AV_PKT_DATA_AFD: return "Active Format Description data";
300  case AV_PKT_DATA_PRFT: return "Producer Reference Time";
301  case AV_PKT_DATA_ICC_PROFILE: return "ICC Profile";
302  case AV_PKT_DATA_DOVI_CONF: return "DOVI configuration record";
303  case AV_PKT_DATA_S12M_TIMECODE: return "SMPTE ST 12-1:2014 timecode";
304  case AV_PKT_DATA_DYNAMIC_HDR10_PLUS: return "HDR10+ Dynamic Metadata (SMPTE 2094-40)";
305  case AV_PKT_DATA_AMBIENT_VIEWING_ENVIRONMENT:return "Ambient viewing environment";
306  case AV_PKT_DATA_IAMF_MIX_GAIN_PARAM: return "IAMF Mix Gain Parameter Data";
307  case AV_PKT_DATA_IAMF_DEMIXING_INFO_PARAM: return "IAMF Demixing Info Parameter Data";
308  case AV_PKT_DATA_IAMF_RECON_GAIN_INFO_PARAM: return "IAMF Recon Gain Info Parameter Data";
309  case AV_PKT_DATA_FRAME_CROPPING: return "Frame Cropping";
310  case AV_PKT_DATA_LCEVC: return "LCEVC NAL data";
311  case AV_PKT_DATA_3D_REFERENCE_DISPLAYS: return "3D Reference Displays Info";
312  case AV_PKT_DATA_RTCP_SR: return "RTCP Sender Report";
313  case AV_PKT_DATA_EXIF: return "EXIF metadata";
314  }
315  return NULL;
316 }
317 
319 {
320  uint8_t *data = NULL;
321  *size = 0;
322 
323  if (!dict)
324  return NULL;
325 
326  for (int pass = 0; pass < 2; pass++) {
327  const AVDictionaryEntry *t = NULL;
328  size_t total_length = 0;
329 
330  while ((t = av_dict_iterate(dict, t))) {
331  for (int i = 0; i < 2; i++) {
332  const char *str = i ? t->value : t->key;
333  const size_t len = strlen(str) + 1;
334 
335  if (pass)
336  memcpy(data + total_length, str, len);
337  else if (len > SIZE_MAX - total_length)
338  return NULL;
339  total_length += len;
340  }
341  }
342  if (pass)
343  break;
344  data = av_malloc(total_length);
345  if (!data)
346  return NULL;
347  *size = total_length;
348  }
349 
350  return data;
351 }
352 
353 int av_packet_unpack_dictionary(const uint8_t *data, size_t size,
354  AVDictionary **dict)
355 {
356  const uint8_t *end;
357  int ret;
358 
359  if (!dict || !data || !size)
360  return 0;
361  end = data + size;
362  if (size && end[-1])
363  return AVERROR_INVALIDDATA;
364  while (data < end) {
365  const uint8_t *key = data;
366  const uint8_t *val = data + strlen(key) + 1;
367 
368  if (val >= end || !*key)
369  return AVERROR_INVALIDDATA;
370 
371  ret = av_dict_set(dict, key, val, 0);
372  if (ret < 0)
373  return ret;
374  data = val + strlen(val) + 1;
375  }
376 
377  return 0;
378 }
379 
381  size_t size)
382 {
383  int i;
384 
385  for (i = 0; i < pkt->side_data_elems; i++) {
386  if (pkt->side_data[i].type == type) {
387  if (size > pkt->side_data[i].size)
388  return AVERROR(ENOMEM);
389  pkt->side_data[i].size = size;
390  return 0;
391  }
392  }
393  return AVERROR(ENOENT);
394 }
395 
397 {
398  int i, ret;
399 
400  dst->pts = src->pts;
401  dst->dts = src->dts;
402  dst->pos = src->pos;
403  dst->duration = src->duration;
404  dst->flags = src->flags;
405  dst->stream_index = src->stream_index;
406  dst->opaque = src->opaque;
407  dst->time_base = src->time_base;
408  dst->opaque_ref = NULL;
409  dst->side_data = NULL;
410  dst->side_data_elems = 0;
411 
412  ret = av_buffer_replace(&dst->opaque_ref, src->opaque_ref);
413  if (ret < 0)
414  return ret;
415 
416  for (i = 0; i < src->side_data_elems; i++) {
417  enum AVPacketSideDataType type = src->side_data[i].type;
418  size_t size = src->side_data[i].size;
419  uint8_t *src_data = src->side_data[i].data;
420  uint8_t *dst_data = av_packet_new_side_data(dst, type, size);
421 
422  if (!dst_data) {
423  av_buffer_unref(&dst->opaque_ref);
425  return AVERROR(ENOMEM);
426  }
427  memcpy(dst_data, src_data, size);
428  }
429 
430  return 0;
431 }
432 
434 {
439 }
440 
442 {
443  int ret;
444 
445  dst->buf = NULL;
446 
448  if (ret < 0)
449  goto fail;
450 
451  if (!src->buf) {
452  ret = packet_alloc(&dst->buf, src->size);
453  if (ret < 0)
454  goto fail;
455  av_assert1(!src->size || src->data);
456  if (src->size)
457  memcpy(dst->buf->data, src->data, src->size);
458 
459  dst->data = dst->buf->data;
460  } else {
461  dst->buf = av_buffer_ref(src->buf);
462  if (!dst->buf) {
463  ret = AVERROR(ENOMEM);
464  goto fail;
465  }
466  dst->data = src->data;
467  }
468 
469  dst->size = src->size;
470 
471  return 0;
472 fail:
474  return ret;
475 }
476 
478 {
480 
481  if (!ret)
482  return ret;
483 
484  if (av_packet_ref(ret, src))
486 
487  return ret;
488 }
489 
491 {
492  *dst = *src;
494 }
495 
497 {
498  int ret;
499 
500  if (pkt->buf)
501  return 0;
502 
503  ret = packet_alloc(&pkt->buf, pkt->size);
504  if (ret < 0)
505  return ret;
506  av_assert1(!pkt->size || pkt->data);
507  if (pkt->size)
508  memcpy(pkt->buf->data, pkt->data, pkt->size);
509 
510  pkt->data = pkt->buf->data;
511 
512  return 0;
513 }
514 
516 {
517  AVBufferRef *buf = NULL;
518  int ret;
519 
520  if (pkt->buf && av_buffer_is_writable(pkt->buf))
521  return 0;
522 
523  ret = packet_alloc(&buf, pkt->size);
524  if (ret < 0)
525  return ret;
526  av_assert1(!pkt->size || pkt->data);
527  if (pkt->size)
528  memcpy(buf->data, pkt->data, pkt->size);
529 
531  pkt->buf = buf;
532  pkt->data = buf->data;
533 
534  return 0;
535 }
536 
538 {
539  if (pkt->pts != AV_NOPTS_VALUE)
540  pkt->pts = av_rescale_q(pkt->pts, src_tb, dst_tb);
541  if (pkt->dts != AV_NOPTS_VALUE)
542  pkt->dts = av_rescale_q(pkt->dts, src_tb, dst_tb);
543  if (pkt->duration > 0)
544  pkt->duration = av_rescale_q(pkt->duration, src_tb, dst_tb);
545 }
546 
548  AVPacket *pkt,
549  int (*copy)(AVPacket *dst, const AVPacket *src),
550  int flags)
551 {
552  PacketListEntry *pktl = av_malloc(sizeof(*pktl));
553  unsigned int update_end_point = 1;
554  int ret;
555 
556  if (!pktl)
557  return AVERROR(ENOMEM);
558 
559  if (copy) {
560  get_packet_defaults(&pktl->pkt);
561  ret = copy(&pktl->pkt, pkt);
562  if (ret < 0) {
563  av_free(pktl);
564  return ret;
565  }
566  } else {
568  if (ret < 0) {
569  av_free(pktl);
570  return ret;
571  }
572  av_packet_move_ref(&pktl->pkt, pkt);
573  }
574 
575  pktl->next = NULL;
576 
577  if (packet_buffer->head) {
579  pktl->next = packet_buffer->head;
580  packet_buffer->head = pktl;
581  update_end_point = 0;
582  } else {
583  packet_buffer->tail->next = pktl;
584  }
585  } else
586  packet_buffer->head = pktl;
587 
588  if (update_end_point) {
589  /* Add the packet in the buffered packet list. */
590  packet_buffer->tail = pktl;
591  }
592 
593  return 0;
594 }
595 
597  AVPacket *pkt)
598 {
599  PacketListEntry *pktl = pkt_buffer->head;
600  if (!pktl)
601  return AVERROR(EAGAIN);
602  *pkt = pktl->pkt;
603  pkt_buffer->head = pktl->next;
604  if (!pkt_buffer->head)
605  pkt_buffer->tail = NULL;
606  av_freep(&pktl);
607  return 0;
608 }
609 
611 {
612  PacketListEntry *tmp = pkt_buf->head;
613 
614  while (tmp) {
615  PacketListEntry *pktl = tmp;
616  tmp = pktl->next;
617  av_packet_unref(&pktl->pkt);
618  av_freep(&pktl);
619  }
620  pkt_buf->head = pkt_buf->tail = NULL;
621 }
622 
623 int ff_side_data_set_encoder_stats(AVPacket *pkt, int quality, int64_t *error, int error_count, int pict_type)
624 {
625  uint8_t *side_data;
626  size_t side_data_size;
627  int i;
628 
629  side_data = av_packet_get_side_data(pkt, AV_PKT_DATA_QUALITY_STATS, &side_data_size);
630  if (!side_data) {
631  side_data_size = 4+4+8*error_count;
633  side_data_size);
634  }
635 
636  if (!side_data || side_data_size < 4+4+8*error_count)
637  return AVERROR(ENOMEM);
638 
639  AV_WL32(side_data , quality );
640  side_data[4] = pict_type;
641  side_data[5] = error_count;
642  for (i = 0; i<error_count; i++)
643  AV_WL64(side_data+8 + 8*i , error[i]);
644 
645  return 0;
646 }
647 
649 {
651  uint8_t *side_data;
652  size_t side_data_size;
653 
654  side_data = av_packet_get_side_data(pkt, AV_PKT_DATA_PRFT, &side_data_size);
655  if (!side_data) {
656  side_data_size = sizeof(AVProducerReferenceTime);
657  side_data = av_packet_new_side_data(pkt, AV_PKT_DATA_PRFT, side_data_size);
658  }
659 
660  if (!side_data || side_data_size < sizeof(AVProducerReferenceTime))
661  return AVERROR(ENOMEM);
662 
663  prft = (AVProducerReferenceTime *)side_data;
664  prft->wallclock = timestamp;
665  prft->flags = 0;
666 
667  return 0;
668 }
669 
672 {
673  for (int i = 0; i < nb_sd; i++)
674  if (sd[i].type == type)
675  return &sd[i];
676 
677  return NULL;
678 }
679 
682  void *data, size_t size)
683 {
684  AVPacketSideData *sd = *psd, *tmp;
685  int nb_sd = *pnb_sd;
686 
687  for (int i = 0; i < nb_sd; i++) {
688  if (sd[i].type != type)
689  continue;
690 
691  av_free(sd[i].data);
692  sd[i].data = data;
693  sd[i].size = size;
694  return &sd[i];
695  }
696 
697  if (nb_sd == INT_MAX)
698  return NULL;
699 
700  tmp = av_realloc_array(sd, nb_sd + 1, sizeof(*tmp));
701  if (!tmp)
702  return NULL;
703 
704  *psd = sd = tmp;
705  sd[nb_sd].type = type;
706  sd[nb_sd].data = data;
707  sd[nb_sd].size = size;
708  *pnb_sd = nb_sd + 1;
709 
710  return &sd[nb_sd];
711 }
712 
715  void *data, size_t size, int flags)
716 {
717  return packet_side_data_add(psd, pnb_sd, type, data, size);
718 }
719 
722  size_t size, int flags)
723 {
724  AVPacketSideData *sd = NULL;
725  uint8_t *data;
726 
727  if (size > SIZE_MAX - AV_INPUT_BUFFER_PADDING_SIZE)
728  return NULL;
729 
731  if (!data)
732  return NULL;
733  memset(data + size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
734 
735  sd = packet_side_data_add(psd, pnb_sd, type, data, size);
736  if (!sd)
737  av_freep(&data);
738 
739  return sd;
740 }
741 
744 {
745  int nb_sd = *pnb_sd;
746 
747  for (int i = nb_sd - 1; i >= 0; i--) {
748  if (sd[i].type != type)
749  continue;
750  av_free(sd[i].data);
751  sd[i] = sd[--nb_sd];
752  break;
753  }
754 
755  *pnb_sd = nb_sd;
756 }
757 
759 {
760  AVPacketSideData *sd = *psd;
761  int nb_sd = *pnb_sd;
762 
763  for (int i = 0; i < nb_sd; i++)
764  av_free(sd[i].data);
765 
766  av_freep(psd);
767  *pnb_sd = 0;
768 }
769 
770 static void *container_packet_alloc(void *opaque)
771 {
772  return av_packet_alloc();
773 }
774 
775 static void container_packet_reset(void *opaque, void *obj)
776 {
777  av_packet_unref(obj);
778 }
779 
780 static void container_packet_free(void *opaque, void *obj)
781 {
782  AVPacket *pkt = obj;
784 }
785 
786 static int container_packet_transfer(void *opaque, void *dst, void *src, unsigned flags)
787 {
789  return av_packet_ref(dst, src);
790 
792  return 0;
793 }
794 
796 {
800 }
error
static void error(const char *err)
Definition: target_bsf_fuzzer.c:32
flags
const SwsFlags flags[]
Definition: swscale.c:61
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_CONTAINER_FIFO_FLAG_REF
@ AV_CONTAINER_FIFO_FLAG_REF
Signal to av_container_fifo_write() that it should make a new reference to data in src rather than co...
Definition: container_fifo.h:39
PacketList::head
PacketListEntry * head
Definition: packet_internal.h:34
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
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
AV_WL32
#define AV_WL32(p, v)
Definition: intreadwrite.h:422
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
AVBufferRef::data
uint8_t * data
The data buffer.
Definition: buffer.h:90
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
container_packet_alloc
static void * container_packet_alloc(void *opaque)
Definition: packet.c:770
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:122
container_fifo.h
AVPacketSideData
This structure stores auxiliary information for decoding, presenting, or otherwise processing the cod...
Definition: packet.h:409
AVProducerReferenceTime::wallclock
int64_t wallclock
A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
Definition: defs.h:335
AVPacket::data
uint8_t * data
Definition: packet.h:558
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
PacketList
Definition: packet_internal.h:33
data
const char data[16]
Definition: mxf.c:149
av_packet_side_data_remove
void av_packet_side_data_remove(AVPacketSideData *sd, int *pnb_sd, enum AVPacketSideDataType type)
Remove side data of the given type from a side data array.
Definition: packet.c:742
AV_PKT_DATA_S12M_TIMECODE
@ AV_PKT_DATA_S12M_TIMECODE
Timecode which conforms to SMPTE ST 12-1:2014.
Definition: packet.h:288
AVPacket::duration
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: packet.h:576
mathematics.h
AVDictionary
Definition: dict.c:32
av_buffer_ref
AVBufferRef * av_buffer_ref(const AVBufferRef *buf)
Create a new reference to an AVBuffer.
Definition: buffer.c:103
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
container_packet_reset
static void container_packet_reset(void *opaque, void *obj)
Definition: packet.c:775
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:189
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:75
quality
trying all byte sequences megabyte in length and selecting the best looking sequence will yield cases to try But a word about quality
Definition: rate_distortion.txt:12
av_malloc
#define av_malloc(s)
Definition: tableprint_vlc.h:31
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:411
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:198
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:594
fail
#define fail()
Definition: checkasm.h:200
av_shrink_packet
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
Definition: packet.c:114
avpriv_packet_list_get
int avpriv_packet_list_get(PacketList *pkt_buffer, AVPacket *pkt)
Remove the oldest AVPacket in the list and return it.
Definition: packet.c:596
val
static double val(void *priv, double ch)
Definition: aeval.c:77
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
avassert.h
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
pkt
AVPacket * pkt
Definition: movenc.c:60
av_packet_side_data_name
const char * av_packet_side_data_name(enum AVPacketSideDataType type)
Definition: packet.c:270
intreadwrite.h
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:99
av_realloc_array
void * av_realloc_array(void *ptr, size_t nmemb, size_t size)
Definition: mem.c:217
AVDictionaryEntry::key
char * key
Definition: dict.h:91
av_buffer_default_free
void av_buffer_default_free(void *opaque, uint8_t *data)
Default free callback, which calls av_free() on the buffer data.
Definition: buffer.c:72
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:41
AVPacketSideData::data
uint8_t * data
Definition: packet.h:410
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_rescale_q
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
Definition: mathematics.c:142
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
packet_side_data_add
static AVPacketSideData * packet_side_data_add(AVPacketSideData **psd, int *pnb_sd, enum AVPacketSideDataType type, void *data, size_t size)
Definition: packet.c:680
key
const char * key
Definition: hwcontext_opencl.c:189
container_packet_transfer
static int container_packet_transfer(void *opaque, void *dst, void *src, unsigned flags)
Definition: packet.c:786
AVPacket::opaque
void * opaque
for some private data of the user
Definition: packet.h:583
av_packet_side_data_free
void av_packet_side_data_free(AVPacketSideData **psd, int *pnb_sd)
Convenience function to free all the side data stored in an array, and the array itself.
Definition: packet.c:758
tmp
static uint8_t tmp[40]
Definition: aes_ctr.c:52
PacketList::tail
PacketListEntry * tail
Definition: packet_internal.h:34
avpriv_packet_list_free
void avpriv_packet_list_free(PacketList *pkt_buf)
Wipe the list and unref all the packets in it.
Definition: packet.c:610
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:541
AV_PKT_DATA_EXIF
@ AV_PKT_DATA_EXIF
Extensible image file format metadata.
Definition: packet.h:369
NULL
#define NULL
Definition: coverity.c:32
av_buffer_unref
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it.
Definition: buffer.c:139
avpriv_packet_list_put
int avpriv_packet_list_put(PacketList *packet_buffer, AVPacket *pkt, int(*copy)(AVPacket *dst, const AVPacket *src), int flags)
Append an AVPacket to the list.
Definition: packet.c:547
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AVPacketSideData::type
enum AVPacketSideDataType type
Definition: packet.h:412
AVProducerReferenceTime
This structure supplies correlation between a packet timestamp and a wall clock production time.
Definition: defs.h:331
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
PacketListEntry::next
struct PacketListEntry * next
Definition: packet_internal.h:29
AVProducerReferenceTime::flags
int flags
Definition: defs.h:336
FF_PACKETLIST_FLAG_PREPEND
#define FF_PACKETLIST_FLAG_PREPEND
Prepend created AVPacketList instead of appending.
Definition: packet_internal.h:37
AV_PKT_DATA_CONTENT_LIGHT_LEVEL
@ AV_PKT_DATA_CONTENT_LIGHT_LEVEL
Content light level (based on CTA-861.3).
Definition: packet.h:232
packet_alloc
static int packet_alloc(AVBufferRef **buf, int size)
Definition: packet.c:84
av_buffer_create
AVBufferRef * av_buffer_create(uint8_t *data, size_t size, void(*free)(void *opaque, uint8_t *data), void *opaque, int flags)
Create an AVBuffer from an existing array.
Definition: buffer.c:55
AV_PKT_DATA_NB
@ AV_PKT_DATA_NB
The number of side data types.
Definition: packet.h:379
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:670
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:173
AVPacket::size
int size
Definition: packet.h:559
copy
static void copy(const float *p1, float *p2, const int length)
Definition: vf_vaguedenoiser.c:186
container_packet_free
static void container_packet_free(void *opaque, void *obj)
Definition: packet.c:780
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_make_q
static AVRational av_make_q(int num, int den)
Create an AVRational.
Definition: rational.h:71
AV_PKT_DATA_METADATA_UPDATE
@ AV_PKT_DATA_METADATA_UPDATE
A list of zero terminated key/value strings.
Definition: packet.h:206
AV_NOPTS_VALUE
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:247
PacketListEntry::pkt
AVPacket pkt
Definition: packet_internal.h:30
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
AVPacket::dts
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed.
Definition: packet.h:557
AV_WL64
#define AV_WL64(p, v)
Definition: intreadwrite.h:436
av_packet_side_data_add
AVPacketSideData * av_packet_side_data_add(AVPacketSideData **psd, int *pnb_sd, enum AVPacketSideDataType type, void *data, size_t size, int flags)
Wrap existing data as packet side data.
Definition: packet.c:713
AV_PKT_DATA_PRFT
@ AV_PKT_DATA_PRFT
Producer Reference Time data corresponding to the AVProducerReferenceTime struct, usually exported by...
Definition: packet.h:265
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:564
av_packet_alloc
AVPacket * av_packet_alloc(void)
Allocate an AVPacket and set its fields to default values.
Definition: packet.c:64
av_buffer_alloc
AVBufferRef * av_buffer_alloc(size_t size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:77
av_packet_rescale_ts
void av_packet_rescale_ts(AVPacket *pkt, AVRational src_tb, AVRational dst_tb)
Convert valid timing fields (timestamps / durations) in a packet from one timebase to another.
Definition: packet.c:537
AVBufferRef::size
size_t size
Size of data in bytes.
Definition: buffer.h:94
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
PacketListEntry
Definition: packet_internal.h:28
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
AVPacket::pts
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: packet.h:551
get_packet_defaults
static void get_packet_defaults(AVPacket *pkt)
Definition: packet.c:54
packet.h
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:253
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_assert1
#define av_assert1(cond)
assert() equivalent, that does not lie in speed critical code.
Definition: avassert.h:57
av_mallocz
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:256
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
av_buffer_replace
int av_buffer_replace(AVBufferRef **pdst, const AVBufferRef *src)
Ensure dst refers to the same data as src.
Definition: buffer.c:233
len
int len
Definition: vorbis_enc_data.h:426
av_buffer_is_writable
int av_buffer_is_writable(const AVBufferRef *buf)
Definition: buffer.c:147
AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL
@ AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL
Data found in BlockAdditional element of matroska container.
Definition: packet.h:188
ret
ret
Definition: filter_design.txt:187
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
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:720
AVPacket::side_data
AVPacketSideData * side_data
Additional packet data that can be provided by the container.
Definition: packet.h:569
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: defs.h:40
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:232
defs.h
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:560
ff_side_data_set_prft
int ff_side_data_set_prft(AVPacket *pkt, int64_t timestamp)
Definition: packet.c:648
av_buffer_realloc
int av_buffer_realloc(AVBufferRef **pbuf, size_t size)
Reallocate a given buffer.
Definition: buffer.c:183
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
avutil.h
AV_PKT_DATA_A53_CC
@ AV_PKT_DATA_A53_CC
ATSC A53 Part 4 Closed Captions.
Definition: packet.h:239
mem.h
AVBufferRef
A reference to a data buffer.
Definition: buffer.h:82
packet_internal.h
av_free
#define av_free(p)
Definition: tableprint_vlc.h:34
AVDictionaryEntry
Definition: dict.h:90
AVPacket
This structure stores compressed data.
Definition: packet.h:535
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
av_dict_set
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:86
AVPacket::pos
int64_t pos
byte position in stream, -1 if unknown
Definition: packet.h:578
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
ff_side_data_set_encoder_stats
int ff_side_data_set_encoder_stats(AVPacket *pkt, int quality, int64_t *error, int error_count, int pict_type)
Definition: packet.c:623
AVDictionaryEntry::value
char * value
Definition: dict.h:92
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
av_dict_iterate
const AVDictionaryEntry * av_dict_iterate(const AVDictionary *m, const AVDictionaryEntry *prev)
Iterate over a dictionary.
Definition: dict.c:42
src
#define src
Definition: vp8dsp.c:248
AVPacket::time_base
AVRational time_base
Time base of the packet's timestamps.
Definition: packet.h:602
AVPacket::side_data_elems
int side_data_elems
Definition: packet.h:570
av_container_fifo_alloc
AVContainerFifo * av_container_fifo_alloc(void *opaque, void *(*container_alloc)(void *opaque), void(*container_reset)(void *opaque, void *obj), void(*container_free)(void *opaque, void *obj), int(*fifo_transfer)(void *opaque, void *dst, void *src, unsigned flags), unsigned flags)
Allocate a new AVContainerFifo for the container type defined by provided callbacks.
Definition: container_fifo.c:64
av_realloc
void * av_realloc(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory.
Definition: mem.c:155
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
AVContainerFifo * av_container_fifo_alloc_avpacket(unsigned flags)
Allocate an AVContainerFifo instance for AVPacket.
Definition: packet.c:795
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