avcodec/ccaption_dec: use uint8_t type for prev_cmd array

Commands are unsigned so be consistent.
pull/341/head
Paul B Mahol 5 years ago
parent bd1b78e91a
commit 00842b3a0d
  1. 2
      libavcodec/ccaption_dec.c

@ -240,7 +240,7 @@ typedef struct CCaptionSubContext {
int64_t buffer_time[2];
int screen_touched;
int64_t last_real_time;
char prev_cmd[2];
uint8_t prev_cmd[2];
int readorder;
} CCaptionSubContext;

Loading…
Cancel
Save