mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
svtjpegxsenc: put "codestream-length" into caps
So consumers can calculate the maximum bitrate (brat) from that for various descriptors, in combination with the framerate. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7430>
This commit is contained in:
parent
ae1cd3d528
commit
cdea025b5b
1 changed files with 6 additions and 3 deletions
|
@ -544,9 +544,12 @@ gst_svt_jpeg_xs_enc_set_format (GstVideoEncoder * encoder,
|
|||
|
||||
src_caps = gst_caps_make_writable (src_caps);
|
||||
|
||||
// ToDo: might want to add more things to the caps, such as depth etc.
|
||||
gst_caps_set_simple (src_caps, "sampling", G_TYPE_STRING, sampling,
|
||||
"depth", G_TYPE_INT, enc->input_bit_depth, NULL);
|
||||
// ToDo: add more things to the caps?
|
||||
gst_caps_set_simple (src_caps, //
|
||||
"sampling", G_TYPE_STRING, sampling, //
|
||||
"depth", G_TYPE_INT, enc->input_bit_depth, //
|
||||
"codestream-length", G_TYPE_INT, jxsenc->bytes_per_frame, //
|
||||
NULL);
|
||||
|
||||
GstVideoCodecState *output_state =
|
||||
gst_video_encoder_set_output_state (GST_VIDEO_ENCODER (encoder), src_caps,
|
||||
|
|
Loading…
Reference in a new issue