Ejemplo n.º 1
0
 public int Add(string key, string value, AVDictWriteFlags flags)
 {
     fixed(AVDictionary **pp = &pDictionary)
     {
         return(ffmpeg.av_dict_set(pp, key, value, (int)flags).ThrowIfError());
     }
 }
Ejemplo n.º 2
0
 public int Add(KeyValuePair <string, string> item, AVDictWriteFlags flags)
 {
     return(Add(item.Key, item.Value, flags));
 }