On 16/09/14 00:32, Vittorio Giovara wrote:
> On Mon, Sep 15, 2014 at 11:24 PM, Diego Biurrun <[email protected]> wrote:
>> (cherry picked from commit 65345a5a30a0e866b6944c0e6184be3feca04335)
>> Signed-off-by: Diego Biurrun <[email protected]>
>>
>> Conflicts:
>>         libavutil/cpu.c
>>         libavutil/cpu.h
>> ---
> 
> Imho commit log can be reduced
> 
>>  libavutil/cpu.c     | 1 +
>>  libavutil/cpu.h     | 1 +
>>  libavutil/x86/cpu.c | 2 ++
>>  3 files changed, 4 insertions(+)
>>
>> diff --git a/libavutil/cpu.c b/libavutil/cpu.c
>> index 25895d6..60d0e14 100644
>> --- a/libavutil/cpu.c
>> +++ b/libavutil/cpu.c
>> @@ -64,6 +64,7 @@ static const struct {
>>      { AV_CPU_FLAG_FMA4,      "fma4"       },
>>      { AV_CPU_FLAG_3DNOW,     "3dnow"      },
>>      { AV_CPU_FLAG_3DNOWEXT,  "3dnowext"   },
>> +    { AV_CPU_FLAG_CMOV,      "cmov"       },
>>  #endif
>>      { 0 }
>>  };
>> diff --git a/libavutil/cpu.h b/libavutil/cpu.h
>> index df7bf44..e535580 100644
>> --- a/libavutil/cpu.h
>> +++ b/libavutil/cpu.h
>> @@ -41,6 +41,7 @@
>>  #define AV_CPU_FLAG_XOP          0x0400 ///< Bulldozer XOP functions
>>  #define AV_CPU_FLAG_FMA4         0x0800 ///< Bulldozer FMA4 functions
>>  #define AV_CPU_FLAG_IWMMXT       0x0100 ///< XScale IWMMXT
>> +#define AV_CPU_FLAG_CMOV         0x1000 ///< i686 cmov
>>  #define AV_CPU_FLAG_ALTIVEC      0x0001 ///< standard
> 
> Adding stuff to a public header should need a version bump (and
> APIChange entry).
> Not sure if this holds true for release branches, but I suppose so.

This is getting annoying. Could we think a little to go full semver?


_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to