diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-04-03 16:32:50 +0200 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-04-04 14:10:22 +0200 |
commit | 400378b7b3a4fb34991c7267beb09272615fdea2 (patch) | |
tree | 61e98f3796620b55ecd3e0dca053095e1f99a71d | |
parent | 1cf93196fc6993541194c06a67bd59e45a4b3a44 (diff) | |
download | ffmpeg-400378b7b3a4fb34991c7267beb09272615fdea2.tar.gz |
doc/examples/extract_mvs: re-indent after previous commit
-rw-r--r-- | doc/examples/extract_mvs.c | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/doc/examples/extract_mvs.c b/doc/examples/extract_mvs.c index 552a7334cf..7ae934ead3 100644 --- a/doc/examples/extract_mvs.c +++ b/doc/examples/extract_mvs.c @@ -35,40 +35,40 @@ static int video_frame_count = 0; static int decode_packet(const AVPacket *pkt) { - int ret = avcodec_send_packet(video_dec_ctx, pkt); - if (ret < 0) { - fprintf(stderr, "Error while sending a packet to the decoder: %s\n", av_err2str(ret)); + int ret = avcodec_send_packet(video_dec_ctx, pkt); + if (ret < 0) { + fprintf(stderr, "Error while sending a packet to the decoder: %s\n", av_err2str(ret)); + return ret; + } + + while (ret >= 0) { + ret = avcodec_receive_frame(video_dec_ctx, frame); + if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) { + break; + } else if (ret < 0) { + fprintf(stderr, "Error while receiving a frame from the decoder: %s\n", av_err2str(ret)); return ret; } - while (ret >= 0) { - ret = avcodec_receive_frame(video_dec_ctx, frame); - if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) { - break; - } else if (ret < 0) { - fprintf(stderr, "Error while receiving a frame from the decoder: %s\n", av_err2str(ret)); - return ret; - } - - if (ret >= 0) { - int i; - AVFrameSideData *sd; - - video_frame_count++; - sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS); - if (sd) { - const AVMotionVector *mvs = (const AVMotionVector *)sd->data; - for (i = 0; i < sd->size / sizeof(*mvs); i++) { - const AVMotionVector *mv = &mvs[i]; - printf("%d,%2d,%2d,%2d,%4d,%4d,%4d,%4d,0x%"PRIx64"\n", - video_frame_count, mv->source, - mv->w, mv->h, mv->src_x, mv->src_y, - mv->dst_x, mv->dst_y, mv->flags); - } + if (ret >= 0) { + int i; + AVFrameSideData *sd; + + video_frame_count++; + sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS); + if (sd) { + const AVMotionVector *mvs = (const AVMotionVector *)sd->data; + for (i = 0; i < sd->size / sizeof(*mvs); i++) { + const AVMotionVector *mv = &mvs[i]; + printf("%d,%2d,%2d,%2d,%4d,%4d,%4d,%4d,0x%"PRIx64"\n", + video_frame_count, mv->source, + mv->w, mv->h, mv->src_x, mv->src_y, + mv->dst_x, mv->dst_y, mv->flags); } - av_frame_unref(frame); } + av_frame_unref(frame); } + } return 0; } |