]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
SMPTE 421M Annex L (aka .rcv) muxer
authorkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 23 Jul 2008 17:06:40 +0000 (17:06 +0000)
committerkostya <kostya@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 23 Jul 2008 17:06:40 +0000 (17:06 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14352 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavformat/Makefile
libavformat/allformats.c
libavformat/avformat.h
libavformat/vc1testenc.c [new file with mode: 0644]

index 11514397f0a5a8dde6b81a3a4e6e669207b5f6a4..2d681a707f7ebbce4391bfd1ac7b0d9489ba8b55 100644 (file)
@@ -173,6 +173,7 @@ OBJS-$(CONFIG_TTA_DEMUXER)               += tta.o
 OBJS-$(CONFIG_TXD_DEMUXER)               += txd.o
 OBJS-$(CONFIG_VC1_DEMUXER)               += raw.o
 OBJS-$(CONFIG_VC1T_DEMUXER)              += vc1test.o
+OBJS-$(CONFIG_VC1T_MUXER)                += vc1testenc.o
 OBJS-$(CONFIG_VMD_DEMUXER)               += sierravmd.o
 OBJS-$(CONFIG_VOC_DEMUXER)               += vocdec.o voc.o
 OBJS-$(CONFIG_VOC_MUXER)                 += vocenc.o voc.o
index 81111af6602faf41b8dc61370862097f66c8b28a..6441ca996c46ffebb7b273c7752972fe447d54f8 100644 (file)
@@ -167,7 +167,7 @@ void av_register_all(void)
     REGISTER_DEMUXER  (TTA, tta);
     REGISTER_DEMUXER  (TXD, txd);
     REGISTER_DEMUXER  (VC1, vc1);
-    REGISTER_DEMUXER  (VC1T, vc1t);
+    REGISTER_MUXDEMUX (VC1T, vc1t);
     REGISTER_DEMUXER  (VMD, vmd);
     REGISTER_MUXDEMUX (VOC, voc);
     REGISTER_MUXDEMUX (WAV, wav);
index 23450af1bd2b900f65b8520ee12b6d51d4ac7d96..c6586862e9bc86fddb8bacf65a207aaf2f0b1a5c 100644 (file)
@@ -22,7 +22,7 @@
 #define FFMPEG_AVFORMAT_H
 
 #define LIBAVFORMAT_VERSION_MAJOR 52
-#define LIBAVFORMAT_VERSION_MINOR 17
+#define LIBAVFORMAT_VERSION_MINOR 18
 #define LIBAVFORMAT_VERSION_MICRO  0
 
 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
diff --git a/libavformat/vc1testenc.c b/libavformat/vc1testenc.c
new file mode 100644 (file)
index 0000000..c1264e5
--- /dev/null
@@ -0,0 +1,95 @@
+/*
+ * VC-1 test bitstreams format muxer.
+ * Copyright (c) 2008 Konstantin Shishkov
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+#include "avformat.h"
+
+typedef struct RCVContext {
+    int frames;
+} RCVContext;
+
+static int vc1test_write_header(AVFormatContext *s)
+{
+    RCVContext *ctx = s->priv_data;
+    AVCodecContext *avc = s->streams[0]->codec;
+    ByteIOContext *pb = s->pb;
+
+    if (avc->codec_id != CODEC_ID_WMV3) {
+        av_log(s, AV_LOG_ERROR, "Only WMV3 is accepted!\n");
+        return -1;
+    }
+    put_le24(pb, 0); //frames count will be here
+    put_byte(pb, 0xC5);
+    put_le32(pb, 4);
+    put_buffer(pb, avc->extradata, 4);
+    put_le32(pb, avc->height);
+    put_le32(pb, avc->width);
+    put_le32(pb, 0xC);
+    put_le24(pb, 0); // hrd_buffer
+    put_byte(pb, 0x80); // level|cbr|res1
+    put_le32(pb, 0); // hrd_rate
+    if (s->streams[0]->r_frame_rate.den && s->streams[0]->r_frame_rate.num == 1)
+        put_le32(pb, s->streams[0]->r_frame_rate.den);
+    else
+        put_le32(pb, 0xFFFFFFFF); //variable framerate
+
+    return 0;
+}
+
+static int vc1test_write_packet(AVFormatContext *s, AVPacket *pkt)
+{
+    RCVContext *ctx = s->priv_data;
+    ByteIOContext *pb = s->pb;
+
+    if (!pkt->size)
+        return 0;
+    put_le32(pb, pkt->size | ((pkt->flags & PKT_FLAG_KEY) ? 0x80000000 : 0));
+    put_le32(pb, pkt->pts);
+    put_buffer(pb, pkt->data, pkt->size);
+    put_flush_packet(pb);
+    ctx->frames++;
+
+    return 0;
+}
+
+static int vc1test_write_trailer(AVFormatContext *s)
+{
+    RCVContext *ctx = s->priv_data;
+    ByteIOContext *pb = s->pb;
+
+    if (!url_is_streamed(s->pb)) {
+        url_fseek(pb, 0, SEEK_SET);
+        put_le24(pb, ctx->frames);
+        put_flush_packet(pb);
+    }
+    return 0;
+}
+
+AVOutputFormat vc1t_muxer = {
+    "rcv",
+    NULL_IF_CONFIG_SMALL("VC-1 test bitstream"),
+    "",
+    "rcv",
+    sizeof(RCVContext),
+    CODEC_ID_NONE,
+    CODEC_ID_WMV3,
+    vc1test_write_header,
+    vc1test_write_packet,
+    vc1test_write_trailer,
+};