mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
dcfc49c40b
Original commit message from CVS: * ext/vorbis/Makefile.am: * ext/vorbis/README: * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats), (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory), (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init), (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src), (gst_oggvorbisenc_convert_sink), (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query), (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value), (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata), (get_constraints_string), (update_start_message), (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page), (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property), (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state): * ext/vorbis/oggvorbisenc.h: * ext/vorbis/vorbis.c: (plugin_init): * ext/vorbis/vorbisenc.c: (vorbis_caps_factory), (raw_caps_factory), (gst_vorbisenc_class_init), (gst_vorbisenc_init), (gst_vorbisenc_setup), (gst_vorbisenc_push_packet), (gst_vorbisenc_chain), (gst_vorbisenc_get_property), (gst_vorbisenc_set_property): * ext/vorbis/vorbisenc.h: Added a raw vorbis encoder to be used with the oggmuxer. We still need the old encoder for some gnome applications, read the README to find out how that works. The raw encoder is called "rawvorbisenc" until 0.9.
16 lines
680 B
Text
16 lines
680 B
Text
oggvorbisenc : encodes to vorbis inside an ogg stream. This is not the
|
|
GStreamer way of doing things and should be removed for
|
|
0.9. It is still called "vorbisenc" for backward compatibility
|
|
reasons. It also takes integer audio as input.
|
|
vorbisenc : Encodes to a raw vorbis stream and should be used together
|
|
with an ogg muxer such as "oggmux" it is called "rawvorbisenc".
|
|
It also takes raw float samples as input.
|
|
|
|
TODO for 0.9:
|
|
|
|
- remove oggvorbisenc.c and oggvorbisenc.h
|
|
- remove references to oggvorbisenc.[ch] in the Makefile and in vorbis.c
|
|
- remove the element vorbisenc.
|
|
- rename the element rawvorbisenc to vorbisenc.
|
|
|
|
|