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.

606 lines
18KB

  1. /*
  2. *
  3. * This file is part of FFmpeg.
  4. *
  5. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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(). Note 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. * Similarly fields that are marked as to be only accessed by
  66. * av_opt_ptr() can be reordered. This allows 2 forks to add fields
  67. * without breaking compatibility with each other.
  68. */
  69. typedef struct AVFrame {
  70. #define AV_NUM_DATA_POINTERS 8
  71. /**
  72. * pointer to the picture/channel planes.
  73. * This might be different from the first allocated byte
  74. *
  75. * Some decoders access areas outside 0,0 - width,height, please
  76. * see avcodec_align_dimensions2(). Some filters and swscale can read
  77. * up to 16 bytes beyond the planes, if these filters are to be used,
  78. * then 16 extra bytes must be allocated.
  79. */
  80. uint8_t *data[AV_NUM_DATA_POINTERS];
  81. /**
  82. * For video, size in bytes of each picture line.
  83. * For audio, size in bytes of each plane.
  84. *
  85. * For audio, only linesize[0] may be set. For planar audio, each channel
  86. * plane must be the same size.
  87. *
  88. * For video the linesizes should be multiplies of the CPUs alignment
  89. * preference, this is 16 or 32 for modern desktop CPUs.
  90. * Some code requires such alignment other code can be slower without
  91. * correct alignment, for yet other it makes no difference.
  92. */
  93. int linesize[AV_NUM_DATA_POINTERS];
  94. /**
  95. * pointers to the data planes/channels.
  96. *
  97. * For video, this should simply point to data[].
  98. *
  99. * For planar audio, each channel has a separate data pointer, and
  100. * linesize[0] contains the size of each channel buffer.
  101. * For packed audio, there is just one data pointer, and linesize[0]
  102. * contains the total size of the buffer for all channels.
  103. *
  104. * Note: Both data and extended_data should always be set in a valid frame,
  105. * but for planar audio with more channels that can fit in data,
  106. * extended_data must be used in order to access all channels.
  107. */
  108. uint8_t **extended_data;
  109. /**
  110. * width and height of the video frame
  111. */
  112. int width, height;
  113. /**
  114. * number of audio samples (per channel) described by this frame
  115. */
  116. int nb_samples;
  117. /**
  118. * format of the frame, -1 if unknown or unset
  119. * Values correspond to enum AVPixelFormat for video frames,
  120. * enum AVSampleFormat for audio)
  121. */
  122. int format;
  123. /**
  124. * 1 -> keyframe, 0-> not
  125. */
  126. int key_frame;
  127. /**
  128. * Picture type of the frame.
  129. */
  130. enum AVPictureType pict_type;
  131. #if FF_API_AVFRAME_LAVC
  132. attribute_deprecated
  133. uint8_t *base[AV_NUM_DATA_POINTERS];
  134. #endif
  135. /**
  136. * Sample aspect ratio for the video frame, 0/1 if unknown/unspecified.
  137. */
  138. AVRational sample_aspect_ratio;
  139. /**
  140. * Presentation timestamp in time_base units (time when frame should be shown to user).
  141. */
  142. int64_t pts;
  143. /**
  144. * PTS copied from the AVPacket that was decoded to produce this frame.
  145. */
  146. int64_t pkt_pts;
  147. /**
  148. * DTS copied from the AVPacket that triggered returning this frame.
  149. */
  150. int64_t pkt_dts;
  151. /**
  152. * picture number in bitstream order
  153. */
  154. int coded_picture_number;
  155. /**
  156. * picture number in display order
  157. */
  158. int display_picture_number;
  159. /**
  160. * quality (between 1 (good) and FF_LAMBDA_MAX (bad))
  161. */
  162. int quality;
  163. #if FF_API_AVFRAME_LAVC
  164. attribute_deprecated
  165. int reference;
  166. /**
  167. * QP table
  168. */
  169. attribute_deprecated
  170. int8_t *qscale_table;
  171. /**
  172. * QP store stride
  173. */
  174. attribute_deprecated
  175. int qstride;
  176. attribute_deprecated
  177. int qscale_type;
  178. /**
  179. * mbskip_table[mb]>=1 if MB didn't change
  180. * stride= mb_width = (width+15)>>4
  181. */
  182. attribute_deprecated
  183. uint8_t *mbskip_table;
  184. /**
  185. * motion vector table
  186. * @code
  187. * example:
  188. * int mv_sample_log2= 4 - motion_subsample_log2;
  189. * int mb_width= (width+15)>>4;
  190. * int mv_stride= (mb_width << mv_sample_log2) + 1;
  191. * motion_val[direction][x + y*mv_stride][0->mv_x, 1->mv_y];
  192. * @endcode
  193. */
  194. attribute_deprecated
  195. int16_t (*motion_val[2])[2];
  196. /**
  197. * macroblock type table
  198. * mb_type_base + mb_width + 2
  199. */
  200. attribute_deprecated
  201. uint32_t *mb_type;
  202. /**
  203. * DCT coefficients
  204. */
  205. attribute_deprecated
  206. short *dct_coeff;
  207. /**
  208. * motion reference frame index
  209. * the order in which these are stored can depend on the codec.
  210. */
  211. attribute_deprecated
  212. int8_t *ref_index[2];
  213. #endif
  214. /**
  215. * for some private data of the user
  216. */
  217. void *opaque;
  218. /**
  219. * error
  220. */
  221. uint64_t error[AV_NUM_DATA_POINTERS];
  222. #if FF_API_AVFRAME_LAVC
  223. attribute_deprecated
  224. int type;
  225. #endif
  226. /**
  227. * When decoding, this signals how much the picture must be delayed.
  228. * extra_delay = repeat_pict / (2*fps)
  229. */
  230. int repeat_pict;
  231. /**
  232. * The content of the picture is interlaced.
  233. */
  234. int interlaced_frame;
  235. /**
  236. * If the content is interlaced, is top field displayed first.
  237. */
  238. int top_field_first;
  239. /**
  240. * Tell user application that palette has changed from previous frame.
  241. */
  242. int palette_has_changed;
  243. #if FF_API_AVFRAME_LAVC
  244. attribute_deprecated
  245. int buffer_hints;
  246. /**
  247. * Pan scan.
  248. */
  249. attribute_deprecated
  250. struct AVPanScan *pan_scan;
  251. #endif
  252. /**
  253. * reordered opaque 64bit (generally an integer or a double precision float
  254. * PTS but can be anything).
  255. * The user sets AVCodecContext.reordered_opaque to represent the input at
  256. * that time,
  257. * the decoder reorders values as needed and sets AVFrame.reordered_opaque
  258. * to exactly one of the values provided by the user through AVCodecContext.reordered_opaque
  259. * @deprecated in favor of pkt_pts
  260. */
  261. int64_t reordered_opaque;
  262. #if FF_API_AVFRAME_LAVC
  263. /**
  264. * @deprecated this field is unused
  265. */
  266. attribute_deprecated void *hwaccel_picture_private;
  267. attribute_deprecated
  268. struct AVCodecContext *owner;
  269. attribute_deprecated
  270. void *thread_opaque;
  271. /**
  272. * log2 of the size of the block which a single vector in motion_val represents:
  273. * (4->16x16, 3->8x8, 2-> 4x4, 1-> 2x2)
  274. */
  275. attribute_deprecated
  276. uint8_t motion_subsample_log2;
  277. #endif
  278. /**
  279. * Sample rate of the audio data.
  280. */
  281. int sample_rate;
  282. /**
  283. * Channel layout of the audio data.
  284. */
  285. uint64_t channel_layout;
  286. /**
  287. * AVBuffer references backing the data for this frame. If all elements of
  288. * this array are NULL, then this frame is not reference counted.
  289. *
  290. * There may be at most one AVBuffer per data plane, so for video this array
  291. * always contains all the references. For planar audio with more than
  292. * AV_NUM_DATA_POINTERS channels, there may be more buffers than can fit in
  293. * this array. Then the extra AVBufferRef pointers are stored in the
  294. * extended_buf array.
  295. */
  296. AVBufferRef *buf[AV_NUM_DATA_POINTERS];
  297. /**
  298. * For planar audio which requires more than AV_NUM_DATA_POINTERS
  299. * AVBufferRef pointers, this array will hold all the references which
  300. * cannot fit into AVFrame.buf.
  301. *
  302. * Note that this is different from AVFrame.extended_data, which always
  303. * contains all the pointers. This array only contains the extra pointers,
  304. * which cannot fit into AVFrame.buf.
  305. *
  306. * This array is always allocated using av_malloc() by whoever constructs
  307. * the frame. It is freed in av_frame_unref().
  308. */
  309. AVBufferRef **extended_buf;
  310. /**
  311. * Number of elements in extended_buf.
  312. */
  313. int nb_extended_buf;
  314. AVFrameSideData **side_data;
  315. int nb_side_data;
  316. /**
  317. * frame timestamp estimated using various heuristics, in stream time base
  318. * Code outside libavcodec should access this field using:
  319. * av_frame_get_best_effort_timestamp(frame)
  320. * - encoding: unused
  321. * - decoding: set by libavcodec, read by user.
  322. */
  323. int64_t best_effort_timestamp;
  324. /**
  325. * reordered pos from the last AVPacket that has been input into the decoder
  326. * Code outside libavcodec should access this field using:
  327. * av_frame_get_pkt_pos(frame)
  328. * - encoding: unused
  329. * - decoding: Read by user.
  330. */
  331. int64_t pkt_pos;
  332. /**
  333. * duration of the corresponding packet, expressed in
  334. * AVStream->time_base units, 0 if unknown.
  335. * Code outside libavcodec should access this field using:
  336. * av_frame_get_pkt_duration(frame)
  337. * - encoding: unused
  338. * - decoding: Read by user.
  339. */
  340. int64_t pkt_duration;
  341. /**
  342. * metadata.
  343. * Code outside libavcodec should access this field using:
  344. * av_frame_get_metadata(frame)
  345. * - encoding: Set by user.
  346. * - decoding: Set by libavcodec.
  347. */
  348. AVDictionary *metadata;
  349. /**
  350. * decode error flags of the frame, set to a combination of
  351. * FF_DECODE_ERROR_xxx flags if the decoder produced a frame, but there
  352. * were errors during the decoding.
  353. * Code outside libavcodec should access this field using:
  354. * av_frame_get_decode_error_flags(frame)
  355. * - encoding: unused
  356. * - decoding: set by libavcodec, read by user.
  357. */
  358. int decode_error_flags;
  359. #define FF_DECODE_ERROR_INVALID_BITSTREAM 1
  360. #define FF_DECODE_ERROR_MISSING_REFERENCE 2
  361. /**
  362. * number of audio channels, only used for audio.
  363. * Code outside libavcodec should access this field using:
  364. * av_frame_get_channels(frame)
  365. * - encoding: unused
  366. * - decoding: Read by user.
  367. */
  368. int channels;
  369. /**
  370. * size of the corresponding packet containing the compressed
  371. * frame. It must be accessed using av_frame_get_pkt_size() and
  372. * av_frame_set_pkt_size().
  373. * It is set to a negative value if unknown.
  374. * - encoding: unused
  375. * - decoding: set by libavcodec, read by user.
  376. */
  377. int pkt_size;
  378. /**
  379. * Not to be accessed directly from outside libavutil
  380. */
  381. AVBufferRef *qp_table_buf;
  382. } AVFrame;
  383. /**
  384. * Accessors for some AVFrame fields.
  385. * The position of these field in the structure is not part of the ABI,
  386. * they should not be accessed directly outside libavcodec.
  387. */
  388. int64_t av_frame_get_best_effort_timestamp(const AVFrame *frame);
  389. void av_frame_set_best_effort_timestamp(AVFrame *frame, int64_t val);
  390. int64_t av_frame_get_pkt_duration (const AVFrame *frame);
  391. void av_frame_set_pkt_duration (AVFrame *frame, int64_t val);
  392. int64_t av_frame_get_pkt_pos (const AVFrame *frame);
  393. void av_frame_set_pkt_pos (AVFrame *frame, int64_t val);
  394. int64_t av_frame_get_channel_layout (const AVFrame *frame);
  395. void av_frame_set_channel_layout (AVFrame *frame, int64_t val);
  396. int av_frame_get_channels (const AVFrame *frame);
  397. void av_frame_set_channels (AVFrame *frame, int val);
  398. int av_frame_get_sample_rate (const AVFrame *frame);
  399. void av_frame_set_sample_rate (AVFrame *frame, int val);
  400. AVDictionary *av_frame_get_metadata (const AVFrame *frame);
  401. void av_frame_set_metadata (AVFrame *frame, AVDictionary *val);
  402. int av_frame_get_decode_error_flags (const AVFrame *frame);
  403. void av_frame_set_decode_error_flags (AVFrame *frame, int val);
  404. int av_frame_get_pkt_size(const AVFrame *frame);
  405. void av_frame_set_pkt_size(AVFrame *frame, int val);
  406. AVDictionary **avpriv_frame_get_metadatap(AVFrame *frame);
  407. int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type);
  408. int av_frame_set_qp_table(AVFrame *f, AVBufferRef *buf, int stride, int type);
  409. /**
  410. * Allocate an AVFrame and set its fields to default values. The resulting
  411. * struct must be freed using av_frame_free().
  412. *
  413. * @return An AVFrame filled with default values or NULL on failure.
  414. *
  415. * @note this only allocates the AVFrame itself, not the data buffers. Those
  416. * must be allocated through other means, e.g. with av_frame_get_buffer() or
  417. * manually.
  418. */
  419. AVFrame *av_frame_alloc(void);
  420. /**
  421. * Free the frame and any dynamically allocated objects in it,
  422. * e.g. extended_data. If the frame is reference counted, it will be
  423. * unreferenced first.
  424. *
  425. * @param frame frame to be freed. The pointer will be set to NULL.
  426. */
  427. void av_frame_free(AVFrame **frame);
  428. /**
  429. * Setup a new reference to the data described by an given frame.
  430. *
  431. * Copy frame properties from src to dst and create a new reference for each
  432. * AVBufferRef from src.
  433. *
  434. * If src is not reference counted, new buffers are allocated and the data is
  435. * copied.
  436. *
  437. * @return 0 on success, a negative AVERROR on error
  438. */
  439. int av_frame_ref(AVFrame *dst, AVFrame *src);
  440. /**
  441. * Create a new frame that references the same data as src.
  442. *
  443. * This is a shortcut for av_frame_alloc()+av_frame_ref().
  444. *
  445. * @return newly created AVFrame on success, NULL on error.
  446. */
  447. AVFrame *av_frame_clone(AVFrame *src);
  448. /**
  449. * Unreference all the buffers referenced by frame and reset the frame fields.
  450. */
  451. void av_frame_unref(AVFrame *frame);
  452. /**
  453. * Move everythnig contained in src to dst and reset src.
  454. */
  455. void av_frame_move_ref(AVFrame *dst, AVFrame *src);
  456. /**
  457. * Allocate new buffer(s) for audio or video data.
  458. *
  459. * The following fields must be set on frame before calling this function:
  460. * - format (pixel format for video, sample format for audio)
  461. * - width and height for video
  462. * - nb_samples and channel_layout for audio
  463. *
  464. * This function will fill AVFrame.data and AVFrame.buf arrays and, if
  465. * necessary, allocate and fill AVFrame.extended_data and AVFrame.extended_buf.
  466. * For planar formats, one buffer will be allocated for each plane.
  467. *
  468. * @param frame frame in which to store the new buffers.
  469. * @param align required buffer size alignment
  470. *
  471. * @return 0 on success, a negative AVERROR on error.
  472. */
  473. int av_frame_get_buffer(AVFrame *frame, int align);
  474. /**
  475. * Check if the frame data is writable.
  476. *
  477. * @return A positive value if the frame data is writable (which is true if and
  478. * only if each of the underlying buffers has only one reference, namely the one
  479. * stored in this frame). Return 0 otherwise.
  480. *
  481. * If 1 is returned the answer is valid until av_buffer_ref() is called on any
  482. * of the underlying AVBufferRefs (e.g. through av_frame_ref() or directly).
  483. *
  484. * @see av_frame_make_writable(), av_buffer_is_writable()
  485. */
  486. int av_frame_is_writable(AVFrame *frame);
  487. /**
  488. * Ensure that the frame data is writable, avoiding data copy if possible.
  489. *
  490. * Do nothing if the frame is writable, allocate new buffers and copy the data
  491. * if it is not.
  492. *
  493. * @return 0 on success, a negative AVERROR on error.
  494. *
  495. * @see av_frame_is_writable(), av_buffer_is_writable(),
  496. * av_buffer_make_writable()
  497. */
  498. int av_frame_make_writable(AVFrame *frame);
  499. /**
  500. * Copy only "metadata" fields from src to dst.
  501. *
  502. * Metadata for the purpose of this function are those fields that do not affect
  503. * the data layout in the buffers. E.g. pts, sample rate (for audio) or sample
  504. * aspect ratio (for video), but not width/height or channel layout.
  505. * Side data is also copied.
  506. */
  507. int av_frame_copy_props(AVFrame *dst, const AVFrame *src);
  508. /**
  509. * Get the buffer reference a given data plane is stored in.
  510. *
  511. * @param plane index of the data plane of interest in frame->extended_data.
  512. *
  513. * @return the buffer reference that contains the plane or NULL if the input
  514. * frame is not valid.
  515. */
  516. AVBufferRef *av_frame_get_plane_buffer(AVFrame *frame, int plane);
  517. /**
  518. * Add a new side data to a frame.
  519. *
  520. * @param frame a frame to which the side data should be added
  521. * @param type type of the added side data
  522. * @param size size of the side data
  523. *
  524. * @return newly added side data on success, NULL on error
  525. */
  526. AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
  527. enum AVFrameSideDataType type,
  528. int size);
  529. /**
  530. * @return a pointer to the side data of a given type on success, NULL if there
  531. * is no side data with such type in this frame.
  532. */
  533. AVFrameSideData *av_frame_get_side_data(AVFrame *frame,
  534. enum AVFrameSideDataType type);
  535. #endif /* AVUTIL_FRAME_H */