changeset 3830:b12626ef1020 libavformat

remove now useless track_number_sign
author bcoudurier
date Sun, 31 Aug 2008 01:41:10 +0000
parents dcc57b916324
children 547e11f5924b
files mxfenc.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mxfenc.c	Sun Aug 31 01:39:42 2008 +0000
+++ b/mxfenc.c	Sun Aug 31 01:41:10 2008 +0000
@@ -432,7 +432,7 @@
     }
 }
 
-static void mxf_write_track(AVFormatContext *s, int stream_index, enum MXFMetadataSetType type, int *track_number_sign)
+static void mxf_write_track(AVFormatContext *s, int stream_index, enum MXFMetadataSetType type)
 {
     ByteIOContext *pb = s->pb;
     AVStream *st = s->streams[stream_index];
@@ -647,15 +647,13 @@
 {
     int i;
     const MXFDescriptorWriteTableEntry *desc = NULL;
-    int track_number_sign[sizeof(mxf_essence_container_uls)/
-                          sizeof(*mxf_essence_container_uls)] = {0};
 
     mxf_write_package(s, type);
     if (type == SourcePackage)
         mxf_write_multi_descriptor(s);
 
     for (i = 0;i < s->nb_streams; i++) {
-        mxf_write_track(s, i, type, track_number_sign);
+        mxf_write_track(s, i, type);
         mxf_write_sequence(s, i, type);
         mxf_write_structural_component(s, i, type);