diff options
author | David Schleef <ds@schleef.org> | 2010-10-10 15:22:04 -0700 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2010-10-12 16:06:57 +0200 |
commit | 64dfad46f29799f99cfe10178556c361bd9918ff (patch) | |
tree | e4c5b605945096f8d8f6042445d7c19b81583046 | |
parent | 5ae2f04856c2b138df35647cf00a49a38261c730 (diff) |
oggdemux: change checks from is_skeleton to is_sparse
-rw-r--r-- | ext/ogg/gstoggdemux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index 3d658b482..836ff8c14 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -720,7 +720,7 @@ gst_ogg_demux_collect_start_time (GstOggDemux * ogg, GstOggChain * chain) for (i = 0; i < chain->streams->len; i++) { GstOggPad *pad = g_array_index (chain->streams, GstOggPad *, i); - if (pad->map.is_skeleton) + if (pad->map.is_sparse) continue; /* can do this if the pad start time is not defined */ @@ -2747,7 +2747,7 @@ gst_ogg_demux_read_chain (GstOggDemux * ogg, GstOggChain ** res_chain) } } /* the timestamp will be filled in when we submit the pages */ - if (!pad->map.is_skeleton) + if (!pad->map.is_sparse) done &= (pad->start_time != GST_CLOCK_TIME_NONE); GST_LOG_OBJECT (ogg, "done %08lx now %d", pad->map.serialno, done); @@ -2821,7 +2821,7 @@ gst_ogg_demux_read_end_chain (GstOggDemux * ogg, GstOggChain * chain) for (i = 0; i < chain->streams->len; i++) { GstOggPad *pad = g_array_index (chain->streams, GstOggPad *, i); - if (pad->map.is_skeleton) + if (pad->map.is_sparse) continue; if (pad->map.serialno == ogg_page_serialno (&og)) { |