web-dev-qa-db-fra.com

Erreur lors de la compilation de guvcview avec le plus récent FFmpeg

Sous Xenial Xerus, je compile la version finale de guvcview avec le dernier git FFmpeg. Dans le dernier FFmpeg PIX_FMT_YUV420P a été remplacé par AV_PIX_FMT_YUV420P et je soupçonne que cette variable doit être remplacée par la source guvcview.

L'erreur qui rompt la compilation est la suivante:

jpeg_decoder.c:1439:33: error: use of undeclared identifier 'PIX_FMT_YUV422P'; did you mean
      'AV_PIX_FMT_YUV422P'?
        codec_data->context->pix_fmt = PIX_FMT_YUV422P;
                                       ^~~~~~~~~~~~~~~
                                       AV_PIX_FMT_YUV422P

Quelqu'un at-il un correctif ou même une magie sed pour résoudre ce problème?

Références:

2
andrew.46

Vous pouvez utiliser guvcview-ffmpeg3.patch d'Arch Linux:

--- a/gview_v4l2core/jpeg_decoder.c
+++ b/gview_v4l2core/jpeg_decoder.c
@@ -1436,7 +1436,7 @@
        exit(-1);
    }

-   codec_data->context->pix_fmt = PIX_FMT_YUV422P;
+   codec_data->context->pix_fmt = AV_PIX_FMT_YUV422P;
    codec_data->context->width = width;
    codec_data->context->height = height;
    //jpeg_ctx->context->dsp_mask = (FF_MM_MMX | FF_MM_MMXEXT | FF_MM_SSE);
--- a/gview_v4l2core/uvc_h264.c
+++ b/gview_v4l2core/uvc_h264.c
@@ -970,7 +970,7 @@
    }

    h264_ctx->context->flags2 |= CODEC_FLAG2_FAST;
-   h264_ctx->context->pix_fmt = PIX_FMT_YUV420P;
+   h264_ctx->context->pix_fmt = AV_PIX_FMT_YUV420P;
    h264_ctx->context->width = width;
    h264_ctx->context->height = height;
    //h264_ctx->context->dsp_mask = (FF_MM_MMX | FF_MM_MMXEXT | FF_MM_SSE);
2
llogan