[FFmpeg-cvslog] ffmpeg: add ui64 type to SpecifierOpt

pkviet git at videolan.org
Mon Nov 20 03:53:01 EET 2017


ffmpeg | branch: master | pkviet <pkv.stream at gmail.com> | Sat Nov 18 22:19:46 2017 +0100| [77b6e3ee2787a82f27bee84130075b9e56d10bb7] | committer: Michael Niedermayer

ffmpeg: add ui64 type to SpecifierOpt

 Adds ui64 (uint64_t) as a possible type for SpecifierOpt. This enables
 use of uint64_t options with SpecifierOpt such as channel_layout
 when expressed as a 64 bit channel mask.

Signed-off-by: pkviet <pkv.stream at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=77b6e3ee2787a82f27bee84130075b9e56d10bb7
---

 fftools/cmdutils.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fftools/cmdutils.h b/fftools/cmdutils.h
index 2997ee37b5..fa2b2551b2 100644
--- a/fftools/cmdutils.h
+++ b/fftools/cmdutils.h
@@ -155,6 +155,7 @@ typedef struct SpecifierOpt {
         uint8_t *str;
         int        i;
         int64_t  i64;
+        uint64_t ui64;
         float      f;
         double   dbl;
     } u;



More information about the ffmpeg-cvslog mailing list