qt-faststart.c 19.1 KB
Newer Older
1
/*
2
 * qt-faststart.c, v0.2
3 4 5 6 7 8 9
 * by Mike Melanson (melanson@pcisys.net)
 * This file is placed in the public domain. Use the program however you
 * see fit.
 *
 * This utility rearranges a Quicktime file such that the moov atom
 * is in front of the data, thus facilitating network streaming.
 *
10 11 12 13 14 15
 * To compile this program, start from the base directory from which you
 * are building FFmpeg and type:
 *  make tools/qt-faststart
 * The qt-faststart program will be built in the tools/ directory. If you
 * do not build the program in this manner, correct results are not
 * guaranteed, particularly on 64-bit platforms.
16 17 18 19 20 21 22 23 24 25 26 27 28 29
 * Invoke the program with:
 *  qt-faststart <infile.mov> <outfile.mov>
 *
 * Notes: Quicktime files can come in many configurations of top-level
 * atoms. This utility stipulates that the very last atom in the file needs
 * to be a moov atom. When given such a file, this utility will rearrange
 * the top-level atoms by shifting the moov atom from the back of the file
 * to the front, and patch the chunk offsets along the way. This utility
 * presently only operates on uncompressed moov atoms.
 */

#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
30
#include <string.h>
31
#include <limits.h>
32

33
#ifdef __MINGW32__
34
#undef fseeko
35
#define fseeko(x, y, z) fseeko64(x, y, z)
36
#undef ftello
37
#define ftello(x)       ftello64(x)
38
#elif defined(_WIN32)
39
#undef fseeko
40
#define fseeko(x, y, z) _fseeki64(x, y, z)
41
#undef ftello
42
#define ftello(x)       _ftelli64(x)
43 44
#endif

45
#define MIN(a,b) ((a) > (b) ? (b) : (a))
46

47 48 49 50
#define BE_32(x) (((uint32_t)(((uint8_t*)(x))[0]) << 24) |  \
                             (((uint8_t*)(x))[1]  << 16) |  \
                             (((uint8_t*)(x))[2]  <<  8) |  \
                              ((uint8_t*)(x))[3])
51 52 53 54 55 56 57 58 59 60

#define BE_64(x) (((uint64_t)(((uint8_t*)(x))[0]) << 56) |  \
                  ((uint64_t)(((uint8_t*)(x))[1]) << 48) |  \
                  ((uint64_t)(((uint8_t*)(x))[2]) << 40) |  \
                  ((uint64_t)(((uint8_t*)(x))[3]) << 32) |  \
                  ((uint64_t)(((uint8_t*)(x))[4]) << 24) |  \
                  ((uint64_t)(((uint8_t*)(x))[5]) << 16) |  \
                  ((uint64_t)(((uint8_t*)(x))[6]) <<  8) |  \
                  ((uint64_t)( (uint8_t*)(x))[7]))

61 62 63 64 65 66 67 68 69 70 71 72
#define AV_WB32(p, val)    {                    \
    ((uint8_t*)(p))[0] = ((val) >> 24) & 0xff;  \
    ((uint8_t*)(p))[1] = ((val) >> 16) & 0xff;  \
    ((uint8_t*)(p))[2] = ((val) >> 8) & 0xff;   \
    ((uint8_t*)(p))[3] = (val) & 0xff;          \
    }

#define AV_WB64(p, val)    {                    \
    AV_WB32(p, (val) >> 32)                     \
    AV_WB32(p + 4, val)                         \
    }

73 74 75 76 77
#define BE_FOURCC(ch0, ch1, ch2, ch3)           \
    ( (uint32_t)(unsigned char)(ch3)        |   \
     ((uint32_t)(unsigned char)(ch2) <<  8) |   \
     ((uint32_t)(unsigned char)(ch1) << 16) |   \
     ((uint32_t)(unsigned char)(ch0) << 24) )
78 79 80 81 82 83 84 85 86 87 88 89

