日志方法收集

Posted by shensunbo on January 15, 2024
  1. vidc 日志记录方法
    1
    2
    3
    4
    5
    6
    
    #define RETURN_BOOL_ON_ERROR(rc, msg, ...)   \
     if (true != (rc) )                       \
     {                                       \
        MM_ERROR_MSG(msg, ## __VA_ARGS__);   \
        return (rc);                         \
     }