mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-17 01:15:06 +03:00
android: jpeg: Drop "libcamera::" namespace from functions' arguments
Drop "libcamera::" from functions' arguments for *.cpp files as they have using namespace libcamera; directive in the beginning. Signed-off-by: Umang Jain <email@uajain.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
c77d894a8b
commit
f9e7f55f3b
2 changed files with 6 additions and 7 deletions
|
@ -104,7 +104,7 @@ int EncoderLibJpeg::configure(const StreamConfiguration &cfg)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void EncoderLibJpeg::compressRGB(const libcamera::MappedBuffer *frame)
|
||||
void EncoderLibJpeg::compressRGB(const MappedBuffer *frame)
|
||||
{
|
||||
unsigned char *src = static_cast<unsigned char *>(frame->maps()[0].data());
|
||||
/* \todo Stride information should come from buffer configuration. */
|
||||
|
@ -122,7 +122,7 @@ void EncoderLibJpeg::compressRGB(const libcamera::MappedBuffer *frame)
|
|||
* Compress the incoming buffer from a supported NV format.
|
||||
* This naively unpacks the semi-planar NV12 to a YUV888 format for libjpeg.
|
||||
*/
|
||||
void EncoderLibJpeg::compressNV(const libcamera::MappedBuffer *frame)
|
||||
void EncoderLibJpeg::compressNV(const MappedBuffer *frame)
|
||||
{
|
||||
uint8_t tmprowbuf[compress_.image_width * 3];
|
||||
|
||||
|
@ -179,9 +179,8 @@ void EncoderLibJpeg::compressNV(const libcamera::MappedBuffer *frame)
|
|||
}
|
||||
}
|
||||
|
||||
int EncoderLibJpeg::encode(const FrameBuffer &source,
|
||||
libcamera::Span<uint8_t> dest,
|
||||
const libcamera::Span<const uint8_t> &exifData)
|
||||
int EncoderLibJpeg::encode(const FrameBuffer &source, Span<uint8_t> dest,
|
||||
const Span<const uint8_t> &exifData)
|
||||
{
|
||||
MappedFrameBuffer frame(&source, PROT_READ);
|
||||
if (!frame.isValid()) {
|
||||
|
|
|
@ -44,8 +44,8 @@ int PostProcessorJpeg::configure(const StreamConfiguration &inCfg,
|
|||
return encoder_->configure(inCfg);
|
||||
}
|
||||
|
||||
int PostProcessorJpeg::process(const libcamera::FrameBuffer &source,
|
||||
libcamera::Span<uint8_t> destination,
|
||||
int PostProcessorJpeg::process(const FrameBuffer &source,
|
||||
Span<uint8_t> destination,
|
||||
CameraMetadata *metadata)
|
||||
{
|
||||
if (!encoder_)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue