OSDN Git Service

rtpdec: Use AVERROR_PATCHWELCOME instead of AVERROR(ENOSYS) for unimplemented features
authorMartin Storsjö <martin@martin.st>
Fri, 29 Apr 2016 17:37:24 +0000 (20:37 +0300)
committerMartin Storsjö <martin@martin.st>
Sat, 30 Apr 2016 17:57:44 +0000 (20:57 +0300)
Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpdec_h264.c
libavformat/rtpdec_vp9.c

index d7b39ac..d7c5e15 100644 (file)
@@ -350,7 +350,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)
index 5049469..9a92b93 100644 (file)
@@ -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;
     }
 
     /*