Blame view

3rdparty/ffmpeg-4.4.4/libavcodec/packet_internal.h 2.61 KB
09c2d08c   Hu Chunming   arm交付版
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  /*
   * This file is part of FFmpeg.
   *
   * FFmpeg is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * FFmpeg is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with FFmpeg; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
   */
  
  #ifndef AVCODEC_PACKET_INTERNAL_H
  #define AVCODEC_PACKET_INTERNAL_H
  
  #include <stdint.h>
  
  #include "packet.h"
  
  typedef struct PacketList {
      AVPacket pkt;
      struct PacketList *next;
  } PacketList;
  
  /**
   * Append an AVPacket to the list.
   *
   * @param head  List head element
   * @param tail  List tail element
   * @param pkt   The packet being appended. The data described in it will
   *              be made reference counted if it isn't already.
   * @param copy  A callback to copy the contents of the packet to the list.
                  May be null, in which case the packet's reference will be
                  moved to the list.
   * @return 0 on success, negative AVERROR value on failure. On failure,
             the packet and the list are unchanged.
   */
  int avpriv_packet_list_put(PacketList **head, PacketList **tail,
                             AVPacket *pkt,
                             int (*copy)(AVPacket *dst, const AVPacket *src),
                             int flags);
  
  /**
   * Remove the oldest AVPacket in the list and return it.
   *
   * @note The pkt will be overwritten completely on success. The caller
   *       owns the packet and must unref it by itself.
   *
   * @param head List head element
   * @param tail List tail element
   * @param pkt  Pointer to an AVPacket struct
   * @return 0 on success, and a packet is returned. AVERROR(EAGAIN) if
   *         the list was empty.
   */
  int avpriv_packet_list_get(PacketList **head, PacketList **tail,
                             AVPacket *pkt);
  
  /**
   * Wipe the list and unref all the packets in it.
   *
   * @param head List head element
   * @param tail List tail element
   */
  void avpriv_packet_list_free(PacketList **head, PacketList **tail);
  
  int ff_side_data_set_encoder_stats(AVPacket *pkt, int quality, int64_t *error, int error_count, int pict_type);
  
  int ff_side_data_set_prft(AVPacket *pkt, int64_t timestamp);
  
  #endif // AVCODEC_PACKET_INTERNAL_H