]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/md5enc.c
Factor tag reading code out of wav read_header()
[ffmpeg] / libavformat / md5enc.c
index 600b95d6dc712cb9a82ea03cb3bbc2a3c36e7815..f9ab3d0933f76d3ac4a7213a217f648482292f86 100644 (file)
 
 #define PRIVSIZE 512
 
+static void md5_finish(struct AVFormatContext *s, char *buf)
+{
+    uint8_t md5[16];
+    int i, offset = strlen(buf);
+    av_md5_final(s->priv_data, md5);
+    for (i = 0; i < sizeof(md5); i++) {
+        snprintf(buf + offset, 3, "%02"PRIx8, md5[i]);
+        offset += 2;
+    }
+    buf[offset] = '\n';
+    buf[offset+1] = 0;
+
+    put_buffer(s->pb, buf, strlen(buf));
+    put_flush_packet(s->pb);
+}
+
+#if CONFIG_MD5_MUXER
 static int write_header(struct AVFormatContext *s)
 {
     if (PRIVSIZE < av_md5_size) {
@@ -42,20 +59,9 @@ static int write_packet(struct AVFormatContext *s, AVPacket *pkt)
 
 static int write_trailer(struct AVFormatContext *s)
 {
-    uint8_t md5[16];
     char buf[64] = "MD5=";
-    int i, offset = strlen(buf);
 
-    av_md5_final(s->priv_data, md5);
-    for (i = 0; i < sizeof(md5); i++) {
-        snprintf(buf + offset, 3, "%02"PRIx8, md5[i]);
-        offset += 2;
-    }
-    buf[offset] = '\n';
-    buf[offset+1] = 0;
-
-    put_buffer(s->pb, buf, strlen(buf));
-    put_flush_packet(s->pb);
+    md5_finish(s, buf);
     return 0;
 }
 
@@ -71,3 +77,34 @@ AVOutputFormat md5_muxer = {
     write_packet,
     write_trailer,
 };
+#endif
+
+#if CONFIG_FRAMEMD5_MUXER
+static int framemd5_write_packet(struct AVFormatContext *s, AVPacket *pkt)
+{
+    char buf[256];
+    if (PRIVSIZE < av_md5_size) {
+        av_log(s, AV_LOG_ERROR, "Insuffient size for md5 context\n");
+        return -1;
+    }
+    av_md5_init(s->priv_data);
+    av_md5_update(s->priv_data, pkt->data, pkt->size);
+
+    snprintf(buf, sizeof(buf) - 64, "%d, %"PRId64", %d, ", pkt->stream_index, pkt->dts, pkt->size);
+    md5_finish(s, buf);
+    return 0;
+}
+
+AVOutputFormat framemd5_muxer = {
+    "framemd5",
+    NULL_IF_CONFIG_SMALL("Per-frame MD5 testing format"),
+    NULL,
+    "",
+    PRIVSIZE,
+    CODEC_ID_PCM_S16LE,
+    CODEC_ID_RAWVIDEO,
+    NULL,
+    framemd5_write_packet,
+    NULL,
+};
+#endif