codecs: h264dec: Fix a typo in construct_ref_field_pic_lists_b.
authorHe Junyan <junyan.he@intel.com>
Fri, 23 Jul 2021 04:31:17 +0000 (12:31 +0800)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Fri, 23 Jul 2021 19:52:48 +0000 (19:52 +0000)
The array sort of ref_frame_list_0_short_term has some typo. The
typo makes this list not in the POC ascend order and generate wrong
decoding result for interlaced streams.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2425>

gst-libs/gst/codecs/gsth264decoder.c

index 3baf411..3e9b817 100644 (file)
@@ -2619,7 +2619,8 @@ construct_ref_field_pic_lists_b (GstH264Decoder * self,
   /* First sort ascending, this will put [1] in right place and finish
    * [2]. */
   print_ref_pic_list_b (self, priv->ref_frame_list_0_short_term, 0);
-  g_array_sort (priv->ref_pic_list_b0, (GCompareFunc) poc_asc_compare);
+  g_array_sort (priv->ref_frame_list_0_short_term,
+      (GCompareFunc) poc_asc_compare);
   print_ref_pic_list_b (self, priv->ref_frame_list_0_short_term, 0);
 
   /* Find first with POC > current_picture's POC to get first element