diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-05-20 20:06:09 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-05-20 20:06:09 +0200 |
commit | d0f09279edc40690bb0a0cbfa45ed88df32010ec (patch) | |
tree | cd26432037a93086ca66b51d922489082d518a57 | |
parent | d3c9d84fdff9e411e345ce41508f8ed6813760fb (diff) |
vp8enc: Write GStreamer element and version in the vorbiscomment vendor string
-rw-r--r-- | ext/vp8/gstvp8enc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/vp8/gstvp8enc.c b/ext/vp8/gstvp8enc.c index 0d6224bad..ba677a1c2 100644 --- a/ext/vp8/gstvp8enc.c +++ b/ext/vp8/gstvp8enc.c @@ -463,7 +463,8 @@ gst_vp8_enc_get_caps (GstBaseVideoEncoder * base_video_encoder) if (iface_tags) { vorbiscomment = gst_tag_list_to_vorbiscomment_buffer ((iface_tags) ? iface_tags : tags, - (const guint8 *) "OVP80\2 ", 7, NULL); + (const guint8 *) "OVP80\2 ", 7, + "Encoded with GStreamer vp8enc " PACKAGE_VERSION); GST_BUFFER_FLAG_SET (vorbiscomment, GST_BUFFER_FLAG_IN_CAPS); |