Re: [FFmpeg-devel] [PATCH] libavtuil: add version component accessor macros

2015-12-06 Thread Reynaldo H. Verdejo Pinochet
Pushed as: commit 21c34cb26154a5eadd6e10df86c20e2df3a7bd55 Author: Reynaldo H. Verdejo Pinochet Date: Fri Dec 4 14:07:23 2015 -0800 libavutil: add version component accessor macros [..] Thanks -- Reynaldo ___ ffmpeg-devel mailing list ffmpeg-

Re: [FFmpeg-devel] [PATCH] libavtuil: add version component accessor macros

2015-12-06 Thread Reynaldo H. Verdejo Pinochet
On 12/05/2015 11:36 AM, Ganesh Ajjanagadde wrote: > [...] > > minor nit: commit message typo (libavtuil -> libavutil). > True. Corrected. Thanks for taking a look -- Reynaldo ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/m

Re: [FFmpeg-devel] [PATCH] libavtuil: add version component accessor macros

2015-12-05 Thread Ganesh Ajjanagadde
On Sat, Dec 5, 2015 at 1:56 PM, Michael Niedermayer wrote: > On Sat, Dec 05, 2015 at 10:31:33AM -0800, Reynaldo H. Verdejo Pinochet wrote: >> Pretty standard macros, these should help libav* >> users avoid repeating ver.si.on parsing code, >> which aids in compatibility-checking tasks like >> iden

Re: [FFmpeg-devel] [PATCH] libavtuil: add version component accessor macros

2015-12-05 Thread Michael Niedermayer
On Sat, Dec 05, 2015 at 10:31:33AM -0800, Reynaldo H. Verdejo Pinochet wrote: > Pretty standard macros, these should help libav* > users avoid repeating ver.si.on parsing code, > which aids in compatibility-checking tasks like > identifying FFmpeg from Libav (_MICRO >= 100 check). > Something many

Re: [FFmpeg-devel] [PATCH] libavtuil: add version component accessor macros

2015-12-05 Thread Reynaldo H. Verdejo Pinochet
On 12/05/2015 10:31 AM, Reynaldo H. Verdejo Pinochet wrote: > Pretty standard macros, these should help libav* > users avoid repeating ver.si.on parsing code, > which aids in compatibility-checking tasks like > identifying FFmpeg from Libav (_MICRO >= 100 check). Actually ran into this while wor

[FFmpeg-devel] [PATCH] libavtuil: add version component accessor macros

2015-12-05 Thread Reynaldo H. Verdejo Pinochet
Pretty standard macros, these should help libav* users avoid repeating ver.si.on parsing code, which aids in compatibility-checking tasks like identifying FFmpeg from Libav (_MICRO >= 100 check). Something many are doing since we are not intercompatible anymore. Signed-off-by: Reynaldo H. Verdejo