[FFmpeg-cvslog] avcodec/cbs_h264: silence errors about end_of_seq nalus
Aman Gupta
git at videolan.org
Tue Oct 16 21:55:31 EEST 2018
ffmpeg | branch: release/4.0 | Aman Gupta <aman at tmm1.net> | Mon Oct 8 13:05:05 2018 -0700| [aec3daa8b4b31235b61922642df06f0f26fef082] | committer: Aman Gupta
avcodec/cbs_h264: silence errors about end_of_seq nalus
[ffmpeg] AVBSFContext: Decomposition unimplemented for unit 4 (type 10).
Signed-off-by: Aman Gupta <aman at tmm1.net>
(cherry picked from commit 64c50c0e978cd556dc2da238dfe0bb367e7c1ab9)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=aec3daa8b4b31235b61922642df06f0f26fef082
---
libavcodec/cbs_h2645.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavcodec/cbs_h2645.c b/libavcodec/cbs_h2645.c
index 5585831cf6..d3ae8bacf8 100644
--- a/libavcodec/cbs_h2645.c
+++ b/libavcodec/cbs_h2645.c
@@ -828,6 +828,9 @@ static int cbs_h264_read_nal_unit(CodedBitstreamContext *ctx,
}
break;
+ case H264_NAL_END_SEQUENCE:
+ return 0;
+
default:
return AVERROR(ENOSYS);
}
More information about the ffmpeg-cvslog
mailing list