#define QT_ATOM BE_FOURCC
/* top level atoms */
#define FREE_ATOM QT_ATOM('f', 'r', 'e', 'e')
#define JUNK_ATOM QT_ATOM('j', 'u', 'n', 'k')
#define MDAT_ATOM QT_ATOM('m', 'd', 'a', 't')
#define MOOV_ATOM QT_ATOM('m', 'o', 'o', 'v')
#define PNOT_ATOM QT_ATOM('p', 'n', 'o', 't')
#define SKIP_ATOM QT_ATOM('s', 'k', 'i', 'p')
#define WIDE_ATOM QT_ATOM('w', 'i', 'd', 'e')
#define PICT_ATOM QT_ATOM('P', 'I', 'C', 'T')
#define FTYP_ATOM QT_ATOM('f', 't', 'y', 'p')
90
#define UUID_ATOM QT_ATOM('u', 'u', 'i', 'd')
91 92

#define CMOV_ATOM QT_ATOM('c', 'm', 'o', 'v')
93 94 95 96
#define TRAK_ATOM QT_ATOM('t', 'r', 'a', 'k')
#define MDIA_ATOM QT_ATOM('m', 'd', 'i', 'a')
#define MINF_ATOM QT_ATOM('m', 'i', 'n', 'f')
#define STBL_ATOM QT_ATOM('s', 't', 'b', 'l')
97 98 99
#define STCO_ATOM QT_ATOM('s', 't', 'c', 'o')
#define CO64_ATOM QT_ATOM('c', 'o', '6', '4')

100
#define ATOM_PREAMBLE_SIZE    8
Jan Ehrhardt's avatar
Jan Ehrhardt committed
101
#define COPY_BUFFER_SIZE   33554432
102
#define MAX_FTYP_ATOM_SIZE 1048576
103

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
typedef struct {
    uint32_t type;
    uint32_t header_size;
    uint64_t size;
    unsigned char *data;
} atom_t;

typedef struct {
    uint64_t moov_atom_size;
    uint64_t stco_offset_count;
    uint64_t stco_data_size;
    int stco_overflow;
    uint32_t depth;
} update_chunk_offsets_context_t;

typedef struct {
    unsigned char *dest;
    uint64_t original_moov_size;
    uint64_t new_moov_size;
} upgrade_stco_context_t;

typedef int (*parse_atoms_callback_t)(void *context, atom_t *atom);

static int parse_atoms(
    unsigned char *buf,
    uint64_t size,
    parse_atoms_callback_t callback,
    void *context)
{
    unsigned char *pos = buf;
    unsigned char *end = pos + size;
    atom_t atom;
    int ret;

    while (end - pos >= ATOM_PREAMBLE_SIZE) {
        atom.size = BE_32(pos);
        atom.type = BE_32(pos + 4);
        pos += ATOM_PREAMBLE_SIZE;
        atom.header_size = ATOM_PREAMBLE_SIZE;

        switch (atom.size) {
        case 1:
            if (end - pos < 8) {
147
                fprintf(stderr, "not enough room for 64 bit atom size\n");
148 149 150 151 152 153 154 155 156 157 158 159 160 161
                return -1;
            }

            atom.size = BE_64(pos);
            pos += 8;
            atom.header_size = ATOM_PREAMBLE_SIZE + 8;
            break;

        case 0:
            atom.size = ATOM_PREAMBLE_SIZE + end - pos;
            break;
        }

        if (atom.size < atom.header_size) {
162
            fprintf(stderr, "atom size %"PRIu64" too small\n", atom.size);
163 164 165 166 167 168
            return -1;
        }

        atom.size -= atom.header_size;

        if (atom.size > end - pos) {
169
            fprintf(stderr, "atom size %"PRIu64" too big\n", atom.size);
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
            return -1;
        }

        atom.data = pos;
        ret = callback(context, &atom);
        if (ret < 0) {
            return ret;
        }

        pos += atom.size;
    }

    return 0;
}

