h264: drop extra code covered by built-in codecparsers.
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>
Tue, 16 Oct 2012 14:46:17 +0000 (16:46 +0200)
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>
Tue, 16 Oct 2012 14:46:17 +0000 (16:46 +0200)
GstH264SliceHdr.n_emulation_prevention_bytes is bound to exist now that
a newer version of codecparsers/ are used if the system provided one is
now recent enough to have those required extensions.

gst-libs/gst/vaapi/gstvaapidecoder_h264.c

index d0ff1ec..9dfd38d 100644 (file)
@@ -1975,37 +1975,12 @@ decode_picture_end(GstVaapiDecoderH264 *decoder, GstVaapiPictureH264 *picture)
     return TRUE;
 }
 
-#ifndef HAVE_GST_H264_SLICE_HDR_EPB_COUNT
-static guint
-get_epb_count(const guint8 *buf, guint buf_size, guint header_size)
-{
-    guint i, n = 0;
-
-    if (buf_size > header_size)
-        buf_size = header_size;
-
-    for (i = 2; i < buf_size; i++) {
-        if (!buf[i - 2] && !buf[i - 1] && buf[i] == 0x03)
-            i += 2, n++;
-    }
-    return n;
-}
-#endif
-
 static inline guint
 get_slice_data_bit_offset(GstH264SliceHdr *slice_hdr, GstH264NalUnit *nalu)
 {
     guint epb_count;
 
-#ifdef HAVE_GST_H264_SLICE_HDR_EPB_COUNT
     epb_count = slice_hdr->n_emulation_prevention_bytes;
-#else
-    epb_count = get_epb_count(
-        nalu->data + nalu->offset,
-        nalu->size,
-        slice_hdr->header_size / 8
-    );
-#endif
     return 8 /* nal_unit_type */ + slice_hdr->header_size - epb_count * 8;
 }