libeplayer3: minimize debug output

Origin commit data
------------------
Branch: master
Commit: 2e8a96a309
Author: martii <m4rtii@gmx.de>
Date: 2014-04-18 (Fri, 18 Apr 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2014-04-18 16:20:07 +02:00
parent 1a60f50ef3
commit 4f4c99e51a

View File

@@ -156,7 +156,7 @@ bool Output::Stop()
OpenThreads::ScopedLock<OpenThreads::Mutex> a_lock(audioMutex); OpenThreads::ScopedLock<OpenThreads::Mutex> a_lock(audioMutex);
if (videofd > -1) { if (videofd > -1) {
dioctl(videofd, VIDEO_CLEAR_BUFFER, NULL); ioctl(videofd, VIDEO_CLEAR_BUFFER, NULL);
/* set back to normal speed (end trickmodes) */ /* set back to normal speed (end trickmodes) */
dioctl(videofd, VIDEO_SET_SPEED, DVB_SPEED_NORMAL_PLAY); dioctl(videofd, VIDEO_SET_SPEED, DVB_SPEED_NORMAL_PLAY);
if (dioctl(videofd, VIDEO_STOP, NULL)) if (dioctl(videofd, VIDEO_STOP, NULL))
@@ -164,7 +164,7 @@ bool Output::Stop()
} }
if (audiofd > -1) { if (audiofd > -1) {
dioctl(audiofd, AUDIO_CLEAR_BUFFER, NULL); ioctl(audiofd, AUDIO_CLEAR_BUFFER, NULL);
/* set back to normal speed (end trickmodes) */ /* set back to normal speed (end trickmodes) */
dioctl(audiofd, AUDIO_SET_SPEED, DVB_SPEED_NORMAL_PLAY); dioctl(audiofd, AUDIO_SET_SPEED, DVB_SPEED_NORMAL_PLAY);
if (dioctl(audiofd, AUDIO_STOP, NULL)) if (dioctl(audiofd, AUDIO_STOP, NULL))
@@ -297,7 +297,7 @@ bool Output::SwitchAudio(AVStream *stream)
return true; return true;
if (audiofd > -1) { if (audiofd > -1) {
dioctl(audiofd, AUDIO_STOP, NULL); dioctl(audiofd, AUDIO_STOP, NULL);
dioctl(audiofd, AUDIO_CLEAR_BUFFER, NULL); ioctl(audiofd, AUDIO_CLEAR_BUFFER, NULL);
} }
audioStream = stream; audioStream = stream;
if (stream) { if (stream) {
@@ -318,7 +318,7 @@ bool Output::SwitchVideo(AVStream *stream)
return true; return true;
if (videofd > -1) { if (videofd > -1) {
dioctl(videofd, VIDEO_STOP, NULL); dioctl(videofd, VIDEO_STOP, NULL);
dioctl(videofd, VIDEO_CLEAR_BUFFER, NULL); ioctl(videofd, VIDEO_CLEAR_BUFFER, NULL);
} }
videoStream = stream; videoStream = stream;
if (stream) { if (stream) {