adaptivedemux: fix typos

This commit is contained in:
Reynaldo H. Verdejo Pinochet 2017-09-26 16:46:10 -07:00
parent f793e04db0
commit 88fcf303c5
2 changed files with 3 additions and 3 deletions

View file

@ -31,7 +31,7 @@
* *
* Adaptive formats (HLS, DASH, MSS) are composed of a manifest file and * Adaptive formats (HLS, DASH, MSS) are composed of a manifest file and
* a set of fragments. The manifest describes the available media and * a set of fragments. The manifest describes the available media and
* the sequence of fragments to use. Each fragments contains a small * the sequence of fragments to use. Each fragment contains a small
* part of the media (typically only a few seconds). It is possible for * part of the media (typically only a few seconds). It is possible for
* the manifest to have the same media available in different configurations * the manifest to have the same media available in different configurations
* (bitrates for example) so that the client can select the one that * (bitrates for example) so that the client can select the one that

View file

@ -352,7 +352,7 @@ struct _GstAdaptiveDemuxClass
* need_another_chunk: * need_another_chunk:
* @stream: #GstAdaptiveDemuxStream * @stream: #GstAdaptiveDemuxStream
* *
* If chunked downloading is used (chunk_size != 0) this is called once as * If chunked downloading is used (chunk_size != 0) this is called once a
* chunk is finished to decide whether more has to be downloaded or not. * chunk is finished to decide whether more has to be downloaded or not.
* May update chunk_size to a different value * May update chunk_size to a different value
*/ */
@ -391,7 +391,7 @@ struct _GstAdaptiveDemuxClass
* to download the fragment. This is useful to avoid downloading a fragment that * to download the fragment. This is useful to avoid downloading a fragment that
* isn't available yet. * isn't available yet.
* *
* Returns: The waiting time in microsseconds * Returns: The waiting time in microseconds
*/ */
gint64 (*stream_get_fragment_waiting_time) (GstAdaptiveDemuxStream * stream); gint64 (*stream_get_fragment_waiting_time) (GstAdaptiveDemuxStream * stream);