fixup! [MM] Use ESPP for media rendering 22/290122/2
authorVenugopal S M <sm.venugopal@samsung.com>
Mon, 20 Mar 2023 09:38:55 +0000 (15:08 +0530)
committerBot Blink <blinkbot@samsung.com>
Mon, 20 Mar 2023 13:03:13 +0000 (13:03 +0000)
Removed duplicate condition.

Change-Id: Iebd55a9c63471b9d56c0589a8776a3df2a582b5b
Signed-off-by: Venugopal S M <sm.venugopal@samsung.com>
tizen_src/chromium_impl/media/filters/esplusplayer_util.cc

index d425aba..c85efb5 100644 (file)
@@ -168,8 +168,6 @@ PipelineStatus GetPipelineError(const esplusplayer_error_type error) {
       error == ESPLUSPLAYER_ERROR_TYPE_NOT_SUPPORTED_FORMAT ||
       error == ESPLUSPLAYER_ERROR_TYPE_NOT_SUPPORTED_FILE)
     return DECODER_ERROR_NOT_SUPPORTED;
-  else if (error == ESPLUSPLAYER_ERROR_TYPE_CONNECTION_FAILED)
-    return PIPELINE_ERROR_READ;
   else if (error == ESPLUSPLAYER_ERROR_TYPE_INVALID_STATE)
     return PIPELINE_ERROR_INVALID_STATE;
   else if (error == ESPLUSPLAYER_ERROR_TYPE_OUT_OF_MEMORY)