mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
gst/asfdemux/gstasfdemux.c: Fix typo. Closes #347029.
Original commit message from CVS: Patch by: Grzegorz Lukasik <hauserx at gmail dot com> * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_video_stream), (gst_asf_demux_process_segment): Fix typo. Closes #347029.
This commit is contained in:
parent
05342dd632
commit
4c6764332a
2 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-07-09 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
Patch by: Grzegorz Lukasik <hauserx at gmail dot com>
|
||||
|
||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_video_stream),
|
||||
(gst_asf_demux_process_segment):
|
||||
Fix typo. Closes #347029.
|
||||
|
||||
2006-07-08 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
|
||||
|
|
|
@ -917,7 +917,7 @@ gst_asf_demux_add_video_stream (GstASFDemux * demux,
|
|||
gchar *codec_name = NULL;
|
||||
gint size_left = video->size - 40;
|
||||
|
||||
/* Create the audio pad */
|
||||
/* Create the video pad */
|
||||
name = g_strdup_printf ("video_%02d", demux->num_video_streams);
|
||||
src_pad = gst_pad_new_from_template (videosrctempl, name);
|
||||
g_free (name);
|
||||
|
@ -2152,7 +2152,7 @@ gst_asf_demux_process_segment (GstASFDemux * demux,
|
|||
|
||||
time_start = segment_info.frag_offset;
|
||||
segment_info.frag_offset = 0;
|
||||
segment_info.frag_timestamp = demux->timestamp;
|
||||
segment_info.frag_timestamp = time_start;
|
||||
}
|
||||
|
||||
GST_DEBUG ("multiple = %u, compressed = %u",
|
||||
|
|
Loading…
Reference in a new issue