Commit ad2745e8 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt Committed by Mark Thompson

cbs_av1, cbs_jpeg, cbs_mpeg2, cbs_vp9: Fix undef

READ has already been undefined at this point; it is obviously intended
to undef WRITE.
Furthermore, leb128 (in cbs_av1) was undefined too often and
inconsistently.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent a53f9fde
......@@ -648,7 +648,6 @@ static size_t cbs_av1_get_payload_bytes_left(GetBitContext *gbc)
#undef xf
#undef xsu
#undef uvlc
#undef leb128
#undef ns
#undef increment
#undef subexp
......@@ -720,17 +719,17 @@ static size_t cbs_av1_get_payload_bytes_left(GetBitContext *gbc)
#include "cbs_av1_syntax_template.c"
#undef READ
#undef WRITE
#undef READWRITE
#undef RWContext
#undef xf
#undef xsu
#undef uvlc
#undef leb128
#undef ns
#undef increment
#undef subexp
#undef delta_q
#undef leb128
#undef infer
#undef byte_alignment
......
......@@ -75,7 +75,7 @@
#include "cbs_jpeg_syntax_template.c"
#undef READ
#undef WRITE
#undef READWRITE
#undef RWContext
#undef FUNC
......
......@@ -118,7 +118,7 @@
#include "cbs_mpeg2_syntax_template.c"
#undef READ
#undef WRITE
#undef READWRITE
#undef RWContext
#undef xui
......
......@@ -395,7 +395,7 @@ static int cbs_vp9_write_le(CodedBitstreamContext *ctx, PutBitContext *pbc,
#include "cbs_vp9_syntax_template.c"
#undef READ
#undef WRITE
#undef READWRITE
#undef RWContext
#undef xf
......
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