Browse Source

Remove stray line breaks from avpriv_{report_missing_feature|request_samples}

tags/n3.0
Diego Biurrun 9 years ago
parent
commit
69a68593ce
4 changed files with 5 additions and 6 deletions
  1. +1
    -2
      libavcodec/exr.c
  2. +1
    -1
      libavcodec/ivi.c
  3. +1
    -1
      libavformat/lxfdec.c
  4. +2
    -2
      libavformat/rtpdec_hevc.c

+ 1
- 2
libavcodec/exr.c View File

@@ -1092,8 +1092,7 @@ static int decode_header(EXRContext *s)

current_pixel_type = bytestream2_get_le32(&ch_gb);
if (current_pixel_type >= EXR_UNKNOWN) {
avpriv_report_missing_feature(s->avctx,
"Pixel type %d.\n",
avpriv_report_missing_feature(s->avctx, "Pixel type %d",
current_pixel_type);
return AVERROR_PATCHWELCOME;
}


+ 1
- 1
libavcodec/ivi.c View File

@@ -1054,7 +1054,7 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
}

if (ctx->gop_flags & IVI5_IS_PROTECTED) {
avpriv_report_missing_feature(avctx, "Password-protected clip!\n");
avpriv_report_missing_feature(avctx, "Password-protected clip");
return AVERROR_PATCHWELCOME;
}



+ 1
- 1
libavformat/lxfdec.c View File

@@ -130,7 +130,7 @@ static int get_packet_header(AVFormatContext *s)
version = bytestream_get_le32(&p);
header_size = bytestream_get_le32(&p);
if (version > 1)
avpriv_request_sample(s, "Unknown format version %"PRIu32"\n", version);
avpriv_request_sample(s, "Format version %"PRIu32, version);

if (header_size < (version ? 72 : 60) ||
header_size > LXF_MAX_PACKET_HEADER_SIZE ||


+ 2
- 2
libavformat/rtpdec_hevc.c View File

@@ -218,7 +218,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* sanity check for correct layer ID */
if (lid) {
/* future scalable or 3D video coding extensions */
avpriv_report_missing_feature(ctx, "Multi-layer HEVC coding\n");
avpriv_report_missing_feature(ctx, "Multi-layer HEVC coding");
return AVERROR_PATCHWELCOME;
}

@@ -330,7 +330,7 @@ static int hevc_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_hevc_ctx
/* PACI packet */
case 50:
/* Temporal scalability control information (TSCI) */
avpriv_report_missing_feature(ctx, "PACI packets for RTP/HEVC\n");
avpriv_report_missing_feature(ctx, "PACI packets for RTP/HEVC");
res = AVERROR_PATCHWELCOME;
break;
}


Loading…
Cancel
Save