-
Notifications
You must be signed in to change notification settings - Fork 8k
stm32: venc: Enable driver in sample #96810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
erwango
wants to merge
21
commits into
zephyrproject-rtos:main
Choose a base branch
from
erwango:venc_full
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or 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
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
498c109
to
480069b
Compare
Phy modes declarations where not correctly placed for use with N6 series. Signed-off-by: Erwan Gouriou <[email protected]>
Compilers may not like that attributes are provides in actual and extern definitions of symbols. Removing them from extern definitions Signed-off-by: Erwan Gouriou <[email protected]>
Rather than symbol coming from the HAL, use zephyr `__aligned()` macro. Signed-off-by: Erwan Gouriou <[email protected]>
Twister netif:eth was missing on stm32n6 based board and hence they were not build against net samples. Fix this. Additionally, on dk, fix `pwm` to respect alphabetical order. Signed-off-by: Erwan Gouriou <[email protected]>
Add sizeimage field to video_format structure. This is the maximum size in bytes required for buffer data. Signed-off-by: Hugues Fruchet <[email protected]>
Pull hal_stm32 vc8000nanoe library. Signed-off-by: Hugues Fruchet <[email protected]>
Addition of description for the STM32 Video encoder (VENC). Signed-off-by: Hugues Fruchet <[email protected]>
The STM32 video encoder (VENC) peripheral is a hardware accelerator allowing to compress RGB/YUV frames into H264 video bitstream chunks. Signed-off-by: Hugues Fruchet <[email protected]>
Add node describing the venc in stm32n6.dtsi Signed-off-by: Hugues Fruchet <[email protected]>
Add the zephyr,videoenc chosen node documentation for hardware video encoder support such as H264 or MJPEG video encoder. Signed-off-by: Hugues Fruchet <[email protected]>
Sync with video capture sample. Signed-off-by: Hugues Fruchet <[email protected]>
Allow to configure the number of allocated capture frames. This allows to make tradeof between framerate versus memory usage. 2 buffers allows to capture while sending data (optimal framerate). 1 buffer allows to reduce memory usage but capture framerate is lower. Signed-off-by: Hugues Fruchet <[email protected]>
Add video compression support to lowerize network bandwidth. To visualise camera content on host PC, use GStreamer command line: $> gst-launch-1.0 tcpclientsrc host=<board ip address> port=5000 ! decodebin ! autovideosink sync=false Signed-off-by: Hugues Fruchet <[email protected]>
Add configuration files for the stm32n6570_dk board. This enables streaming over ethernet of the images captured by MB1854 camera module compressed in 1920x1080 H264 video bitstream. Signed-off-by: Hugues Fruchet <[email protected]>
root@stm32mp2:~# gst-launch-1.0 tcpclientsrc host=192.168.0.4 port=5000 ! queue ! decodebin ! queue ! fpsdisplaysink sync=false video-sink="waylandsink fullscreen=true"
Twister netif:eth was missing on stm32n6 based board and hence they were not build against net samples. Fix this. Signed-off-by: Erwan Gouriou <[email protected]>
Phy modes declarations where not correctly placed for use with N6 series. Signed-off-by: Erwan Gouriou <[email protected]>
Add video compression support to lowerize network bandwidth. To visualise camera content on host PC, use GStreamer command line: $> gst-launch-1.0 tcpclientsrc host=<board ip address> port=5000 ! decodebin ! autovideosink sync=false Signed-off-by: Hugues Fruchet <[email protected]>
Add YUV420 semi-planar support (NV12). This is the video encoder prefered pixel format. Signed-off-by: Hugues Fruchet <[email protected]>
Required to build VIDEO_STM32_VENC. Signed-off-by: Erwan Gouriou <[email protected]>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
DNM (manifest)
This PR should not be merged (controlled by action-manifest)
manifest
manifest-hal_stm32
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Aim is to get #92884 and #95862 together and build them