[FFmpeg-devel] [PATCH 3/3] doc/examples/extract_mvs: re-indent after previous commit
Matthieu Bouron
matthieu.bouron at gmail.com
Tue Apr 4 13:13:03 EEST 2017
On Mon, Apr 03, 2017 at 04:33:57PM +0200, Matthieu Bouron wrote:
> ---
> doc/examples/extract_mvs.c | 56 +++++++++++++++++++++++-----------------------
> 1 file 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;
> }
> --
> 2.12.0
>
Patchset applied (reviewed by Clément).
Matthieu
[...]
More information about the ffmpeg-devel
mailing list