Browse Source

Add a context to av_log() call.

Originally committed as revision 17373 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Benoit Fouet 16 years ago
parent
commit
b9450753ea
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/sierravmd.c

+ 1
- 1
libavformat/sierravmd.c View File

@@ -254,7 +254,7 @@ static int vmd_read_packet(AVFormatContext *s,
}
pkt->stream_index = frame->stream_index;
pkt->pts = frame->pts;
av_log(NULL, AV_LOG_DEBUG, " dispatching %s frame with %d bytes and pts %"PRId64"\n",
av_log(s, AV_LOG_DEBUG, " dispatching %s frame with %d bytes and pts %"PRId64"\n",
(frame->frame_record[0] == 0x02) ? "video" : "audio",
frame->frame_size + BYTES_PER_FRAME_RECORD,
pkt->pts);


Loading…
Cancel
Save