Commit b55e3633 authored by Martin Storsjö's avatar Martin Storsjö

rtpdec: Use AVERROR_PATCHWELCOME instead of AVERROR(ENOSYS) for unimplemented features

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 70c77fdf
...@@ -350,7 +350,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data, ...@@ -350,7 +350,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
av_log(ctx, AV_LOG_ERROR, av_log(ctx, AV_LOG_ERROR,
"Unhandled type (%d) (See RFC for implementation details)\n", "Unhandled type (%d) (See RFC for implementation details)\n",
type); type);
result = AVERROR(ENOSYS); result = AVERROR_PATCHWELCOME;
break; break;
case 28: // FU-A (fragmented nal) case 28: // FU-A (fragmented nal)
......
...@@ -223,7 +223,7 @@ static int vp9_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_vp9_ctx, ...@@ -223,7 +223,7 @@ static int vp9_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_vp9_ctx,
*/ */
if (has_ss_data) { if (has_ss_data) {
avpriv_report_missing_feature(ctx, "VP9 scalability structure data"); avpriv_report_missing_feature(ctx, "VP9 scalability structure data");
return AVERROR(ENOSYS); return AVERROR_PATCHWELCOME;
} }
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment