Message ID | 1336169215-59789-1-git-send-email-martin@martin.st |
---|---|
State | Committed |
Commit | b7b7354c336a0e3df8b6e7ca8baebe8750ed0f45 |
Headers | show |
On 04/05/12 15:06, Martin Storsjö wrote: > --- > libavformat/rtpdec_h264.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > Ok
diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index 8b56ada..f3793f5 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -272,7 +272,7 @@ static int h264_handle_packet(AVFormatContext *ctx, av_log(ctx, AV_LOG_ERROR, "Unhandled type (%d) (See RFC for implementation details\n", type); - result= -1; + result = AVERROR(ENOSYS); break; case 28: // FU-A (fragmented nal) @@ -319,7 +319,7 @@ static int h264_handle_packet(AVFormatContext *ctx, case 31: // undefined default: av_log(ctx, AV_LOG_ERROR, "Undefined type (%d)", type); - result= -1; + result = AVERROR_INVALIDDATA; break; }