static int update_stco_offsets(update_chunk_offsets_context_t *context, atom_t *atom)
{
    uint32_t current_offset;
    uint32_t offset_count;
    unsigned char *pos;
    unsigned char *end;

    printf(" patching stco atom...\n");
    if (atom->size < 8) {
194
        fprintf(stderr, "stco atom size %"PRIu64" too small\n", atom->size);
195 196 197 198 199
        return -1;
    }

    offset_count = BE_32(atom->data + 4);
    if (offset_count > (atom->size - 8) / 4) {
200
        fprintf(stderr, "stco offset count %"PRIu32" too big\n", offset_count);
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
        return -1;
    }

    context->stco_offset_count += offset_count;
    context->stco_data_size += atom->size - 8;

    for (pos = atom->data + 8, end = pos + offset_count * 4;
        pos < end;
        pos += 4) {
        current_offset = BE_32(pos);
        if (current_offset > UINT_MAX - context->moov_atom_size) {
            context->stco_overflow = 1;
        }
        current_offset += context->moov_atom_size;
        AV_WB32(pos, current_offset);
    }

    return 0;
}

static int update_co64_offsets(update_chunk_offsets_context_t *context, atom_t *atom)
{
    uint64_t current_offset;
    uint32_t offset_count;
    unsigned char *pos;
    unsigned char *end;

    printf(" patching co64 atom...\n");
    if (atom->size < 8) {
230
        fprintf(stderr, "co64 atom size %"PRIu64" too small\n", atom->size);
231 232 233 234 235
        return -1;
    }

    offset_count = BE_32(atom->data + 4);
    if (offset_count > (atom->size - 8) / 8) {
236
        fprintf(stderr, "co64 offset count %"PRIu32" too big\n", offset_count);
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
        return -1;
    }

    for (pos = atom->data + 8, end = pos + offset_count * 8;
        pos < end;
        pos += 8) {
        current_offset = BE_64(pos);
        current_offset += context->moov_atom_size;
        AV_WB64(pos, current_offset);
    }

    return 0;
}

static int update_chunk_offsets_callback(void *ctx, atom_t *atom)
{
    update_chunk_offsets_context_t *context = ctx;
    int ret;

    switch (atom->type) {
    case STCO_ATOM:
        return update_stco_offsets(context, atom);

    case CO64_ATOM:
        return update_co64_offsets(context, atom);

    case MOOV_ATOM:
    case TRAK_ATOM:
    case MDIA_ATOM:
    case MINF_ATOM:
    case STBL_ATOM:
        context->depth++;
        if (context->depth > 10) {
270
            fprintf(stderr, "atoms too deeply nested\n");
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
            return -1;
        }

        ret = parse_atoms(
            atom->data,
            atom->size,
            update_chunk_offsets_callback,
            context);
        context->depth--;
        return ret;
    }

    return 0;
}

static void set_atom_size(unsigned char *header, uint32_t header_size, uint64_t size)
{
    switch (header_size) {
    case 8:
        AV_WB32(header, size);
        break;

    case 16:
        AV_WB64(header + 8, size);
        break;
    }
}

static void upgrade_stco_atom(upgrade_stco_context_t *context, atom_t *atom)
{
    unsigned char *pos;
    unsigned char *end;
    uint64_t new_offset;
    uint32_t offset_count;
    uint32_t original_offset;

    /* Note: not performing validations since they were performed on the first pass */

    offset_count = BE_32(atom->data + 4);

    /* write the header */
    memcpy(context->dest, atom->data - atom->header_size, atom->header_size + 8);
    AV_WB32(context->dest + 4, CO64_ATOM);
    set_atom_size(context->dest, atom->header_size, atom->header_size + 8 + offset_count * 8);
    context->dest += atom->header_size + 8;

    /* write the data */
    for (pos = atom->data + 8, end = pos + offset_count * 4;
        pos < end;
        pos += 4) {
        original_offset = BE_32(pos) - context->original_moov_size;
        new_offset = (uint64_t)original_offset + context->new_moov_size;
        AV_WB64(context->dest, new_offset);
        context->dest += 8;
    }
}

static int upgrade_stco_callback(void *ctx, atom_t *atom)
{
    upgrade_stco_context_t *context = ctx;
    unsigned char *start_pos;
    uint64_t copy_size;

    switch (atom->type) {
    case STCO_ATOM:
        upgrade_stco_atom(context, atom);
        break;

    case MOOV_ATOM:
    case TRAK_ATOM:
    case MDIA_ATOM:
    case MINF_ATOM:
    case STBL_ATOM:
        /* write the atom header */
        memcpy(context->dest, atom->data - atom->header_size, atom->header_size);
        start_pos = context->dest;
        context->dest += atom->header_size;

        /* parse internal atoms*/
        if (parse_atoms(
            atom->data,
            atom->size,
            upgrade_stco_callback,
            context) < 0) {
            return -1;
        }

        /* update the atom size */
        set_atom_size(start_pos, atom->header_size, context->dest - start_pos);
        break;

    default:
        copy_size = atom->header_size + atom->size;
        memcpy(context->dest, atom->data - atom->header_size, copy_size);
        context->dest += copy_size;
        break;
    }

    return 0;
}

