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.

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