diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-10-27 02:50:03 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-10-27 03:21:53 -0400 |
| commit | cce14b4cd75fd3bbab548375a0a547ec499283e2 (patch) | |
| tree | 4e7b8e774ba4a07489b14ab6b42ada58d476ec14 /src/video_core/command_classes/codecs/h264.h | |
| parent | 6291975731f6237de3edc81a96aca87cdae01000 (diff) | |
h264: Make WriteUe take a u32
Enforces the type of the desired value in calling code.
Diffstat (limited to 'src/video_core/command_classes/codecs/h264.h')
| -rw-r--r-- | src/video_core/command_classes/codecs/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/command_classes/codecs/h264.h b/src/video_core/command_classes/codecs/h264.h index c36a54399..f2292fd2f 100644 --- a/src/video_core/command_classes/codecs/h264.h +++ b/src/video_core/command_classes/codecs/h264.h @@ -38,7 +38,7 @@ public: /// WriteSe and WriteUe write in the Exp-Golomb-coded syntax void WriteU(s32 value, s32 value_sz); void WriteSe(s32 value); - void WriteUe(s32 value); + void WriteUe(u32 value); /// Finalize the bitstream void End(); |
