-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media: phytium-jpeg: Add a Phytium JPEG Engine driver
Phytium JPEG Engine is used to capture video data from external digital/analog sources and compress it to JPEG images. The driver adopts the interfaces provided by V4L2 framework. Signed-off-by: Li Guohui <[email protected]> Signed-off-by: Wang Min <[email protected]> Signed-off-by: Chen Baozi <[email protected]> Signed-off-by: Wang Yinfeng <[email protected]>
- Loading branch information
1 parent
fd600e1
commit fb2314d
Showing
7 changed files
with
1,659 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
comment "Phytium media platform drivers" | ||
|
||
config VIDEO_PHYTIUM_JPEG | ||
tristate "Phytium JPEG Encoder Engine driver" | ||
depends on V4L_PLATFORM_DRIVERS | ||
depends on VIDEO_DEV | ||
select VIDEOBUF2_DMA_CONTIG | ||
help | ||
Support for the Phytium JPEG Encoder Engine embedded | ||
in the Phytium SOCs. The engine can capture and | ||
compress video data from digital or analog sources. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
# | ||
phytium_jpeg-objs := phytium_jpeg_core.o | ||
|
||
obj-$(CONFIG_VIDEO_PHYTIUM_JPEG) += phytium_jpeg.o |
Oops, something went wrong.