Browse Source

Merge commit '619d5e7db88941cadb8136f805564e885c6c6434'

* commit '619d5e7db88941cadb8136f805564e885c6c6434':
  v4l2: Use the codec descriptor facility

Conflicts:
	libavdevice/v4l2.c

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 10 years ago
parent
commit
cde6e328de
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavdevice/v4l2.c

+ 3
- 3
libavdevice/v4l2.c View File

@@ -285,9 +285,9 @@ static void list_formats(AVFormatContext *ctx, int type)
vfd.description);
} else if (vfd.flags & V4L2_FMT_FLAG_COMPRESSED &&
type & V4L_COMPFORMATS) {
AVCodec *codec = avcodec_find_decoder(codec_id);
av_log(ctx, AV_LOG_INFO, "Compressed: %9s : %20s :",
codec ? codec->name : "Unsupported",
const AVCodecDescriptor *desc = avcodec_descriptor_get(codec_id);
av_log(ctx, AV_LOG_INFO, "Compressedll : %9s : %20s :",
desc ? desc->name : "Unsupported",
vfd.description);
} else {
continue;


Loading…
Cancel
Save