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.

589 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. uint8_t *data[AV_NUM_DATA_POINTERS];
  76. /**
  77. * For video, size in bytes of each picture line.
  78. * For audio, size in bytes of each plane.
  79. *
  80. * For audio, only linesize[0] may be set. For planar audio, each channel
  81. * plane must be the same size.
  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. /**
  307. * frame timestamp estimated using various heuristics, in stream time base
  308. * Code outside libavcodec should access this field using:
  309. * av_frame_get_best_effort_timestamp(frame)
  310. * - encoding: unused
  311. * - decoding: set by libavcodec, read by user.
  312. */
  313. int64_t best_effort_timestamp;
  314. /**
  315. * reordered pos from the last AVPacket that has been input into the decoder
  316. * Code outside libavcodec should access this field using:
  317. * av_frame_get_pkt_pos(frame)
  318. * - encoding: unused
  319. * - decoding: Read by user.
  320. */
  321. int64_t pkt_pos;
  322. /**
  323. * duration of the corresponding packet, expressed in
  324. * AVStream->time_base units, 0 if unknown.
  325. * Code outside libavcodec should access this field using:
  326. * av_frame_get_pkt_duration(frame)
  327. * - encoding: unused
  328. * - decoding: Read by user.
  329. */
  330. int64_t pkt_duration;
  331. /**
  332. * metadata.
  333. * Code outside libavcodec should access this field using:
  334. * av_frame_get_metadata(frame)
  335. * - encoding: Set by user.
  336. * - decoding: Set by libavcodec.
  337. */
  338. AVDictionary *metadata;
  339. /**
  340. * decode error flags of the frame, set to a combination of
  341. * FF_DECODE_ERROR_xxx flags if the decoder produced a frame, but there
  342. * were errors during the decoding.
  343. * Code outside libavcodec should access this field using:
  344. * av_frame_get_decode_error_flags(frame)
  345. * - encoding: unused
  346. * - decoding: set by libavcodec, read by user.
  347. */
  348. int decode_error_flags;
  349. #define FF_DECODE_ERROR_INVALID_BITSTREAM 1
  350. #define FF_DECODE_ERROR_MISSING_REFERENCE 2
  351. /**
  352. * number of audio channels, only used for audio.
  353. * Code outside libavcodec should access this field using:
  354. * av_frame_get_channels(frame)
  355. * - encoding: unused
  356. * - decoding: Read by user.
  357. */
  358. int channels;
  359. /**
  360. * size of the corresponding packet containing the compressed
  361. * frame. It must be accessed using av_frame_get_pkt_size() and
  362. * av_frame_set_pkt_size().
  363. * It is set to a negative value if unknown.
  364. * - encoding: unused
  365. * - decoding: set by libavcodec, read by user.
  366. */
  367. int pkt_size;
  368. } AVFrame;
  369. /**
  370. * Accessors for some AVFrame fields.
  371. * The position of these field in the structure is not part of the ABI,
  372. * they should not be accessed directly outside libavcodec.
  373. */
  374. int64_t av_frame_get_best_effort_timestamp(const AVFrame *frame);
  375. void av_frame_set_best_effort_timestamp(AVFrame *frame, int64_t val);
  376. int64_t av_frame_get_pkt_duration (const AVFrame *frame);
  377. void av_frame_set_pkt_duration (AVFrame *frame, int64_t val);
  378. int64_t av_frame_get_pkt_pos (const AVFrame *frame);
  379. void av_frame_set_pkt_pos (AVFrame *frame, int64_t val);
  380. int64_t av_frame_get_channel_layout (const AVFrame *frame);
  381. void av_frame_set_channel_layout (AVFrame *frame, int64_t val);
  382. int av_frame_get_channels (const AVFrame *frame);
  383. void av_frame_set_channels (AVFrame *frame, int val);
  384. int av_frame_get_sample_rate (const AVFrame *frame);
  385. void av_frame_set_sample_rate (AVFrame *frame, int val);
  386. AVDictionary *av_frame_get_metadata (const AVFrame *frame);
  387. void av_frame_set_metadata (AVFrame *frame, AVDictionary *val);
  388. int av_frame_get_decode_error_flags (const AVFrame *frame);
  389. void av_frame_set_decode_error_flags (AVFrame *frame, int val);
  390. int av_frame_get_pkt_size(const AVFrame *frame);
  391. void av_frame_set_pkt_size(AVFrame *frame, int val);
  392. AVDictionary **avpriv_frame_get_metadatap(AVFrame *frame);
  393. /**
  394. * Allocate an AVFrame and set its fields to default values. The resulting
  395. * struct must be freed using av_frame_free().
  396. *
  397. * @return An AVFrame filled with default values or NULL on failure.
  398. *
  399. * @note this only allocates the AVFrame itself, not the data buffers. Those
  400. * must be allocated through other means, e.g. with av_frame_get_buffer() or
  401. * manually.
  402. */
  403. AVFrame *av_frame_alloc(void);
  404. /**
  405. * Free the frame and any dynamically allocated objects in it,
  406. * e.g. extended_data. If the frame is reference counted, it will be
  407. * unreferenced first.
  408. *
  409. * @param frame frame to be freed. The pointer will be set to NULL.
  410. */
  411. void av_frame_free(AVFrame **frame);
  412. /**
  413. * Setup a new reference to the data described by an given frame.
  414. *
  415. * Copy frame properties from src to dst and create a new reference for each
  416. * AVBufferRef from src.
  417. *
  418. * If src is not reference counted, new buffers are allocated and the data is
  419. * copied.
  420. *
  421. * @return 0 on success, a negative AVERROR on error
  422. */
  423. int av_frame_ref(AVFrame *dst, AVFrame *src);
  424. /**
  425. * Create a new frame that references the same data as src.
  426. *
  427. * This is a shortcut for av_frame_alloc()+av_frame_ref().
  428. *
  429. * @return newly created AVFrame on success, NULL on error.
  430. */
  431. AVFrame *av_frame_clone(AVFrame *src);
  432. /**
  433. * Unreference all the buffers referenced by frame and reset the frame fields.
  434. */
  435. void av_frame_unref(AVFrame *frame);
  436. /**
  437. * Move everythnig contained in src to dst and reset src.
  438. */
  439. void av_frame_move_ref(AVFrame *dst, AVFrame *src);
  440. /**
  441. * Allocate new buffer(s) for audio or video data.
  442. *
  443. * The following fields must be set on frame before calling this function:
  444. * - format (pixel format for video, sample format for audio)
  445. * - width and height for video
  446. * - nb_samples and channel_layout for audio
  447. *
  448. * This function will fill AVFrame.data and AVFrame.buf arrays and, if
  449. * necessary, allocate and fill AVFrame.extended_data and AVFrame.extended_buf.
  450. * For planar formats, one buffer will be allocated for each plane.
  451. *
  452. * @param frame frame in which to store the new buffers.
  453. * @param align required buffer size alignment
  454. *
  455. * @return 0 on success, a negative AVERROR on error.
  456. */
  457. int av_frame_get_buffer(AVFrame *frame, int align);
  458. /**
  459. * Check if the frame data is writable.
  460. *
  461. * @return A positive value if the frame data is writable (which is true if and
  462. * only if each of the underlying buffers has only one reference, namely the one
  463. * stored in this frame). Return 0 otherwise.
  464. *
  465. * If 1 is returned the answer is valid until av_buffer_ref() is called on any
  466. * of the underlying AVBufferRefs (e.g. through av_frame_ref() or directly).
  467. *
  468. * @see av_frame_make_writable(), av_buffer_is_writable()
  469. */
  470. int av_frame_is_writable(AVFrame *frame);
  471. /**
  472. * Ensure that the frame data is writable, avoiding data copy if possible.
  473. *
  474. * Do nothing if the frame is writable, allocate new buffers and copy the data
  475. * if it is not.
  476. *
  477. * @return 0 on success, a negative AVERROR on error.
  478. *
  479. * @see av_frame_is_writable(), av_buffer_is_writable(),
  480. * av_buffer_make_writable()
  481. */
  482. int av_frame_make_writable(AVFrame *frame);
  483. /**
  484. * Copy only "metadata" fields from src to dst.
  485. *
  486. * Metadata for the purpose of this function are those fields that do not affect
  487. * the data layout in the buffers. E.g. pts, sample rate (for audio) or sample
  488. * aspect ratio (for video), but not width/height or channel layout.
  489. * Side data is also copied.
  490. */
  491. int av_frame_copy_props(AVFrame *dst, const AVFrame *src);
  492. /**
  493. * Get the buffer reference a given data plane is stored in.
  494. *
  495. * @param plane index of the data plane of interest in frame->extended_data.
  496. *
  497. * @return the buffer reference that contains the plane or NULL if the input
  498. * frame is not valid.
  499. */
  500. AVBufferRef *av_frame_get_plane_buffer(AVFrame *frame, int plane);
  501. /**
  502. * Add a new side data to a frame.
  503. *
  504. * @param frame a frame to which the side data should be added
  505. * @param type type of the added side data
  506. * @param size size of the side data
  507. *
  508. * @return newly added side data on success, NULL on error
  509. */
  510. AVFrameSideData *av_frame_new_side_data(AVFrame *frame,
  511. enum AVFrameSideDataType type,
  512. int size);
  513. /**
  514. * @return a pointer to the side data of a given type on success, NULL if there
  515. * is no side data with such type in this frame.
  516. */
  517. AVFrameSideData *av_frame_get_side_data(AVFrame *frame,
  518. enum AVFrameSideDataType type);
  519. #endif /* AVUTIL_FRAME_H */