summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorTomas Härdin <tomas.hardin@codemill.se>2011-12-08 11:06:23 +0100
committerJanne Grunau <janne-libav@jannau.net>2012-01-22 14:40:53 +0100
commitc77a5460b19e6f93470132af020e3fe813293bd3 (patch)
tree8595c64a85bb1651bbd76bc6d03d725100c923c4 /libavformat
parentbe78e3f6ec42b150256830873a62c7f3e4f0a24d (diff)
mxfdec: Make mxf->partitions sorted by offset.
This also zeroes new entries for good measure (used by future patches). Signed-off-by: Janne Grunau <janne-libav@jannau.net>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mxfdec.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c
index 5ce9a24382..e451fe1520 100644
--- a/libavformat/mxfdec.c
+++ b/libavformat/mxfdec.c
@@ -192,6 +192,7 @@ typedef struct {
MXFPartition *current_partition;
int parsing_backward;
int64_t last_forward_tell;
+ int last_forward_partition;
} MXFContext;
enum MXFWrappingScheme {
@@ -448,7 +449,20 @@ static int mxf_read_partition_pack(void *arg, AVIOContext *pb, int tag, int size
if (!mxf->partitions)
return AVERROR(ENOMEM);
- partition = mxf->current_partition = &mxf->partitions[mxf->partitions_count++];
+ if (mxf->parsing_backward) {
+ /* insert the new partition pack in the middle
+ * this makes the entries in mxf->partitions sorted by offset */
+ memmove(&mxf->partitions[mxf->last_forward_partition+1],
+ &mxf->partitions[mxf->last_forward_partition],
+ (mxf->partitions_count - mxf->last_forward_partition)*sizeof(*mxf->partitions));
+ partition = mxf->current_partition = &mxf->partitions[mxf->last_forward_partition];
+ } else {
+ mxf->last_forward_partition++;
+ partition = mxf->current_partition = &mxf->partitions[mxf->partitions_count];
+ }
+
+ memset(partition, 0, sizeof(*partition));
+ mxf->partitions_count++;
switch(uid[13]) {
case 2: