mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
cbs_mpeg2: Fix type for marker_bit reading
This commit is contained in:
parent
f31478ba14
commit
5b2c71bb94
@ -54,7 +54,7 @@
|
|||||||
xui(width, name, current->name)
|
xui(width, name, current->name)
|
||||||
|
|
||||||
#define marker_bit() do { \
|
#define marker_bit() do { \
|
||||||
av_unused int one = 1; \
|
av_unused uint32_t one; \
|
||||||
CHECK(ff_cbs_read_unsigned(ctx, rw, 1, "marker_bit", &one, 1, 1)); \
|
CHECK(ff_cbs_read_unsigned(ctx, rw, 1, "marker_bit", &one, 1, 1)); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user