[FFmpeg-devel] [PATCH v2 1/2] cbs_av1: Fix header writing when already aligned
James Almer
jamrial at gmail.com
Mon Nov 5 23:25:31 EET 2018
On 11/5/2018 12:25 PM, Mark Thompson wrote:
> ---
> libavcodec/cbs_av1.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/cbs_av1.c b/libavcodec/cbs_av1.c
> index 9bac9dde09..1c49d90f51 100644
> --- a/libavcodec/cbs_av1.c
> +++ b/libavcodec/cbs_av1.c
> @@ -1179,7 +1179,7 @@ static int cbs_av1_write_obu(CodedBitstreamContext *ctx,
> if (err < 0)
> return err;
> end_pos = put_bits_count(pbc);
> - obu->obu_size = (end_pos - start_pos + 7) / 8;
> + obu->obu_size = header_size = (end_pos - start_pos + 7) / 8;
> } else {
> // Empty OBU.
> obu->obu_size = 0;
Still LGTM.
More information about the ffmpeg-devel
mailing list