diff options
author | Aman Gupta <aman@tmm1.net> | 2018-10-08 13:05:05 -0700 |
---|---|---|
committer | Aman Gupta <aman@tmm1.net> | 2018-10-15 11:52:49 -0700 |
commit | 64c50c0e978cd556dc2da238dfe0bb367e7c1ab9 (patch) | |
tree | a19297c00793096e1dbaf3684d7964ef3d16536a | |
parent | e1e6a3121693256361895184aa12062a16353041 (diff) | |
download | ffmpeg-64c50c0e978cd556dc2da238dfe0bb367e7c1ab9.tar.gz |
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@tmm1.net>
-rw-r--r-- | libavcodec/cbs_h2645.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/cbs_h2645.c b/libavcodec/cbs_h2645.c index ab33cdb69b..4b31601c0f 100644 --- a/libavcodec/cbs_h2645.c +++ b/libavcodec/cbs_h2645.c @@ -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); } |