diff --git a/libavformat/mov.c b/libavformat/mov.c index ff32c9231391a500558d4877684386e940e2240d..245933da3a1ad52fe0c1533a76e675be1450b65d 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2143,9 +2143,6 @@ static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom) goto free_and_return; atom.type = MKTAG('m','o','o','v'); atom.size = moov_len; -#ifdef DEBUG -// { int fd = open("/tmp/uncompheader.mov", O_WRONLY | O_CREAT); write(fd, moov_data, moov_len); close(fd); } -#endif ret = mov_read_default(c, &ctx, atom); free_and_return: av_free(moov_data);