Commit 64c50c0e authored by Aman Gupta's avatar Aman Gupta

avcodec/cbs_h264: silence errors about end_of_seq nalus

[ffmpeg] AVBSFContext: Decomposition unimplemented for unit 4 (type 10).
Signed-off-by: 's avatarAman Gupta <aman@tmm1.net>
parent e1e6a312
......@@ -871,6 +871,9 @@ static int cbs_h264_read_nal_unit(CodedBitstreamContext *ctx,
}
break;
case H264_NAL_END_SEQUENCE:
return 0;
default:
return AVERROR(ENOSYS);
}
......
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