diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-10 02:27:26 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-10 02:27:26 +0000 |
commit | 4c125b8f6e6e6e4014517e7d7107a663b0855b5a (patch) | |
tree | 3897dbb6b61d8c73f9d6f1641fbd16425643b6fd /libavformat/mov.c | |
parent | 3d021dd6eb4cc28e54d35109d325d73883347513 (diff) | |
download | ffmpeg-4c125b8f6e6e6e4014517e7d7107a663b0855b5a.tar.gz |
fix compilation with DEBUG defined, field does not exist anymore
Originally committed as revision 17115 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index f092255194..f9d9a87bcb 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1776,7 +1776,7 @@ static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOVAtom atom) av_log(c->fc, AV_LOG_WARNING, "multiple edit list entries, " "a/v desync might occur, patch welcome\n"); - dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, sc->edit_count); + dprintf(c->fc, "track[%i].edit_count = %i\n", c->fc->nb_streams-1, edit_count); return 0; } |