* [FFmpeg-devel] [PATCH] avcodec/libsvtav1: pass pict_type to library
@ 2022-04-25 22:37 Christopher Degawa
2022-04-25 22:45 ` James Almer
2022-04-25 22:54 ` [FFmpeg-devel] [PATCH v2] " Christopher Degawa
0 siblings, 2 replies; 4+ messages in thread
From: Christopher Degawa @ 2022-04-25 22:37 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Christopher Degawa
match the behavior of SvtAv1EncApp to ensure pic_type is always set
before passing it to the library.
The other options for pic_type aren't currently used inside the library,
so they aren't introduced in this patch.
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
---
libavcodec/libsvtav1.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c
index 2e3d96ce37..eafb762a7d 100644
--- a/libavcodec/libsvtav1.c
+++ b/libavcodec/libsvtav1.c
@@ -404,6 +404,11 @@ static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
headerPtr->p_app_private = NULL;
headerPtr->pts = frame->pts;
+ switch (frame->pict_type) {
+ case AV_PICTURE_TYPE_I: headerPtr->pic_type = EB_AV1_KEY_PICTURE; break;
+ default: headerPtr->pic_type = EB_AV1_INVALID_PICTURE; break; // Actually means auto, or default.
+ }
+
svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr);
return 0;
--
2.35.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avcodec/libsvtav1: pass pict_type to library
2022-04-25 22:37 [FFmpeg-devel] [PATCH] avcodec/libsvtav1: pass pict_type to library Christopher Degawa
@ 2022-04-25 22:45 ` James Almer
2022-04-25 22:54 ` [FFmpeg-devel] [PATCH v2] " Christopher Degawa
1 sibling, 0 replies; 4+ messages in thread
From: James Almer @ 2022-04-25 22:45 UTC (permalink / raw)
To: ffmpeg-devel
On 4/25/2022 7:37 PM, Christopher Degawa wrote:
> match the behavior of SvtAv1EncApp to ensure pic_type is always set
> before passing it to the library.
>
> The other options for pic_type aren't currently used inside the library,
> so they aren't introduced in this patch.
>
> Signed-off-by: Christopher Degawa <ccom@randomderp.com>
> ---
> libavcodec/libsvtav1.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c
> index 2e3d96ce37..eafb762a7d 100644
> --- a/libavcodec/libsvtav1.c
> +++ b/libavcodec/libsvtav1.c
> @@ -404,6 +404,11 @@ static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
> headerPtr->p_app_private = NULL;
> headerPtr->pts = frame->pts;
>
> + switch (frame->pict_type) {
> + case AV_PICTURE_TYPE_I: headerPtr->pic_type = EB_AV1_KEY_PICTURE; break;
> + default: headerPtr->pic_type = EB_AV1_INVALID_PICTURE; break; // Actually means auto, or default.
> + }
Please align these vertically if you're not using separate lines.
> +
> svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr);
>
> return 0;
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* [FFmpeg-devel] [PATCH v2] avcodec/libsvtav1: pass pict_type to library
2022-04-25 22:37 [FFmpeg-devel] [PATCH] avcodec/libsvtav1: pass pict_type to library Christopher Degawa
2022-04-25 22:45 ` James Almer
@ 2022-04-25 22:54 ` Christopher Degawa
2022-04-25 23:05 ` James Almer
1 sibling, 1 reply; 4+ messages in thread
From: Christopher Degawa @ 2022-04-25 22:54 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Christopher Degawa
match the behavior of SvtAv1EncApp to ensure pic_type is always set
before passing it to the library.
The other options for pic_type aren't currently used inside the library,
so they aren't introduced in this patch.
Signed-off-by: Christopher Degawa <ccom@randomderp.com>
---
libavcodec/libsvtav1.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c
index 2e3d96ce37..088b9bab02 100644
--- a/libavcodec/libsvtav1.c
+++ b/libavcodec/libsvtav1.c
@@ -404,6 +404,16 @@ static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
headerPtr->p_app_private = NULL;
headerPtr->pts = frame->pts;
+ switch (frame->pict_type) {
+ case AV_PICTURE_TYPE_I:
+ headerPtr->pic_type = EB_AV1_KEY_PICTURE;
+ break;
+ default:
+ // Actually means auto, or default.
+ headerPtr->pic_type = EB_AV1_INVALID_PICTURE;
+ break;
+ }
+
svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr);
return 0;
--
2.35.1
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2] avcodec/libsvtav1: pass pict_type to library
2022-04-25 22:54 ` [FFmpeg-devel] [PATCH v2] " Christopher Degawa
@ 2022-04-25 23:05 ` James Almer
0 siblings, 0 replies; 4+ messages in thread
From: James Almer @ 2022-04-25 23:05 UTC (permalink / raw)
To: ffmpeg-devel
On 4/25/2022 7:54 PM, Christopher Degawa wrote:
> match the behavior of SvtAv1EncApp to ensure pic_type is always set
> before passing it to the library.
>
> The other options for pic_type aren't currently used inside the library,
> so they aren't introduced in this patch.
>
> Signed-off-by: Christopher Degawa <ccom@randomderp.com>
> ---
> libavcodec/libsvtav1.c | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c
> index 2e3d96ce37..088b9bab02 100644
> --- a/libavcodec/libsvtav1.c
> +++ b/libavcodec/libsvtav1.c
> @@ -404,6 +404,16 @@ static int eb_send_frame(AVCodecContext *avctx, const AVFrame *frame)
> headerPtr->p_app_private = NULL;
> headerPtr->pts = frame->pts;
>
> + switch (frame->pict_type) {
> + case AV_PICTURE_TYPE_I:
> + headerPtr->pic_type = EB_AV1_KEY_PICTURE;
> + break;
> + default:
> + // Actually means auto, or default.
> + headerPtr->pic_type = EB_AV1_INVALID_PICTURE;
> + break;
> + }
> +
> svt_av1_enc_send_picture(svt_enc->svt_handle, headerPtr);
>
> return 0;
Should be ok.
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-04-25 23:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-25 22:37 [FFmpeg-devel] [PATCH] avcodec/libsvtav1: pass pict_type to library Christopher Degawa
2022-04-25 22:45 ` James Almer
2022-04-25 22:54 ` [FFmpeg-devel] [PATCH v2] " Christopher Degawa
2022-04-25 23:05 ` James Almer
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git