static int update_moov_atom(
    unsigned char **moov_atom,
    uint64_t *moov_atom_size)
{
    update_chunk_offsets_context_t update_context = { 0 };
    upgrade_stco_context_t upgrade_context;
    unsigned char *new_moov_atom;

    update_context.moov_atom_size = *moov_atom_size;

    if (parse_atoms(
        *moov_atom,
        *moov_atom_size,
        update_chunk_offsets_callback,
        &update_context) < 0) {
        return -1;
    }

    if (!update_context.stco_overflow) {
        return 0;
    }

    printf(" upgrading stco atoms to co64...\n");
    upgrade_context.new_moov_size = *moov_atom_size +
        update_context.stco_offset_count * 8 -
        update_context.stco_data_size;

    new_moov_atom = malloc(upgrade_context.new_moov_size);
    if (new_moov_atom == NULL) {
401
        fprintf(stderr, "could not allocate %"PRIu64" bytes for updated moov atom\n",
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
            upgrade_context.new_moov_size);
        return -1;
    }

    upgrade_context.original_moov_size = *moov_atom_size;
    upgrade_context.dest = new_moov_atom;

    if (parse_atoms(
        *moov_atom,
        *moov_atom_size,
        upgrade_stco_callback,
        &upgrade_context) < 0) {
        free(new_moov_atom);
        return -1;
    }

    free(*moov_atom);
    *moov_atom = new_moov_atom;
    *moov_atom_size = upgrade_context.new_moov_size;

    if (upgrade_context.dest != *moov_atom + *moov_atom_size) {
423
        fprintf(stderr, "unexpected - wrong number of moov bytes written\n");
424 425 426 427 428 429
        return -1;
    }

    return 0;
}

