spelling: fix reset

This commit is contained in:
Marc Leeman 2024-04-30 12:53:52 +02:00
parent d24ab17244
commit c6caacea28
4 changed files with 8 additions and 8 deletions

View file

@ -1454,7 +1454,7 @@ nle_composition_reset (NleComposition * comp)
_empty_bin (GST_BIN_CAST (priv->current_bin));
GST_DEBUG_OBJECT (comp, "Composition now resetted");
GST_DEBUG_OBJECT (comp, "Composition now reset");
}
static GstPadProbeReturn

View file

@ -3733,7 +3733,7 @@ gst_ts_demux_handle_packet (GstTSDemux * demux, TSDemuxStream * stream,
res = gst_ts_demux_push_pending_data (demux, stream, NULL);
if (res != GST_FLOW_REWINDING) {
/* Tell the data collecting to expect this header. We don't do this when
* rewinding since the states will have been resetted accordingly */
* rewinding since the states will have been reset accordingly */
stream->state = PENDING_PACKET_HEADER;
}
}

View file

@ -82,7 +82,7 @@ G_BEGIN_DECLS
*/
#define GST_ADAPTIVE_DEMUX_FLOW_RESTART_FRAGMENT GST_FLOW_CUSTOM_SUCCESS_2
/* The live stream has lost synchronization and the demuxer needs to be resetted */
/* The live stream has lost synchronization and the demuxer needs to be reset */
#define GST_ADAPTIVE_DEMUX_FLOW_LOST_SYNC GST_FLOW_CUSTOM_SUCCESS_2 + 1
/* The stream sub-class is busy and can't supply information for
@ -209,20 +209,20 @@ struct _GstAdaptiveDemuxPeriod
gint ref_count;
GstAdaptiveDemux *demux;
/* TRUE if the streams of this period were prepared and can be started */
gboolean prepared;
/* TRUE if there is another period after this one */
gboolean has_next_period;
/* An increasing unique identifier for the period.
*
* Note: unrelated to dash period id (which can be identical across
* periods) */
guint period_num;
/* The list of GstAdaptiveDemux2Stream (ref hold) */
GList *streams;
@ -264,7 +264,7 @@ struct _GstAdaptiveDemux
/* Period used for input */
GstAdaptiveDemuxPeriod *input_period;
GstSegment segment;
gdouble instant_rate_multiplier; /* 1.0 by default, or from instant-rate seek */

View file

@ -1296,7 +1296,7 @@ gst_hls_demux_check_variant_playlist_loaded (GstHLSDemux * demux)
demux->pending_variant ? demux->pending_variant : demux->current_variant;
GstHLSDemuxStream *stream = demux->main_stream;
/* The demuxer has been resetted in the meantime */
/* The demuxer has been reset in the meantime */
if (target_variant == NULL)
return GST_FLOW_FLUSHING;