diff options
author | Julien Moutte <julien@moutte.net> | 2007-08-27 14:56:05 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2007-08-27 14:56:05 +0000 |
commit | 3b7aec9e9e16f1d29349603d07e006d3a7c678fb (patch) | |
tree | 607907f95d0371a5ffe7ee64b51885ba0ff1e8c1 /gst/flv | |
parent | 593b4c1af00d5af5377e5aa8d7ded7a4bed06ba1 (diff) | |
download | gstreamer-plugins-bad-3b7aec9e9e16f1d29349603d07e006d3a7c678fb.tar.gz |
gst/flv/gstflvdemux.c: Make sure we initialize the seek result.
Original commit message from CVS:
2007-08-27 Julien MOUTTE <julien@moutte.net>
* gst/flv/gstflvdemux.c: (gst_flv_demux_handle_seek_pull):
Make sure we initialize the seek result.
Diffstat (limited to 'gst/flv')
-rw-r--r-- | gst/flv/gstflvdemux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/flv/gstflvdemux.c b/gst/flv/gstflvdemux.c index 1c51840cf..16250d1b9 100644 --- a/gst/flv/gstflvdemux.c +++ b/gst/flv/gstflvdemux.c @@ -719,6 +719,7 @@ gst_flv_demux_handle_seek_pull (GstFLVDemux * demux, GstEvent * event) } else { /* or parse a tag */ demux->state = FLV_STATE_TAG_TYPE; } + ret = TRUE; } else { ret = TRUE; } |