[SCM] libav/experimental: matroskadec: expand useless ebml_read_element_id() wrapper

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:26:55 UTC 2013


The following commit has been merged in the experimental branch:
commit 88cca989471ccf28de34efbc07a87807bcd45941
Author: Aurelien Jacobs <aurel at gnuage.org>
Date:   Tue Aug 5 00:42:58 2008 +0000

    matroskadec: expand useless ebml_read_element_id() wrapper
    
    Originally committed as revision 14610 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index 1d9f58d..cc14596 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -522,23 +522,6 @@ static int ebml_read_num(MatroskaDemuxContext *matroska, ByteIOContext *pb,
 }
 
 /*
- * Read: the element content data ID.
- * 0 is success, < 0 is failure.
- */
-static int ebml_read_element_id(MatroskaDemuxContext *matroska, uint32_t *id)
-{
-    int read;
-    uint64_t total;
-
-    /* read out the "EBML number", include tag in ID */
-    if ((read = ebml_read_num(matroska, matroska->ctx->pb, 4, &total)) < 0)
-        return read;
-    *id = total | (1 << (read * 7));
-
-    return 0;
-}
-
-/*
  * Read the next element as an unsigned int.
  * 0 is success, < 0 is failure.
  */
@@ -683,8 +666,9 @@ static int ebml_parse_id(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
 static int ebml_parse(MatroskaDemuxContext *matroska, EbmlSyntax *syntax,
                       void *data)
 {
-    uint32_t id;
-    int res = ebml_read_element_id(matroska, &id);
+    uint64_t id;
+    int res = ebml_read_num(matroska, matroska->ctx->pb, 4, &id);
+    id |= 1 << 7*res;
     return res < 0 ? res : ebml_parse_id(matroska, syntax, id, data);
 }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list