mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit '3ea5f64ffff0a51f62922efd2e2bc231b13b2179'
* commit '3ea5f64ffff0a51f62922efd2e2bc231b13b2179': ansi: fix possible use of uninitialized variables Conflicts: libavcodec/ansi.c Only partially merged, ffmpeg is not affected by this. Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
b568eeba75
@ -182,7 +182,10 @@ static void draw_char(AVCodecContext *avctx, int c)
|
|||||||
static int execute_code(AVCodecContext * avctx, int c)
|
static int execute_code(AVCodecContext * avctx, int c)
|
||||||
{
|
{
|
||||||
AnsiContext *s = avctx->priv_data;
|
AnsiContext *s = avctx->priv_data;
|
||||||
int ret, i, width, height;
|
int ret, i;
|
||||||
|
int width = 0;
|
||||||
|
int height = 0;
|
||||||
|
|
||||||
switch(c) {
|
switch(c) {
|
||||||
case 'A': //Cursor Up
|
case 'A': //Cursor Up
|
||||||
s->y = FFMAX(s->y - (s->nb_args > 0 ? s->args[0]*s->font_height : s->font_height), 0);
|
s->y = FFMAX(s->y - (s->nb_args > 0 ? s->args[0]*s->font_height : s->font_height), 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user