Browse Source

lavd/v4l2: print buffer flags in case of error

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Giorgio Vazzana Michael Niedermayer 10 years ago
parent
commit
00a452a9ad
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavdevice/v4l2.c

+ 2
- 2
libavdevice/v4l2.c View File

@@ -528,8 +528,8 @@ static int mmap_read_frame(AVFormatContext *ctx, AVPacket *pkt)

if (s->frame_size > 0 && buf.bytesused != s->frame_size) {
av_log(ctx, AV_LOG_ERROR,
"The v4l2 frame is %d bytes, but %d bytes are expected\n",
buf.bytesused, s->frame_size);
"The v4l2 frame is %d bytes, but %d bytes are expected. Flags: 0x%08X\n",
buf.bytesused, s->frame_size, buf.flags);
enqueue_buffer(s, &buf);
return AVERROR_INVALIDDATA;
}


Loading…
Cancel
Save