Browse Source

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>
(cherry picked from commit 64c50c0e97)
tags/n4.0.3
Aman Gupta 7 years ago
parent
commit
aec3daa8b4
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/cbs_h2645.c

+ 3
- 0
libavcodec/cbs_h2645.c View File

@@ -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);
}


Loading…
Cancel
Save