mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 04:45:36 +00:00
gst/rtp/: Small updates, RFC reference to payload encoders.
Original commit message from CVS: * gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init), (gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain): * gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_class_init), (gst_rtpamrenc_init), (gst_rtpamrenc_chain): * gst/rtp/gstrtph263penc.c: (gst_rtph263penc_class_init), (gst_rtph263penc_flush), (gst_rtph263penc_chain): Small updates, RFC reference to payload encoders.
This commit is contained in:
parent
a779a27fc1
commit
dcc3732178
5 changed files with 38 additions and 0 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2005-08-23 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* gst/rtp/gstrtpamrdec.c: (gst_rtpamrdec_init),
|
||||
(gst_rtpamrdec_sink_setcaps), (gst_rtpamrdec_chain):
|
||||
* gst/rtp/gstrtpamrenc.c: (gst_rtpamrenc_class_init),
|
||||
(gst_rtpamrenc_init), (gst_rtpamrenc_chain):
|
||||
* gst/rtp/gstrtph263penc.c: (gst_rtph263penc_class_init),
|
||||
(gst_rtph263penc_flush), (gst_rtph263penc_chain):
|
||||
Small updates, RFC reference to payload encoders.
|
||||
|
||||
2005-08-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
#include <string.h>
|
||||
#include "gstrtpamrdec.h"
|
||||
|
||||
/* references:
|
||||
*
|
||||
* RFC 3267 - Real-Time Transport Protocol (RTP) Payload Format and File Storage Format
|
||||
* for the Adaptive Multi-Rate (AMR) and Adaptive Multi-Rate Wideband (AMR-WB) Audio
|
||||
* Codecs.
|
||||
*/
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_amrdec_details = {
|
||||
"RTP packet parser",
|
||||
|
|
|
@ -21,6 +21,13 @@
|
|||
#include <string.h>
|
||||
#include "gstrtpamrdec.h"
|
||||
|
||||
/* references:
|
||||
*
|
||||
* RFC 3267 - Real-Time Transport Protocol (RTP) Payload Format and File Storage Format
|
||||
* for the Adaptive Multi-Rate (AMR) and Adaptive Multi-Rate Wideband (AMR-WB) Audio
|
||||
* Codecs.
|
||||
*/
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_amrdec_details = {
|
||||
"RTP packet parser",
|
||||
|
|
|
@ -22,6 +22,13 @@
|
|||
|
||||
#include "gstrtpamrenc.h"
|
||||
|
||||
/* references:
|
||||
*
|
||||
* RFC 3267 - Real-Time Transport Protocol (RTP) Payload Format and File
|
||||
* Storage Format for the Adaptive Multi-Rate (AMR) and Adaptive
|
||||
* Multi-Rate Wideband (AMR-WB) Audio Codecs.
|
||||
*/
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_amrenc_details = {
|
||||
"RTP packet parser",
|
||||
|
|
|
@ -22,6 +22,13 @@
|
|||
|
||||
#include "gstrtpamrenc.h"
|
||||
|
||||
/* references:
|
||||
*
|
||||
* RFC 3267 - Real-Time Transport Protocol (RTP) Payload Format and File
|
||||
* Storage Format for the Adaptive Multi-Rate (AMR) and Adaptive
|
||||
* Multi-Rate Wideband (AMR-WB) Audio Codecs.
|
||||
*/
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails gst_rtp_amrenc_details = {
|
||||
"RTP packet parser",
|
||||
|
|
Loading…
Reference in a new issue