Browse Source

vaapi_h264: Convert to use coded bitstream infrastructure

tags/n4.0
Mark Thompson 8 years ago
parent
commit
7a4fac5e91
3 changed files with 549 additions and 876 deletions
  1. +1
    -1
      configure
  2. +1
    -1
      libavcodec/Makefile
  3. +547
    -874
      libavcodec/vaapi_encode_h264.c

+ 1
- 1
configure View File

@@ -2285,7 +2285,7 @@ h264_omx_encoder_deps="omx"
h264_qsv_decoder_select="h264_mp4toannexb_bsf h264_parser qsvdec h264_qsv_hwaccel"
h264_qsv_encoder_select="qsvenc"
h264_vaapi_encoder_deps="VAEncPictureParameterBufferH264"
h264_vaapi_encoder_select="vaapi_encode golomb"
h264_vaapi_encoder_select="cbs_h264 vaapi_encode"
hevc_nvenc_encoder_deps="nvenc"
hevc_qsv_decoder_select="hevc_mp4toannexb_bsf hevc_parser hevc_qsv_hwaccel qsvdec"
hevc_qsv_encoder_select="hevc_ps qsvenc"


+ 1
- 1
libavcodec/Makefile View File

@@ -275,7 +275,7 @@ OBJS-$(CONFIG_H264_NVENC_ENCODER) += nvenc_h264.o
OBJS-$(CONFIG_H264_OMX_ENCODER) += omx.o
OBJS-$(CONFIG_H264_QSV_DECODER) += qsvdec_h2645.o
OBJS-$(CONFIG_H264_QSV_ENCODER) += qsvenc_h264.o
OBJS-$(CONFIG_H264_VAAPI_ENCODER) += vaapi_encode_h264.o vaapi_encode_h26x.o
OBJS-$(CONFIG_H264_VAAPI_ENCODER) += vaapi_encode_h264.o
OBJS-$(CONFIG_HAP_DECODER) += hapdec.o hap.o
OBJS-$(CONFIG_HAP_ENCODER) += hapenc.o hap.o
OBJS-$(CONFIG_HEVC_DECODER) += hevcdec.o hevc_mvs.o hevc_sei.o \


+ 547
- 874
libavcodec/vaapi_encode_h264.c
File diff suppressed because it is too large
View File


Loading…
Cancel
Save