[FFmpeg-devel] [PATCH 18/37] avformat/matroskadec: Add function to reset status

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Fri May 17 01:30:02 EEST 2019


This function will be useful later to reset the status (e.g. current
level and the already parsed id).

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
This function is not used yet, so compilation will likely result in a
warning because of an unused function. This will be fixed with the next
commit. Splitting this into two commits is a suggestion by Steve.
 libavformat/matroskadec.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index b14f168c2c..4e81108dbe 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -739,6 +739,25 @@ static const char *const matroska_doctypes[] = { "matroska", "webm" };
 
 static int matroska_read_close(AVFormatContext *s);
 
+/*
+ * This function prepares the status for parsing of level 1 elements.
+ */
+static int matroska_reset_status(MatroskaDemuxContext *matroska,
+                                 uint32_t id, int64_t position)
+{
+    if (position >= 0) {
+        int err = avio_seek(matroska->ctx->pb, position, SEEK_SET);
+        if (err < 0)
+            return err;
+    }
+
+    matroska->current_id = id;
+    matroska->num_levels = 1;
+    matroska->current_cluster.pos = 0;
+
+    return 0;
+}
+
 static int matroska_resync(MatroskaDemuxContext *matroska, int64_t last_pos)
 {
     AVIOContext *pb = matroska->ctx->pb;
-- 
2.21.0



More information about the ffmpeg-devel mailing list