diff mbox

[FFmpeg-devel,2/4] libvpx: remove pre-1.4.0 checks

Message ID 20171118015008.123256-2-jzern@google.com
State Accepted
Commit e54061ae6a5e22bad5c66ef4411acc8f778a9f90
Headers show

Commit Message

James Zern Nov. 18, 2017, 1:50 a.m. UTC
Signed-off-by: James Zern <jzern@google.com>
---
 libavcodec/libvpx.c | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

Comments

James Almer Nov. 19, 2017, 1:57 p.m. UTC | #1
On 11/17/2017 10:50 PM, James Zern wrote:
> Signed-off-by: James Zern <jzern@google.com>
> ---
>  libavcodec/libvpx.c | 12 +-----------
>  1 file changed, 1 insertion(+), 11 deletions(-)
> 
> diff --git a/libavcodec/libvpx.c b/libavcodec/libvpx.c
> index 1eca97a081..36f915a8e5 100644
> --- a/libavcodec/libvpx.c
> +++ b/libavcodec/libvpx.c
> @@ -40,9 +40,7 @@ static const enum AVPixelFormat vp9_pix_fmts_highcol[] = {
>      AV_PIX_FMT_YUV422P,
>      AV_PIX_FMT_YUV440P,
>      AV_PIX_FMT_YUV444P,
> -#if VPX_IMAGE_ABI_VERSION >= 3
>      AV_PIX_FMT_GBRP,
> -#endif
>      AV_PIX_FMT_NONE
>  };
>  
> @@ -60,30 +58,22 @@ static const enum AVPixelFormat vp9_pix_fmts_highbd[] = {
>      AV_PIX_FMT_YUV422P12,
>      AV_PIX_FMT_YUV440P12,
>      AV_PIX_FMT_YUV444P12,
> -#if VPX_IMAGE_ABI_VERSION >= 3
>      AV_PIX_FMT_GBRP,
>      AV_PIX_FMT_GBRP10,
>      AV_PIX_FMT_GBRP12,
> -#endif
>      AV_PIX_FMT_NONE
>  };
>  #endif
>  
>  av_cold void ff_vp9_init_static(AVCodec *codec)
>  {
> -    if (    vpx_codec_version_major() < 1
> -        || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() < 3))
> -        codec->capabilities |= AV_CODEC_CAP_EXPERIMENTAL;
>      codec->pix_fmts = vp9_pix_fmts_def;

Does this limited list of pixfmts make sense now that the
vpx_codec_version_* check below is gone?

>  #if CONFIG_LIBVPX_VP9_ENCODER
> -    if (    vpx_codec_version_major() > 1
> -        || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() >= 4)) {
> -#ifdef VPX_CODEC_CAP_HIGHBITDEPTH
> +    {
>          vpx_codec_caps_t codec_caps = vpx_codec_get_caps(vpx_codec_vp9_cx());
>          if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH)
>              codec->pix_fmts = vp9_pix_fmts_highbd;
>          else
> -#endif
>              codec->pix_fmts = vp9_pix_fmts_highcol;
>      }
>  #endif
>
James Zern Nov. 20, 2017, 7:23 p.m. UTC | #2
On Sun, Nov 19, 2017 at 5:57 AM, James Almer <jamrial@gmail.com> wrote:
> On 11/17/2017 10:50 PM, James Zern wrote:
>> Signed-off-by: James Zern <jzern@google.com>
>> ---
>>  libavcodec/libvpx.c | 12 +-----------
>>  1 file changed, 1 insertion(+), 11 deletions(-)
>>
>> diff --git a/libavcodec/libvpx.c b/libavcodec/libvpx.c
>> index 1eca97a081..36f915a8e5 100644
>> --- a/libavcodec/libvpx.c
>> +++ b/libavcodec/libvpx.c
>> @@ -40,9 +40,7 @@ static const enum AVPixelFormat vp9_pix_fmts_highcol[] = {
>>      AV_PIX_FMT_YUV422P,
>>      AV_PIX_FMT_YUV440P,
>>      AV_PIX_FMT_YUV444P,
>> -#if VPX_IMAGE_ABI_VERSION >= 3
>>      AV_PIX_FMT_GBRP,
>> -#endif
>>      AV_PIX_FMT_NONE
>>  };
>>
>> @@ -60,30 +58,22 @@ static const enum AVPixelFormat vp9_pix_fmts_highbd[] = {
>>      AV_PIX_FMT_YUV422P12,
>>      AV_PIX_FMT_YUV440P12,
>>      AV_PIX_FMT_YUV444P12,
>> -#if VPX_IMAGE_ABI_VERSION >= 3
>>      AV_PIX_FMT_GBRP,
>>      AV_PIX_FMT_GBRP10,
>>      AV_PIX_FMT_GBRP12,
>> -#endif
>>      AV_PIX_FMT_NONE
>>  };
>>  #endif
>>
>>  av_cold void ff_vp9_init_static(AVCodec *codec)
>>  {
>> -    if (    vpx_codec_version_major() < 1
>> -        || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() < 3))
>> -        codec->capabilities |= AV_CODEC_CAP_EXPERIMENTAL;
>>      codec->pix_fmts = vp9_pix_fmts_def;
>
> Does this limited list of pixfmts make sense now that the
> vpx_codec_version_* check below is gone?
>

