mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 18:10:56 +01:00
fixup! lavc/rkmppdec: refactor RKMPP decoders and extend codecs
Add `dump_extra` bsf to h264/hevc_rkmpp decoder since in rtsp, sequence header is passed through sdp and video stream may not have sequence header. Signed-off-by: nyanmisaka <nst799610810@gmail.com>
This commit is contained in:
parent
ba84e56c51
commit
6f88a29491
2 changed files with 4 additions and 4 deletions
4
configure
vendored
4
configure
vendored
|
|
@ -3236,7 +3236,7 @@ h264_omx_encoder_deps="omx"
|
|||
h264_qsv_decoder_select="h264_mp4toannexb_bsf qsvdec"
|
||||
h264_qsv_encoder_select="atsc_a53 qsvenc"
|
||||
h264_rkmpp_decoder_deps="rkmpp"
|
||||
h264_rkmpp_decoder_select="h264_mp4toannexb_bsf"
|
||||
h264_rkmpp_decoder_select="h264_mp4toannexb_bsf dump_extradata_bsf"
|
||||
h264_rkmpp_encoder_deps="rkmpp"
|
||||
h264_vaapi_encoder_select="atsc_a53 cbs_h264 vaapi_encode"
|
||||
h264_v4l2m2m_decoder_deps="v4l2_m2m h264_v4l2_m2m"
|
||||
|
|
@ -3255,7 +3255,7 @@ hevc_nvenc_encoder_select="atsc_a53"
|
|||
hevc_qsv_decoder_select="hevc_mp4toannexb_bsf qsvdec"
|
||||
hevc_qsv_encoder_select="hevcparse qsvenc"
|
||||
hevc_rkmpp_decoder_deps="rkmpp"
|
||||
hevc_rkmpp_decoder_select="hevc_mp4toannexb_bsf"
|
||||
hevc_rkmpp_decoder_select="hevc_mp4toannexb_bsf dump_extradata_bsf"
|
||||
hevc_rkmpp_encoder_deps="rkmpp"
|
||||
hevc_vaapi_encoder_deps="VAEncPictureParameterBufferHEVC"
|
||||
hevc_vaapi_encoder_select="atsc_a53 cbs_h265 vaapi_encode"
|
||||
|
|
|
|||
|
|
@ -940,10 +940,10 @@ static void rkmpp_decode_flush(AVCodecContext *avctx)
|
|||
DEFINE_RKMPP_DECODER(h263, H263, NULL)
|
||||
#endif
|
||||
#if CONFIG_H264_RKMPP_DECODER
|
||||
DEFINE_RKMPP_DECODER(h264, H264, "h264_mp4toannexb")
|
||||
DEFINE_RKMPP_DECODER(h264, H264, "h264_mp4toannexb,dump_extra")
|
||||
#endif
|
||||
#if CONFIG_HEVC_RKMPP_DECODER
|
||||
DEFINE_RKMPP_DECODER(hevc, HEVC, "hevc_mp4toannexb")
|
||||
DEFINE_RKMPP_DECODER(hevc, HEVC, "hevc_mp4toannexb,dump_extra")
|
||||
#endif
|
||||
#if CONFIG_VP8_RKMPP_DECODER
|
||||
DEFINE_RKMPP_DECODER(vp8, VP8, NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue