vp9_lookahead.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (c) 2011 The WebM project authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by a BSD-style license
  5. * that can be found in the LICENSE file in the root of the source
  6. * tree. An additional intellectual property rights grant can be found
  7. * in the file PATENTS. All contributing project authors may
  8. * be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef VPX_VP9_ENCODER_VP9_LOOKAHEAD_H_
  11. #define VPX_VP9_ENCODER_VP9_LOOKAHEAD_H_
  12. #include "vpx_scale/yv12config.h"
  13. #include "vpx/vpx_encoder.h"
  14. #include "vpx/vpx_integer.h"
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #define MAX_LAG_BUFFERS 25
  19. struct lookahead_entry {
  20. YV12_BUFFER_CONFIG img;
  21. int64_t ts_start;
  22. int64_t ts_end;
  23. vpx_enc_frame_flags_t flags;
  24. };
  25. // The max of past frames we want to keep in the queue.
  26. #define MAX_PRE_FRAMES 1
  27. struct lookahead_ctx {
  28. int max_sz; /* Absolute size of the queue */
  29. int sz; /* Number of buffers currently in the queue */
  30. int read_idx; /* Read index */
  31. int write_idx; /* Write index */
  32. struct lookahead_entry *buf; /* Buffer list */
  33. };
  34. /**\brief Initializes the lookahead stage
  35. *
  36. * The lookahead stage is a queue of frame buffers on which some analysis
  37. * may be done when buffers are enqueued.
  38. */
  39. struct lookahead_ctx *vp9_lookahead_init(unsigned int width,
  40. unsigned int height,
  41. unsigned int subsampling_x,
  42. unsigned int subsampling_y,
  43. #if CONFIG_VP9_HIGHBITDEPTH
  44. int use_highbitdepth,
  45. #endif
  46. unsigned int depth);
  47. /**\brief Destroys the lookahead stage
  48. */
  49. void vp9_lookahead_destroy(struct lookahead_ctx *ctx);
  50. /**\brief Enqueue a source buffer
  51. *
  52. * This function will copy the source image into a new framebuffer with
  53. * the expected stride/border.
  54. *
  55. * If active_map is non-NULL and there is only one frame in the queue, then copy
  56. * only active macroblocks.
  57. *
  58. * \param[in] ctx Pointer to the lookahead context
  59. * \param[in] src Pointer to the image to enqueue
  60. * \param[in] ts_start Timestamp for the start of this frame
  61. * \param[in] ts_end Timestamp for the end of this frame
  62. * \param[in] flags Flags set on this frame
  63. * \param[in] active_map Map that specifies which macroblock is active
  64. */
  65. int vp9_lookahead_push(struct lookahead_ctx *ctx, YV12_BUFFER_CONFIG *src,
  66. int64_t ts_start, int64_t ts_end,
  67. #if CONFIG_VP9_HIGHBITDEPTH
  68. int use_highbitdepth,
  69. #endif
  70. vpx_enc_frame_flags_t flags);
  71. /**\brief Get the next source buffer to encode
  72. *
  73. *
  74. * \param[in] ctx Pointer to the lookahead context
  75. * \param[in] drain Flag indicating the buffer should be drained
  76. * (return a buffer regardless of the current queue depth)
  77. *
  78. * \retval NULL, if drain set and queue is empty
  79. * \retval NULL, if drain not set and queue not of the configured depth
  80. */
  81. struct lookahead_entry *vp9_lookahead_pop(struct lookahead_ctx *ctx, int drain);
  82. /**\brief Get a future source buffer to encode
  83. *
  84. * \param[in] ctx Pointer to the lookahead context
  85. * \param[in] index Index of the frame to be returned, 0 == next frame
  86. *
  87. * \retval NULL, if no buffer exists at the specified index
  88. */
  89. struct lookahead_entry *vp9_lookahead_peek(struct lookahead_ctx *ctx,
  90. int index);
  91. /**\brief Get the number of frames currently in the lookahead queue
  92. *
  93. * \param[in] ctx Pointer to the lookahead context
  94. */
  95. unsigned int vp9_lookahead_depth(struct lookahead_ctx *ctx);
  96. #ifdef __cplusplus
  97. } // extern "C"
  98. #endif
  99. #endif // VPX_VP9_ENCODER_VP9_LOOKAHEAD_H_