From: Martin Storsjö <mar...@martin.st> Signed-off-by: Martin Storsjö <mar...@martin.st> --- libavformat/rtpdec_h264.c | 2 +- libavformat/rtpdec_vp9.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index c5eb341..7216dd8 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.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) diff --git a/libavformat/rtpdec_vp9.c b/libavformat/rtpdec_vp9.c index 506a5cd..d02c8b8 100644 --- a/libavformat/rtpdec_vp9.c +++ b/libavformat/rtpdec_vp9.c @@ -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; } /* -- 1.9.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel