Browse Source

remove now useless track_number_sign

Originally committed as revision 15084 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Baptiste Coudurier 17 years ago
parent
commit
c872bdb0f8
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      libavformat/mxfenc.c

+ 2
- 4
libavformat/mxfenc.c View File

@@ -432,7 +432,7 @@ static void mxf_write_package(AVFormatContext *s, enum MXFMetadataSetType type)
}
}

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 @@ static void mxf_build_structural_metadata(AVFormatContext *s, enum MXFMetadataSe
{
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);



Loading…
Cancel
Save