You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

511 lines
14KB

  1. /*
  2. *
  3. * This file is part of Libav.
  4. *
  5. * Libav is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2.1 of the License, or (at your option) any later version.
  9. *
  10. * Libav is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with Libav; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. #ifndef AVUTIL_FRAME_H
  20. #define AVUTIL_FRAME_H
  21. #include <stdint.h>
  22. #include "libavcodec/version.h"
  23. #include "avutil.h"
  24. #include "buffer.h"
  25. #include "dict.h"
  26. #include "rational.h"
  27. #include "samplefmt.h"
  28. enum AVFrameSideDataType {
  29. /**
  30. * The data is the AVPanScan struct defined in libavcodec.
  31. */
  32. AV_FRAME_DATA_PANSCAN,
  33. /**
  34. * ATSC A53 Part 4 Closed Captions.
  35. * A53 CC bitstream is stored as uint8_t in AVFrameSideData.data.
  36. * The number of bytes of CC data is AVFrameSideData.size.
  37. */
  38. AV_FRAME_DATA_A53_CC,
  39. };
  40. typedef struct AVFrameSideData {
  41. enum AVFrameSideDataType type;
  42. uint8_t *data;
  43. int size;
  44. AVDictionary *metadata;
  45. } AVFrameSideData;
  46. /**
  47. * This structure describes decoded (raw) audio or video data.
  48. *
  49. * AVFrame must be allocated using av_frame_alloc(). Not that this only
  50. * allocates the AVFrame itself, the buffers for the data must be managed
  51. * through other means (see below).
  52. * AVFrame must be freed with av_frame_free().
  53. *
  54. * AVFrame is typically allocated once and then reused multiple times to hold
  55. * different data (e.g. a single AVFrame to hold frames received from a
  56. * decoder). In such a case, av_frame_unref() will free any references held by
  57. * the frame and reset it to its original clean state before it
  58. * is reused again.
  59. *
  60. * The data described by an AVFrame is usually reference counted through the
  61. * AVBuffer API. The underlying buffer references are stored in AVFrame.buf /
  62. * AVFrame.extended_buf. An AVFrame is considered to be reference counted if at
  63. * least one reference is set, i.e. if AVFrame.buf[0] != NULL. In such a case,
  64. * every single data plane must be contained in one of the buffers in
  65. * AVFrame.buf or AVFrame.extended_buf.
  66. * There may be a single buffer for all the data, or one separate buffer for
  67. * each plane, or anything in between.
  68. *
  69. * sizeof(AVFrame) is not a part of the public ABI, so new fields may be added
  70. * to the end with a minor bump.
  71. */
  72. typedef struct AVFrame {
  73. #define AV_NUM_DATA_POINTERS 8
  74. /**
  75. * pointer to the picture/channel planes.
  76. * This might be different from the first allocated byte
  77. */
  78. uint8_t *data[AV_NUM_DATA_POINTERS];
  79. /**
  80. * For video, size in bytes of each picture line.
  81. * For audio, size in bytes of each plane.
  82. *
  83. * For audio, only linesize[0] may be set. For planar audio, each channel
  84. * plane must be the same size.
  85. *
  86. * @note The linesize may be larger than the size of usable data -- there
  87. * may be extra padding present for performance reasons.
  88. */
  89. int linesize[AV_NUM_DATA_POINTERS];
  90. /**
  91. * pointers to the data planes/channels.
  92. *
  93. * For video, this should simply point to data[].
  94. *
  95. * For planar audio, each channel has a separate data pointer, and
  96. * linesize[0] contains the size of each channel buffer.
  97. * For packed audio, there is just one data pointer, and linesize[0]
  98. * contains the total size of the buffer for all channels.
  99. *
  100. * Note: Both data and extended_data should always be set in a valid frame,
  101. * but for planar audio with more channels that can fit in data,
  102. * extended_data must be used in order to access all channels.
  103. */
  104. uint8_t **extended_data;
  105. /**
  106. * width and height of the video frame
  107. */
  108. int width, height;
  109. /**
  110. * number of audio samples (per channel) described by this frame
  111. */
  112. int nb_samples;
  113. /**
  114. * format of the frame, -1 if unknown or unset
  115. * Values correspond to enum AVPixelFormat for video frames,
  116. * enum AVSampleFormat for audio)
  117. */
  118. int format;
  119. /**
  120. * 1 -> keyframe, 0-> not
  121. */
  122. int key_frame;
  123. /**
  124. * Picture type of the frame.
  125. */
  126. enum AVPictureType pict_type;
  127. #if FF_API_AVFRAME_LAVC
  128. attribute_deprecated
  129. uint8_t *base[AV_NUM_DATA_POINTERS];
  130. #endif
  131. /**
  132. * Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
  133. */
  134. AVRational sample_aspect_ratio;
  135. /**
  136. * Presentation timestamp in time_base units (time when frame should be shown to user).
  137. */
  138. int64_t pts;
  139. /**
  140. * PTS copied from the AVPacket that was decoded to produce this frame.
  141. */
  142. int64_t pkt_pts;
  143. /**
  144. * DTS copied from the AVPacket that triggered returning this frame.
  145. */
  146. int64_t pkt_dts;
  147. /**
  148. * picture number in bitstream order
  149. */
  150. int coded_picture_number;
  151. /**
  152. * picture number in display order
  153. */
  154. int display_picture_number;
  155. /**
  156. * quality (between 1 (good) and FF_LAMBDA_MAX (bad))
  157. */
  158. int quality;
  159. #if FF_API_AVFRAME_LAVC
  160. attribute_deprecated
  161. int reference;
  162. /**
  163. * QP table
  164. */
  165. attribute_deprecated
  166. int8_t *qscale_table;
  167. /**
  168. * QP store stride
  169. */
  170. attribute_deprecated
  171. int qstride;
  172. attribute_deprecated
  173. int qscale_type;
  174. /**
  175. * mbskip_table[mb]>=1 if MB didn't change
  176. * stride= mb_width = (width+15)>>4
  177. */
  178. attribute_deprecated
  179. uint8_t *mbskip_table;
  180. /**
  181. * motion vector table
  182. * @code
  183. * example:
  184. * int mv_sample_log2= 4 - motion_subsample_log2;
  185. * int mb_width= (width+15)>>4;
  186. * int mv_stride= (mb_width << mv_sample_log2) + 1;
  187. * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];
  188. * @endcode
  189. */
  190. attribute_deprecated
  191. int16_t (*motion_val[2])[2];
  192. /**
  193. * macroblock type table
  194. * mb_type_base + mb_width + 2
  195. */
  196. attribute_deprecated
  197. uint32_t *mb_type;
  198. /**
  199. * DCT coefficients
  200. */
  201. attribute_deprecated
  202. short *dct_coeff;
  203. /**
  204. * motion reference frame index
  205. * the order in which these are stored can depend on the codec.
  206. */
  207. attribute_deprecated
  208. int8_t *ref_index[2];
  209. #endif
  210. /**
  211. * for some private data of the user
  212. */
  213. void *opaque;
  214. /**
  215. * error
  216. */
  217. uint64_t error[AV_NUM_DATA_POINTERS];
  218. #if FF_API_AVFRAME_LAVC
  219. attribute_deprecated
  220. int type;
  221. #endif
  222. /**
  223. * When decoding, this signals how much the picture must be delayed.
  224. * extra_delay = repeat_pict / (2*fps)
  225. */
  226. int repeat_pict;
  227. /**
  228. * The content of the picture is interlaced.
  229. */
  230. int interlaced_frame;
  231. /**
  232. * If the content is interlaced, is top field displayed first.
  233. */
  234. int top_field_first;
  235. /**
  236. * Tell user application that palette has changed from previous frame.
  237. */
  238. int palette_has_changed;
  239. #if FF_API_AVFRAME_LAVC
  240. attribute_deprecated
  241. int buffer_hints;
  242. /**
  243. * Pan scan.
  244. */
  245. attribute_deprecated
  246. struct AVPanScan *pan_scan;
  247. #endif
  248. /**
  249. * reordered opaque 64bit (generally an integer or a double precision float
  250. * PTS but can be anything).
  251. * The user sets AVCodecContext.reordered_opaque to represent the input at
  252. * that time,
  253. * the decoder reorders values as needed and sets AVFrame.reordered_opaque
  254. * to exactly one of the values provided by the user through AVCodecContext.reordered_opaque
  255. * @deprecated in favor of pkt_pts
  256. */
  257. int64_t reordered_opaque;
  258. #if FF_API_AVFRAME_LAVC
  259. /**
  260. * @deprecated this field is unused
  261. */
  262. attribute_deprecated void *hwaccel_picture_private;
  263. attribute_deprecated
  264. struct AVCodecContext *owner;
  265. attribute_deprecated
  266. void *thread_opaque;
  267. /**
  268. * log2 of the size of the block which a single vector in motion_val represents:
  269. * (4->16x16, 3->8x8, 2-> 4x4, 1-> 2x2)
  270. */
  271. attribute_deprecated
  272. uint8_t motion_subsample_log2;
  273. #endif
  274. /**
  275. * Sample rate of the audio data.
  276. */
  277. int sample_rate;
  278. /**
  279. * Channel layout of the audio data.
  280. */
  281. uint64_t channel_layout;
  282. /**
  283. * AVBuffer references backing the data for this frame. If all elements of
  284. * this array are NULL, then this frame is not reference counted.
  285. *
  286. * There may be at most one AVBuffer per data plane, so for video this array
  287. * always contains all the references. For planar audio with more than
  288. * AV_NUM_DATA_POINTERS channels, there may be more buffers than can fit in
  289. * this array. Then the extra AVBufferRef pointers are stored in the
  290. * extended_buf array.
  291. */
  292. AVBufferRef *buf[AV_NUM_DATA_POINTERS];
  293. /**
  294. * For planar audio which requires more than AV_NUM_DATA_POINTERS
  295. * AVBufferRef pointers, this array will hold all the references which
  296. * cannot fit into AVFrame.buf.
  297. *
  298. * Note that this is different from AVFrame.extended_data, which always
  299. * contains all the pointers. This array only contains the extra pointers,
  300. * which cannot fit into AVFrame.buf.
  301. *
  302. * This array is always allocated using av_malloc() by whoever constructs
  303. * the frame. It is freed in av_frame_unref().
  304. */
  305. AVBufferRef **extended_buf;
  306. /**
  307. * Number of elements in extended_buf.
  308. */
  309. int nb_extended_buf;
  310. AVFrameSideData **side_data;
  311. int nb_side_data;
  312. /**
  313. * The frame data may be corrupted, e.g. due to decoding errors.
  314. */
  315. #define AV_FRAME_FLAG_CORRUPT (1 << 0)
  316. /**
  317. * Frame flags, a combination of AV_FRAME_FLAG_*
  318. */
  319. int flags;
  320. } AVFrame;
  321. /**
  322. * Allocate an AVFrame and set its fields to default values. The resulting
  323. * struct must be freed using av_frame_free().
  324. *
  325. * @return An AVFrame filled with default values or NULL on failure.
  326. *
  327. * @note this only allocates the AVFrame itself, not the data buffers. Those
  328. * must be allocated through other means, e.g. with av_frame_get_buffer() or
  329. * manually.
  330. */
  331. AVFrame *av_frame_alloc(void);
  332. /**
  333. * Free the frame and any dynamically allocated objects in it,
  334. * e.g. extended_data. If the frame is reference counted, it will be
  335. * unreferenced first.
  336. *
  337. * @param frame frame to be freed. The pointer will be set to NULL.
  338. */
  339. void av_frame_free(AVFrame **frame);
  340. /**
  341. * Setup a new reference to the data described by an given frame.
  342. *
  343. * Copy frame properties from src to dst and create a new reference for each
  344. * AVBufferRef from src.
  345. *
  346. * If src is not reference counted, new buffers are allocated and the data is
  347. * copied.
  348. *
  349. * @return 0 on success, a negative AVERROR on error
  350. */
  351. int av_frame_ref(AVFrame *dst, const AVFrame *src);
  352. /**
  353. * Create a new frame that references the same data as src.
  354. *
  355. * This is a shortcut for av_frame_alloc()+av_frame_ref().
  356. *
  357. * @return newly created AVFrame on success, NULL on error.
  358. */
  359. AVFrame *av_frame_clone(const AVFrame *src);
  360. /**
  361. * Unreference all the buffers referenced by frame and reset the frame fields.
  362. */
  363. void av_frame_unref(AVFrame *frame);
  364. /**
  365. * Move everythnig contained in src to dst and reset src.
  366. */
  367. void av_frame_move_ref(AVFrame *dst, AVFrame *src);
  368. /**
  369. * Allocate new buffer(s) for audio or video data.
  370. *
  371. * The following fields must be set on frame before calling this function:
  372. * - format (pixel format for video, sample format for audio)
  373. * - width and height for video
  374. * - nb_samples and channel_layout for audio
  375. *
  376. * This function will fill AVFrame.data and AVFrame.buf arrays and, if
  377. * necessary, allocate and fill AVFrame.extended_data and AVFrame.extended_buf.
  378. * For planar formats, one buffer will be allocated for each plane.
  379. *
  380. * @param frame frame in which to store the new buffers.
  381. * @param align required buffer size alignment
  382. *
  383. * @return 0 on success, a negative AVERROR on error.
  384. */
  385. int av_frame_get_buffer(AVFrame *frame, int align);
  386. /**
  387. * Check if the frame data is writable.
  388. *
  389. * @return A positive value if the frame data is writable (which is true if and
  390. * only if each of the underlying buffers has only one reference, namely the one
  391. * stored in this frame). Return 0 otherwise.
  392. *
  393. * If 1 is returned the answer is valid until av_buffer_ref() is called on any
  394. * of the underlying AVBufferRefs (e.g. through av_frame_ref() or directly).
  395. *
  396. * @see av_frame_make_writable(), av_buffer_is_writable()
  397. */
  398. int av_frame_is_writable(AVFrame *frame);
  399. /**
  400. * Ensure that the frame data is writable, avoiding data copy if possible.
  401. *
  402. * Do nothing if the frame is writable, allocate new buffers and copy the data
  403. * if it is not.
  404. *
  405. * @return 0 on success, a negative AVERROR on error.
  406. *
  407. * @see av_frame_is_writable(), av_buffer_is_writable(),
  408. * av_buffer_make_writable()
  409. */
  410. int av_frame_make_writable(AVFrame *frame);
  411. /**
  412. * Copy only "metadata" fields from src to dst.
  413. *
  414. * Metadata for the purpose of this function are those fields that do not affect
  415. * the data layout in the buffers. E.g. pts, sample rate (for audio) or sample
  416. * aspect ratio (for video), but not width/height or channel layout.
  417. * Side data is also copied.
  418. */
  419. int av_frame_copy_props(AVFrame *dst, const AVFrame *src);
  420. /**
  421. * Get the buffer reference a given data plane is stored in.
  422. *
  423. * @param plane index of the data plane of interest in frame->extended_data.
  424. *
  425. * @return the buffer reference that contains the plane or NULL if the input
  426. * frame is not valid.
  427. */
  428. AVBufferRef *av_frame_get_plane_buffer(AVFrame *frame, int plane);
  429. /**
  430. * Add a new side data to a frame.
  431. *
  432. * @param frame a frame to which the side data should be added
  433. * @param type type of the added side data
  434. * @param size size of the side data
  435. *
  436. * @return newly added side data on success, NULL on error
  437. */
  438. AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
  439. enum AVFrameSideDataType type,
  440. int size);
  441. /**
  442. * @return a pointer to the side data of a given type on success, NULL if there
  443. * is no side data with such type in this frame.
  444. */
  445. AVFrameSideData *av_frame_get_side_data(const AVFrame *frame,
  446. enum AVFrameSideDataType type);
  447. #endif /* AVUTIL_FRAME_H */