X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/01fb3c9f8bd57ce89445b9aef491e39c21caafcc..e3943041a1d8869fb9d6779d49946e0a9d7dbff2:/examples/am7xxx-play.c diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c index 2fa615a..f63fbfd 100644 --- a/examples/am7xxx-play.c +++ b/examples/am7xxx-play.c @@ -354,6 +354,7 @@ static int am7xxx_play(const char *input_format_string, goto cleanup_out_buf; } + got_packet = 0; while (run) { /* read packet */ ret = av_read_frame(input_ctx.format_ctx, &in_packet); @@ -381,11 +382,11 @@ static int am7xxx_play(const char *input_format_string, goto end_while; } - /* if we get the complete frame */ + /* if we got the complete frame */ if (got_picture) { /* convert it to YUV */ sws_scale(sw_scale_ctx, - (const uint8_t * const*)picture_raw->data, + (const uint8_t * const *)picture_raw->data, picture_raw->linesize, 0, (input_ctx.codec_ctx)->height,