It shouldn't, but as you pointed out in the configure patch, the
availability of VPX_CODEC_CAP_HIGHBITDEPTH is limited to the encoder
in 1.4.0. The move of this define didn't happen until post 1.6.1.
James Zern Nov. 21, 2017, 12:29 a.m. UTC | #3
On Fri, Nov 17, 2017 at 5:50 PM, James Zern <jzern@google.com> wrote:
> Signed-off-by: James Zern <jzern@google.com>
> ---
>  libavcodec/libvpx.c | 12 +-----------
>  1 file changed, 1 insertion(+), 11 deletions(-)
>

applied.
diff mbox

Patch

diff --git a/libavcodec/libvpx.c b/libavcodec/libvpx.c
index 1eca97a081..36f915a8e5 100644
--- a/libavcodec/libvpx.c
+++ b/libavcodec/libvpx.c
@@ -40,9 +40,7 @@  static const enum AVPixelFormat vp9_pix_fmts_highcol[] = {
     AV_PIX_FMT_YUV422P,
     AV_PIX_FMT_YUV440P,
     AV_PIX_FMT_YUV444P,
-#if VPX_IMAGE_ABI_VERSION >= 3
     AV_PIX_FMT_GBRP,
-#endif
     AV_PIX_FMT_NONE
 };
 
@@ -60,30 +58,22 @@  static const enum AVPixelFormat vp9_pix_fmts_highbd[] = {
     AV_PIX_FMT_YUV422P12,
     AV_PIX_FMT_YUV440P12,
     AV_PIX_FMT_YUV444P12,
-#if VPX_IMAGE_ABI_VERSION >= 3
     AV_PIX_FMT_GBRP,
     AV_PIX_FMT_GBRP10,
     AV_PIX_FMT_GBRP12,
-#endif
     AV_PIX_FMT_NONE
 };
 #endif
 
 av_cold void ff_vp9_init_static(AVCodec *codec)
 {
-    if (    vpx_codec_version_major() < 1
-        || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() < 3))
-        codec->capabilities |= AV_CODEC_CAP_EXPERIMENTAL;
     codec->pix_fmts = vp9_pix_fmts_def;
 #if CONFIG_LIBVPX_VP9_ENCODER
-    if (    vpx_codec_version_major() > 1
-        || (vpx_codec_version_major() == 1 && vpx_codec_version_minor() >= 4)) {
-#ifdef VPX_CODEC_CAP_HIGHBITDEPTH
+    {
         vpx_codec_caps_t codec_caps = vpx_codec_get_caps(vpx_codec_vp9_cx());
         if (codec_caps & VPX_CODEC_CAP_HIGHBITDEPTH)
             codec->pix_fmts = vp9_pix_fmts_highbd;
         else
-#endif
             codec->pix_fmts = vp9_pix_fmts_highcol;
     }
 #endif