mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/rtp/: Various class and caps fixes from Andre Magalhaes (andrunko)
Original commit message from CVS: * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps): * gst/rtp/gstrtpgsmparse.c: * gst/rtp/gstrtph263penc.c: * gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init), (gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer), (gst_rtpmp4venc_set_property): * gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer): Various class and caps fixes from Andre Magalhaes (andrunko)
This commit is contained in:
parent
9052406ced
commit
75a0669d5f
12 changed files with 28 additions and 11 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2005-09-30 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_setcaps):
|
||||
* gst/rtp/gstrtpgsmparse.c:
|
||||
* gst/rtp/gstrtph263penc.c:
|
||||
* gst/rtp/gstrtpmp4venc.c: (gst_rtpmp4venc_class_init),
|
||||
(gst_rtpmp4venc_parse_data), (gst_rtpmp4venc_handle_buffer),
|
||||
(gst_rtpmp4venc_set_property):
|
||||
* gst/rtp/gstrtpmpaenc.c: (gst_rtpmpaenc_handle_buffer):
|
||||
Various class and caps fixes from Andre Magalhaes (andrunko)
|
||||
|
||||
2005-09-29 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/level/level-example.c: (main):
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 7caeee4b949b4388927fec7fcf25f767429bde30
|
||||
Subproject commit 7d175466d3319fe55327608ea1f7a20619ab5634
|
|
@ -32,7 +32,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_amrenc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encode AMR audio into RTP packets (RFC 3267)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_amrenc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encode AMR audio into RTP packets (RFC 3267)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -52,7 +52,10 @@ static GstStaticPadTemplate gst_rtpgsmparse_sink_template =
|
|||
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("application/x-rtp")
|
||||
GST_STATIC_CAPS ("application/x-rtp, "
|
||||
"media = (string) \"audio\", "
|
||||
"payload = (int) [ 96, 255 ], "
|
||||
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
|
||||
);
|
||||
|
||||
|
||||
|
|
|
@ -52,7 +52,10 @@ static GstStaticPadTemplate gst_rtpgsmparse_sink_template =
|
|||
GST_STATIC_PAD_TEMPLATE ("sink",
|
||||
GST_PAD_SINK,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS ("application/x-rtp")
|
||||
GST_STATIC_CAPS ("application/x-rtp, "
|
||||
"media = (string) \"audio\", "
|
||||
"payload = (int) [ 96, 255 ], "
|
||||
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
|
||||
);
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_h263penc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encodes H263+ video in RTP packets (RFC 2429)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_h263penc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encodes H263+ video in RTP packets (RFC 2429)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_mp4venc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encode MPEG4 video as RTP packets (RFC 3016)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_mp4venc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encode MPEG4 video as RTP packets (RFC 3016)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_mpaenc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encode MPEG audio as RTP packets (RFC 2038)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_mpaenc_details = {
|
||||
"RTP packet parser",
|
||||
"Codec/Parser/Network",
|
||||
"Codec/Encoder/Network",
|
||||
"Encode MPEG audio as RTP packets (RFC 2038)",
|
||||
"Wim Taymans <wim@fluendo.com>"
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue