mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
parent
27025d0ebd
commit
49f1373f1b
1 changed files with 3 additions and 1 deletions
|
@ -245,7 +245,8 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
||||||
GST_STATIC_CAPS ("video/x-h264, "
|
GST_STATIC_CAPS ("video/x-h264, "
|
||||||
"framerate = (fraction) [0/1, MAX], "
|
"framerate = (fraction) [0/1, MAX], "
|
||||||
"width = (int) [ 1, MAX ], " "height = (int) [ 1, MAX ], "
|
"width = (int) [ 1, MAX ], " "height = (int) [ 1, MAX ], "
|
||||||
"stream-format = (string) { byte-stream, avc }")
|
"stream-format = (string) { byte-stream, avc }, "
|
||||||
|
"alignment = (string) { au }")
|
||||||
);
|
);
|
||||||
|
|
||||||
static void gst_x264_enc_finalize (GObject * object);
|
static void gst_x264_enc_finalize (GObject * object);
|
||||||
|
@ -906,6 +907,7 @@ gst_x264_enc_set_src_caps (GstX264Enc * encoder, GstPad * pad, GstCaps * caps)
|
||||||
gst_structure_set (structure, "stream-format", G_TYPE_STRING, "byte-stream",
|
gst_structure_set (structure, "stream-format", G_TYPE_STRING, "byte-stream",
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
gst_structure_set (structure, "alignment", G_TYPE_STRING, "au", NULL);
|
||||||
|
|
||||||
res = gst_pad_set_caps (pad, outcaps);
|
res = gst_pad_set_caps (pad, outcaps);
|
||||||
gst_caps_unref (outcaps);
|
gst_caps_unref (outcaps);
|
||||||
|
|
Loading…
Reference in a new issue