You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/ccaption_dec: use uint8_t type for prev_cmd array
Commands are unsigned so be consistent.
This commit is contained in:
@@ -240,7 +240,7 @@ typedef struct CCaptionSubContext {
|
|||||||
int64_t buffer_time[2];
|
int64_t buffer_time[2];
|
||||||
int screen_touched;
|
int screen_touched;
|
||||||
int64_t last_real_time;
|
int64_t last_real_time;
|
||||||
char prev_cmd[2];
|
uint8_t prev_cmd[2];
|
||||||
int readorder;
|
int readorder;
|
||||||
} CCaptionSubContext;
|
} CCaptionSubContext;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user