ipa: raspberrypi: Code refactoring to match style guidelines
Refactor all the source files in src/ipa/raspberrypi/ to match the recommended formatting guidelines for the libcamera project. The vast majority of changes in this commit comprise of switching from snake_case to CamelCase, and starting class member functions with a lower case character. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
b4a3eb6b98
commit
177df04d2b
63 changed files with 2093 additions and 2161 deletions
|
@ -34,21 +34,21 @@ class Controller
|
|||
{
|
||||
public:
|
||||
Controller();
|
||||
Controller(char const *json_filename);
|
||||
Controller(char const *jsonFilename);
|
||||
~Controller();
|
||||
Algorithm *CreateAlgorithm(char const *name);
|
||||
void Read(char const *filename);
|
||||
void Initialise();
|
||||
void SwitchMode(CameraMode const &camera_mode, Metadata *metadata);
|
||||
void Prepare(Metadata *image_metadata);
|
||||
void Process(StatisticsPtr stats, Metadata *image_metadata);
|
||||
Metadata &GetGlobalMetadata();
|
||||
Algorithm *GetAlgorithm(std::string const &name) const;
|
||||
Algorithm *createAlgorithm(char const *name);
|
||||
void read(char const *filename);
|
||||
void initialise();
|
||||
void switchMode(CameraMode const &cameraMode, Metadata *metadata);
|
||||
void prepare(Metadata *imageMetadata);
|
||||
void process(StatisticsPtr stats, Metadata *imageMetadata);
|
||||
Metadata &getGlobalMetadata();
|
||||
Algorithm *getAlgorithm(std::string const &name) const;
|
||||
|
||||
protected:
|
||||
Metadata global_metadata_;
|
||||
Metadata globalMetadata_;
|
||||
std::vector<AlgorithmPtr> algorithms_;
|
||||
bool switch_mode_called_;
|
||||
bool switchModeCalled_;
|
||||
};
|
||||
|
||||
} // namespace RPiController
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue