@@ -476,4 +476,14 @@ int ff_vaapi_encode_close(AVCodecContext *avctx);
VAAPI_ENCODE_RC_MODE(AVBR, "Average variable-bitrate")
+// SEI types used in options for both H.264 and H.265.
+enum {
+ SEI_TIMING = 0x01,
+ SEI_IDENTIFIER = 0x02,
+ SEI_RECOVERY_POINT = 0x04,
+ SEI_MASTERING_DISPLAY = 0x08,
+ SEI_CONTENT_LIGHT_LEVEL = 0x10,
+};
+
+
#endif /* AVCODEC_VAAPI_ENCODE_H */
@@ -35,12 +35,6 @@
#include "internal.h"
#include "vaapi_encode.h"
-enum {
- SEI_TIMING = 0x01,
- SEI_IDENTIFIER = 0x02,
- SEI_RECOVERY_POINT = 0x04,
-};
-
// Random (version 4) ISO 11578 UUID.
static const uint8_t vaapi_encode_h264_sei_identifier_uuid[16] = {
0x59, 0x94, 0x8b, 0x28, 0x11, 0xec, 0x45, 0xaf,
@@ -37,11 +37,6 @@
#include "put_bits.h"
#include "vaapi_encode.h"
-enum {
- SEI_MASTERING_DISPLAY = 0x08,
- SEI_CONTENT_LIGHT_LEVEL = 0x10,
-};
-
typedef struct VAAPIEncodeH265Picture {
int pic_order_cnt;