rtpdec: Use AVERROR_PATCHWELCOME instead of AVERROR(ENOSYS) for

unimplemented features

Signed-off-by: Martin Storsjö <martin@martin.st>
pull/221/head
Martin Storsjö 9 years ago committed by Thomas Volkert
parent 43880f9716
commit 94dee9067a
  1. 2
      libavformat/rtpdec_h264.c
  2. 2
      libavformat/rtpdec_vp9.c

@ -354,7 +354,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
av_log(ctx, AV_LOG_ERROR,
"Unhandled type (%d) (See RFC for implementation details)\n",
type);
result = AVERROR(ENOSYS);
result = AVERROR_PATCHWELCOME;
break;
case 28: // FU-A (fragmented nal)

@ -223,7 +223,7 @@ static int vp9_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_vp9_ctx,
*/
if (has_ss_data) {
avpriv_report_missing_feature(ctx, "VP9 scalability structure data");
return AVERROR(ENOSYS);
return AVERROR_PATCHWELCOME;
}
/*

Loading…
Cancel
Save