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.

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