From: KeonHo Kim Date: Wed, 29 May 2013 10:43:12 +0000 (+0900) Subject: Revert "Fix issue that timeline goes back to end when try to seek an arbitary positio... X-Git-Tag: submit/tizen_2.2/20130714.131554~183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13191d03697b1f24814db631f080a47022fa0ffb;p=framework%2Fweb%2Fwebkit-efl.git Revert "Fix issue that timeline goes back to end when try to seek an arbitary position after playback is finished." It causes below issues N_SE-39425 This reverts commit b5deb532fe92c00c8e7b506bc3dfabf6f0e5383c --- diff --git a/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp b/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp index 15e0b78..5616f4f 100755 --- a/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp +++ b/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp @@ -513,11 +513,8 @@ float MediaPlayerPrivateGStreamer::playbackPosition() const // what the Media element spec expects us to do. if (m_seeking) return m_seekTime; -#if !ENABLE(TIZEN_GSTREAMER_VIDEO) - // We don't set pipeline state to NULL when end of file is reached. if (m_mediaDuration) return m_mediaDuration; -#endif } float ret = 0.0f;