430 431
int main(int argc, char *argv[])
{
432 433
    FILE *infile  = NULL;
    FILE *outfile = NULL;
434
    unsigned char atom_bytes[ATOM_PREAMBLE_SIZE];
435 436
    uint32_t atom_type   = 0;
    uint64_t atom_size   = 0;
437
    uint64_t atom_offset = 0;
438
    int64_t last_offset;
439
    unsigned char *moov_atom = NULL;
440
    unsigned char *ftyp_atom = NULL;
441
    uint64_t moov_atom_size;
Baptiste Coudurier's avatar
Baptiste Coudurier committed
442
    uint64_t ftyp_atom_size = 0;
443
    int64_t start_offset = 0;
Jan Ehrhardt's avatar
Jan Ehrhardt committed
444
    unsigned char *copy_buffer = NULL;
445
    int bytes_to_copy;
446 447
    uint64_t free_size = 0;
    uint64_t moov_size = 0;
448 449

    if (argc != 3) {
450 451
        printf("Usage: qt-faststart <infile.mov> <outfile.mov>\n"
               "Note: alternatively you can use -movflags +faststart in ffmpeg\n");
452 453 454
        return 0;
    }

455 456 457 458 459
    if (!strcmp(argv[1], argv[2])) {
        fprintf(stderr, "input and output files need to be different\n");
        return 1;
    }

460 461 462
    infile = fopen(argv[1], "rb");
    if (!infile) {
        perror(argv[1]);
463
        goto error_out;
464 465 466 467 468 469 470 471
    }

    /* traverse through the atoms in the file to make sure that 'moov' is
     * at the end */
    while (!feof(infile)) {
        if (fread(atom_bytes, ATOM_PREAMBLE_SIZE, 1, infile) != 1) {
            break;
        }
472
        atom_size = BE_32(&atom_bytes[0]);
473 474
        atom_type = BE_32(&atom_bytes[4]);

Baptiste Coudurier's avatar
Baptiste Coudurier committed
475 476
        /* keep ftyp atom */
        if (atom_type == FTYP_ATOM) {
477
            if (atom_size > MAX_FTYP_ATOM_SIZE) {
478
                fprintf(stderr, "ftyp atom size %"PRIu64" too big\n",
479 480 481
                       atom_size);
                goto error_out;
            }
Baptiste Coudurier's avatar
Baptiste Coudurier committed
482
            ftyp_atom_size = atom_size;
483
            free(ftyp_atom);
Baptiste Coudurier's avatar
Baptiste Coudurier committed
484 485
            ftyp_atom = malloc(ftyp_atom_size);
            if (!ftyp_atom) {
486
                fprintf(stderr, "could not allocate %"PRIu64" bytes for ftyp atom\n",
487
                       atom_size);
488
                goto error_out;
Baptiste Coudurier's avatar
Baptiste Coudurier committed
489
            }
490
            if (fseeko(infile, -ATOM_PREAMBLE_SIZE, SEEK_CUR) ||
491
                fread(ftyp_atom, atom_size, 1, infile) != 1 ||
492
                (start_offset = ftello(infile)) < 0) {
Baptiste Coudurier's avatar
Baptiste Coudurier committed
493
                perror(argv[1]);
494
                goto error_out;
Baptiste Coudurier's avatar
Baptiste Coudurier committed
495
            }
496
        } else {
497
            int ret;
498 499 500 501 502 503
            /* 64-bit special case */
            if (atom_size == 1) {
                if (fread(atom_bytes, ATOM_PREAMBLE_SIZE, 1, infile) != 1) {
                    break;
                }
                atom_size = BE_64(&atom_bytes[0]);
504
                ret = fseeko(infile, atom_size - ATOM_PREAMBLE_SIZE * 2, SEEK_CUR);
505
            } else {
506 507
                ret = fseeko(infile, atom_size - ATOM_PREAMBLE_SIZE, SEEK_CUR);
            }
508
            if (ret) {
509 510
                perror(argv[1]);
                goto error_out;
511 512
            }
        }
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
        printf("%c%c%c%c %10"PRIu64" %"PRIu64"\n",
               (atom_type >> 24) & 255,
               (atom_type >> 16) & 255,
               (atom_type >>  8) & 255,
               (atom_type >>  0) & 255,
               atom_offset,
               atom_size);
        if ((atom_type != FREE_ATOM) &&
            (atom_type != JUNK_ATOM) &&
            (atom_type != MDAT_ATOM) &&
            (atom_type != MOOV_ATOM) &&
            (atom_type != PNOT_ATOM) &&
            (atom_type != SKIP_ATOM) &&
            (atom_type != WIDE_ATOM) &&
            (atom_type != PICT_ATOM) &&
            (atom_type != UUID_ATOM) &&
            (atom_type != FTYP_ATOM)) {
530
            fprintf(stderr, "encountered non-QT top-level atom (is this a QuickTime file?)\n");
531 532 533
            break;
        }
        atom_offset += atom_size;
534 535 536 537 538 539

        /* The atom header is 8 (or 16 bytes), if the atom size (which
         * includes these 8 or 16 bytes) is less than that, we won't be
         * able to continue scanning sensibly after this atom, so break. */
        if (atom_size < 8)
            break;
540 541 542 543 544 545 546 547 548

        if (atom_type == MOOV_ATOM)
            moov_size = atom_size;

        if (moov_size && atom_type == FREE_ATOM) {
            free_size += atom_size;
            atom_type = MOOV_ATOM;
            atom_size = moov_size;
        }
549
    }
550 551

    if (atom_type != MOOV_ATOM) {
552
        printf("last atom in file was not a moov atom\n");
553
        free(ftyp_atom);
554 555 556 557
        fclose(infile);
        return 0;
    }

558
    if (atom_size < 16) {
559
        fprintf(stderr, "bad moov atom size\n");
560 561 562
        goto error_out;
    }

563 564
    /* moov atom was, in fact, the last atom in the chunk; load the whole
     * moov atom */
565
    if (fseeko(infile, -(atom_size + free_size), SEEK_END)) {
566 567 568
        perror(argv[1]);
        goto error_out;
    }
569
    last_offset    = ftello(infile);
570 571 572 573
    if (last_offset < 0) {
        perror(argv[1]);
        goto error_out;
    }
574
    moov_atom_size = atom_size;
575
    moov_atom      = malloc(moov_atom_size);
576
    if (!moov_atom) {
577
        fprintf(stderr, "could not allocate %"PRIu64" bytes for moov atom\n", atom_size);
578
        goto error_out;
579 580 581
    }
    if (fread(moov_atom, atom_size, 1, infile) != 1) {
        perror(argv[1]);
582
        goto error_out;
583 584 585 586 587
    }

    /* this utility does not support compressed atoms yet, so disqualify
     * files with compressed QT atoms */
    if (BE_32(&moov_atom[12]) == CMOV_ATOM) {
588
        fprintf(stderr, "this utility does not support compressed moov atoms yet\n");
589
        goto error_out;
590 591 592 593
    }

    /* close; will be re-opened later */
    fclose(infile);
594
    infile = NULL;
595

596 597
    if (update_moov_atom(&moov_atom, &moov_atom_size) < 0) {
        goto error_out;
598 599 600 601 602 603
    }

    /* re-open the input file and open the output file */
    infile = fopen(argv[1], "rb");
    if (!infile) {
        perror(argv[1]);
604
        goto error_out;
605
    }
606 607

    if (start_offset > 0) { /* seek after ftyp atom */
608 609 610 611 612
        if (fseeko(infile, start_offset, SEEK_SET)) {
            perror(argv[1]);
            goto error_out;
        }

613 614
        last_offset -= start_offset;
    }
Baptiste Coudurier's avatar
Baptiste Coudurier committed
615

616 617 618
    outfile = fopen(argv[2], "wb");
    if (!outfile) {
        perror(argv[2]);
619
        goto error_out;
620 621
    }

Baptiste Coudurier's avatar
Baptiste Coudurier committed
622 623
    /* dump the same ftyp atom */
    if (ftyp_atom_size > 0) {
624
        printf(" writing ftyp atom...\n");
Baptiste Coudurier's avatar
Baptiste Coudurier committed
625 626 627 628 629 630
        if (fwrite(ftyp_atom, ftyp_atom_size, 1, outfile) != 1) {
            perror(argv[2]);
            goto error_out;
        }
    }

631
    /* dump the new moov atom */
632
    printf(" writing moov atom...\n");
633 634 635 636 637 638
    if (fwrite(moov_atom, moov_atom_size, 1, outfile) != 1) {
        perror(argv[2]);
        goto error_out;
    }

    /* copy the remainder of the infile, from offset 0 -> last_offset - 1 */
639
    bytes_to_copy = MIN(COPY_BUFFER_SIZE, last_offset);
640
    copy_buffer = malloc(bytes_to_copy);
Jan Ehrhardt's avatar
Jan Ehrhardt committed
641
    if (!copy_buffer) {
642
        fprintf(stderr, "could not allocate %d bytes for copy_buffer\n", bytes_to_copy);
Jan Ehrhardt's avatar
Jan Ehrhardt committed
643 644
        goto error_out;
    }
645
    printf(" copying rest of file...\n");
646
    while (last_offset) {
647
        bytes_to_copy = MIN(bytes_to_copy, last_offset);
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662

        if (fread(copy_buffer, bytes_to_copy, 1, infile) != 1) {
            perror(argv[1]);
            goto error_out;
        }
        if (fwrite(copy_buffer, bytes_to_copy, 1, outfile) != 1) {
            perror(argv[2]);
            goto error_out;
        }
        last_offset -= bytes_to_copy;
    }

    fclose(infile);
    fclose(outfile);
    free(moov_atom);
663
    free(ftyp_atom);
Jan Ehrhardt's avatar
Jan Ehrhardt committed
664
    free(copy_buffer);
665 666 667 668

    return 0;

error_out:
669
    if (infile)
Martin Storsjö's avatar
Martin Storsjö committed
670
        fclose(infile);
671
    if (outfile)
Martin Storsjö's avatar
Martin Storsjö committed
672
        fclose(outfile);
673
    free(moov_atom);
674
    free(ftyp_atom);
Jan Ehrhardt's avatar
Jan Ehrhardt committed
675
    free(copy_buffer);
676 677
    return 1;
}