codecparsers: Remove some unused functions
authorSebastian Dröge <sebastian@centricular.com>
Thu, 7 Nov 2013 08:54:40 +0000 (09:54 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Thu, 7 Nov 2013 08:54:40 +0000 (09:54 +0100)
gst-libs/gst/codecparsers/gsth264parser.c
gst-libs/gst/codecparsers/gsth265parser.c
gst-libs/gst/codecparsers/gstmpegvideoparser.c

index efbdf30..d71b695 100644 (file)
@@ -269,21 +269,6 @@ nal_reader_skip (NalReader * nr, guint nbits)
   return TRUE;
 }
 
-static inline gboolean
-nal_reader_skip_to_byte (NalReader * nr)
-{
-  if (nr->bits_in_cache == 0) {
-    if (G_LIKELY ((nr->size - nr->byte) > 0))
-      nr->byte++;
-    else
-      return FALSE;
-  }
-
-  nr->bits_in_cache = 0;
-
-  return TRUE;
-}
-
 static inline guint
 nal_reader_get_pos (const NalReader * nr)
 {
index 10c591b..b402132 100644 (file)
@@ -255,21 +255,6 @@ nal_reader_skip (NalReader * nr, guint nbits)
   return TRUE;
 }
 
-static inline gboolean
-nal_reader_skip_to_byte (NalReader * nr)
-{
-  if (nr->bits_in_cache == 0) {
-    if (G_LIKELY ((nr->size - nr->byte) > 0))
-      nr->byte++;
-    else
-      return FALSE;
-  }
-
-  nr->bits_in_cache = 0;
-
-  return TRUE;
-}
-
 static inline guint
 nal_reader_get_pos (const NalReader * nr)
 {
index 2fd992f..51a9798 100644 (file)
@@ -126,30 +126,6 @@ GST_DEBUG_CATEGORY (mpegvideo_parser_debug);
 
 static gboolean initialized = FALSE;
 
-static inline gboolean
-find_start_code (GstBitReader * b)
-{
-  guint32 bits;
-
-  /* 0 bits until byte aligned */
-  while (b->bit != 0) {
-    GET_BITS (b, 1, &bits);
-  }
-
-  /* 0 bytes until startcode */
-  while (gst_bit_reader_peek_bits_uint32 (b, &bits, 32)) {
-    if (bits >> 8 == 0x1) {
-      return TRUE;
-    } else if (gst_bit_reader_skip (b, 8) == FALSE)
-      break;
-  }
-
-  return FALSE;
-
-failed:
-  return FALSE;
-}
-
 /* Set the Pixel Aspect Ratio in our hdr from a ASR code in the data */
 static void
 set_par_from_asr_mpeg1 (GstMpegVideoSequenceHdr * seqhdr, guint8 asr_code)