[SCM] libav/experimental: Move writing a block to its own function

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:06:27 UTC 2013


The following commit has been merged in the experimental branch:
commit 95527e066938e4d342b1c59a79a23487bba36efb
Author: David Conrad <lessen42 at gmail.com>
Date:   Wed Sep 5 00:23:47 2007 +0000

    Move writing a block to its own function
    
    Originally committed as revision 10329 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c
index 0f59fc3..51913a3 100644
--- a/libavformat/matroskaenc.c
+++ b/libavformat/matroskaenc.c
@@ -551,6 +551,19 @@ static int mkv_write_header(AVFormatContext *s)
     return 0;
 }
 
+static void mkv_write_block(AVFormatContext *s, unsigned int blockid, AVPacket *pkt, int flags)
+{
+    MatroskaMuxContext *mkv = s->priv_data;
+    ByteIOContext *pb = &s->pb;
+
+    put_ebml_id(pb, blockid);
+    put_ebml_size(pb, pkt->size + 4, 0);
+    put_byte(pb, 0x80 | (pkt->stream_index + 1));     // this assumes stream_index is less than 126
+    put_be16(pb, pkt->pts - mkv->cluster_pts);
+    put_byte(pb, flags);
+    put_buffer(pb, pkt->data, pkt->size);
+}
+
 static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
 {
     MatroskaMuxContext *mkv = s->priv_data;
@@ -570,12 +583,7 @@ static int mkv_write_packet(AVFormatContext *s, AVPacket *pkt)
         mkv->cluster_pts = pkt->pts;
     }
 
-    put_ebml_id(pb, MATROSKA_ID_SIMPLEBLOCK);
-    put_ebml_size(pb, pkt->size + 4, 0);
-    put_byte(pb, 0x80 | (pkt->stream_index + 1));     // this assumes stream_index is less than 126
-    put_be16(pb, pkt->pts - mkv->cluster_pts);
-    put_byte(pb, keyframe << 7);
-    put_buffer(pb, pkt->data, pkt->size);
+    mkv_write_block(s, MATROSKA_ID_SIMPLEBLOCK, pkt, keyframe << 7);
 
     if (s->streams[pkt->stream_index]->codec->codec_type == CODEC_TYPE_VIDEO && keyframe) {
         if (mkv_add_cuepoint(mkv->cues, pkt, mkv->cluster_pos) < 0)

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list