diff options
author | He Junyan <junyan.he@intel.com> | 2020-12-09 00:04:33 +0800 |
---|---|---|
committer | He Junyan <junyan.he@intel.com> | 2020-12-09 01:26:26 +0800 |
commit | 5997093ba1415452f94e8c3c97444a5be299a37c (patch) | |
tree | 5d3cac4f4f5ca730b49a186373b63596c4cee2d6 /gst-libs | |
parent | dfc730165c53e0cbcee96fd81e4564f4e7baa819 (diff) |
libs: encoder: H264: Fix one assert in get_pending_reordered().
gst_vaapi_encoder_h264_get_pending_reordered() does not consider the
case for HIERARCHICAL_B mode. The pipeline:
gst-launch-1.0 videotestsrc num-buffers=48 ! vaapih264enc prediction-type=2 \
keyframe-period=32 ! fakesink
get a assert:
ERROR:../gst-libs/gst/vaapi/gstvaapiencoder_h264.c:1996:reflist1_init_hierarchical_b:
assertion failed: (count != 0)
The last few B frames are not fetched in correct order when HIERARCHICAL_B
is enabled.
We also fix a latent bug for normal mode. The g_queue_pop_tail() of B frames
make the last several frames encoded in reverse order. The NAL of last few
frames come in reverse order in the bit stream, though it can still output
the correct image.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/-/merge_requests/405>
Diffstat (limited to 'gst-libs')
-rw-r--r-- | gst-libs/gst/vaapi/gstvaapiencoder_h264.c | 57 |
1 files changed, 36 insertions, 21 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapiencoder_h264.c b/gst-libs/gst/vaapi/gstvaapiencoder_h264.c index 5eec9f6d..c36fa829 100644 --- a/gst-libs/gst/vaapi/gstvaapiencoder_h264.c +++ b/gst-libs/gst/vaapi/gstvaapiencoder_h264.c @@ -2943,6 +2943,23 @@ error: } } +/* reorder_list sorting for hierarchical-b encode */ +static gint +sort_hierarchical_b (gconstpointer a, gconstpointer b, gpointer user_data) +{ + GstVaapiEncPicture *pic1 = (GstVaapiEncPicture *) a; + GstVaapiEncPicture *pic2 = (GstVaapiEncPicture *) b; + + if (pic1->type != GST_VAAPI_PICTURE_TYPE_B) + return 1; + if (pic2->type != GST_VAAPI_PICTURE_TYPE_B) + return -1; + if (pic1->temporal_id == pic2->temporal_id) + return pic1->poc - pic2->poc; + else + return pic1->temporal_id - pic2->temporal_id; +} + struct _PendingIterState { guint cur_view; @@ -2955,7 +2972,7 @@ gst_vaapi_encoder_h264_get_pending_reordered (GstVaapiEncoder * base_encoder, { GstVaapiEncoderH264 *const encoder = GST_VAAPI_ENCODER_H264 (base_encoder); GstVaapiH264ViewReorderPool *reorder_pool; - GstVaapiEncPicture *pic; + GstVaapiEncPicture *pic = NULL; struct _PendingIterState *iter; g_return_val_if_fail (state, FALSE); @@ -2979,13 +2996,28 @@ gst_vaapi_encoder_h264_get_pending_reordered (GstVaapiEncoder * base_encoder, return TRUE; /* perhaps other views has pictures? */ } - pic = g_queue_pop_tail (&reorder_pool->reorder_frame_list); - g_assert (pic); if (iter->pic_type == GST_VAAPI_PICTURE_TYPE_P) { + pic = g_queue_pop_tail (&reorder_pool->reorder_frame_list); + g_assert (pic); set_p_frame (pic, encoder); + + g_queue_foreach (&reorder_pool->reorder_frame_list, (GFunc) set_b_frame, + encoder); + /* sort the queued list of frames for hierarchical-b based on + * temporal level where each frame belongs */ + if (encoder->prediction_type == + GST_VAAPI_ENCODER_H264_PREDICTION_HIERARCHICAL_B) { + pic->temporal_id = 0; + GST_VAAPI_PICTURE_FLAG_SET (pic, GST_VAAPI_ENC_PICTURE_FLAG_REFERENCE); + + g_queue_sort (&reorder_pool->reorder_frame_list, sort_hierarchical_b, + NULL); + } + iter->pic_type = GST_VAAPI_PICTURE_TYPE_B; } else if (iter->pic_type == GST_VAAPI_PICTURE_TYPE_B) { - set_b_frame (pic, encoder); + pic = g_queue_pop_head (&reorder_pool->reorder_frame_list); + g_assert (pic); } else { GST_WARNING ("Unhandled pending picture type"); } @@ -3141,23 +3173,6 @@ get_temporal_id (GstVaapiEncoderH264 * encoder, guint32 display_order) return 0; } -/* reorder_list sorting for hierarchical-b encode */ -static gint -sort_hierarchical_b (gconstpointer a, gconstpointer b, gpointer user_data) -{ - GstVaapiEncPicture *pic1 = (GstVaapiEncPicture *) a; - GstVaapiEncPicture *pic2 = (GstVaapiEncPicture *) b; - - if (pic1->type != GST_VAAPI_PICTURE_TYPE_B) - return 1; - if (pic2->type != GST_VAAPI_PICTURE_TYPE_B) - return -1; - if (pic1->temporal_id == pic2->temporal_id) - return pic1->poc - pic2->poc; - else - return pic1->temporal_id - pic2->temporal_id; -} - static GstVaapiEncoderStatus gst_vaapi_encoder_h264_reordering (GstVaapiEncoder * base_encoder, GstVideoCodecFrame * frame, GstVaapiEncPicture ** output) |