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.

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