X-Git-Url: https://git.ao2.it/libam7xxx.git/blobdiff_plain/068e5d1ff2bb37f35dc754ba6a112f5b80ae44fd..c63bf2a7f6fcdd45b053139127f5e34710ef9c6f:/examples/am7xxx-play.c diff --git a/examples/am7xxx-play.c b/examples/am7xxx-play.c index 668c18c..0b1fa65 100644 --- a/examples/am7xxx-play.c +++ b/examples/am7xxx-play.c @@ -286,7 +286,7 @@ static int am7xxx_play(const char *input_format_string, uint8_t *out_buf; int out_picture_size; struct SwsContext *sw_scale_ctx; - AVPacket packet; + AVPacket in_packet; int got_picture; int ret = 0; @@ -353,7 +353,7 @@ static int am7xxx_play(const char *input_format_string, while (run) { /* read packet */ - ret = av_read_frame(input_ctx.format_ctx, &packet); + ret = av_read_frame(input_ctx.format_ctx, &in_packet); if (ret < 0) { if (ret == (int)AVERROR_EOF || input_ctx.format_ctx->pb->eof_reached) ret = 0; @@ -363,7 +363,7 @@ static int am7xxx_play(const char *input_format_string, goto end_while; } - if (packet.stream_index != input_ctx.video_stream_index) { + if (in_packet.stream_index != input_ctx.video_stream_index) { /* that is more or less a "continue", but there is * still the packet to free */ goto end_while; @@ -371,7 +371,7 @@ static int am7xxx_play(const char *input_format_string, /* decode */ got_picture = 0; - ret = avcodec_decode_video2(input_ctx.codec_ctx, picture_raw, &got_picture, &packet); + ret = avcodec_decode_video2(input_ctx.codec_ctx, picture_raw, &got_picture, &in_packet); if (ret < 0) { fprintf(stderr, "cannot decode video\n"); run = 0; @@ -431,7 +431,7 @@ static int am7xxx_play(const char *input_format_string, } } end_while: - av_free_packet(&packet); + av_free_packet(&in_packet); } sws_freeContext(sw_scale_ctx); @@ -758,7 +758,6 @@ int main(int argc, char *argv[]) usage(argv[0]); ret = 0; goto out; - break; default: /* '?' */ usage(argv[0]); ret = -EINVAL;