Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2017-11-09 04:04:25 +0300
committerMark Thompson <sw@jkqxz.net>2017-12-02 18:21:30 +0300
commit5a6707e49b7710f48d658b2f2591b9a6337fb9b7 (patch)
treef7002373be047e8ca62d35026dc7e9a87e77f6f4 /libavcodec/cbs_mpeg2.c
parent7bf3f380466eeff24916fd6218aca13e414c6240 (diff)
cbs_mpeg2: Fix marker_bit type
Diffstat (limited to 'libavcodec/cbs_mpeg2.c')
-rw-r--r--libavcodec/cbs_mpeg2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cbs_mpeg2.c b/libavcodec/cbs_mpeg2.c
index 8a4da96a0a..54875c2e1c 100644
--- a/libavcodec/cbs_mpeg2.c
+++ b/libavcodec/cbs_mpeg2.c
@@ -54,7 +54,7 @@
xui(width, name, current->name)
#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)); \
} while (0)