You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to rewind to the beginning of the movie maybe hundreds or thousands of times.
But when I get to the 150th time, omxplayer just stops displaying.
It doesn't matter if it takes 1 hour to get to the 150th time, or 3 hours. When it hits 150 the python script is still running fine, but omxplayer will no longer display anything.
I really need a way around this if anyone has ideas.
The movie I am using is a 19 second, 16MB on disk file.
The basic loop code below:
c.send ('p') # play
time.sleep(11) # wait movie time
c.send ('p') # pause
time.sleep(10) # wait
c.send ('p') # play
c.send ('i') # jumps to start of movie
time.sleep(2.9) # wait
c.send ('p') # pause
time.sleep(5)
It works 150 times.
I also did this today and still have this issue every time:
As I said my python script continues to run fine even though omxplayer is no longer showing the movie.
So I Ctrl-C to stop the script. At which time omxplayer runs the movie a final time before quitting.
I made a log of the last test. It is very long because it took about an hour to hit the 150th time. So I will just post the last bit in case it shows something important.
Thank you for any help.
23:37:28 T:1686239116 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:37:28 T:1686249201 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:37:28 T:1686279762 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:37:28 T:1686324691 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:37:28 T:1686344422 DEBUG: COMXVideo::Open - decoder_component(0x0xf15d58), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:37:28 T:1686345270 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:37:52 T:1710696674 DEBUG: OMXReader::SeekTime - unknown position after seek
23:37:53 T:1710714767 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:37:53 T:1710715562 DEBUG: OMXThread::StopThread - Thread stopped
23:37:53 T:1710824626 DEBUG: DllAvUtilBase: Using libavutil system library
23:37:53 T:1710824890 DEBUG: DllAvCodec: Using libavcodec system library
23:37:53 T:1710825026 DEBUG: DllAvFormat: Using libavformat system library
23:37:53 T:1710825288 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710830497 DEBUG: Previous line repeats 5 times.
23:37:53 T:1710830497 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:37:53 T:1710830911 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710835299 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:37:53 T:1710835659 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710841762 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:37:53 T:1710842053 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710847658 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:37:53 T:1710858000 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:37:53 T:1710889159 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:37:53 T:1710934779 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:37:53 T:1710954357 DEBUG: COMXVideo::Open - decoder_component(0x0xb34a2010), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:37:53 T:1710955174 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:38:17 T:1735319399 DEBUG: OMXReader::SeekTime - unknown position after seek
23:38:17 T:1735355713 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:38:17 T:1735356539 DEBUG: OMXThread::StopThread - Thread stopped
23:38:17 T:1735466664 DEBUG: DllAvUtilBase: Using libavutil system library
23:38:17 T:1735466955 DEBUG: DllAvCodec: Using libavcodec system library
23:38:17 T:1735467420 DEBUG: DllAvFormat: Using libavformat system library
23:38:17 T:1735467919 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735473018 DEBUG: Previous line repeats 5 times.
23:38:17 T:1735473018 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:38:17 T:1735473579 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735477668 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:38:17 T:1735478037 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735483684 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:38:17 T:1735483953 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735489696 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:38:17 T:1735499737 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:38:17 T:1735530957 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:38:17 T:1735575414 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:38:17 T:1735594548 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:38:17 T:1735595291 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:38:42 T:1759941235 DEBUG: OMXReader::SeekTime - unknown position after seek
23:38:42 T:1759962735 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:38:42 T:1759963679 DEBUG: OMXThread::StopThread - Thread stopped
23:38:42 T:1760082356 DEBUG: DllAvUtilBase: Using libavutil system library
23:38:42 T:1760082780 DEBUG: DllAvCodec: Using libavcodec system library
23:38:42 T:1760082930 DEBUG: DllAvFormat: Using libavformat system library
23:38:42 T:1760083239 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760088664 DEBUG: Previous line repeats 5 times.
23:38:42 T:1760088664 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:38:42 T:1760088982 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760093236 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:38:42 T:1760093492 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760099652 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:38:42 T:1760099940 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760105219 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:38:42 T:1760115289 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:38:42 T:1760145847 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:38:42 T:1760190973 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:38:42 T:1760210182 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:38:42 T:1760211045 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:39:06 T:1784555115 DEBUG: OMXReader::SeekTime - unknown position after seek
23:39:06 T:1784567976 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:39:06 T:1784568838 DEBUG: OMXThread::StopThread - Thread stopped
23:39:06 T:1784686686 DEBUG: DllAvUtilBase: Using libavutil system library
23:39:06 T:1784687288 DEBUG: DllAvCodec: Using libavcodec system library
23:39:06 T:1784687755 DEBUG: DllAvFormat: Using libavformat system library
23:39:06 T:1784688059 DEBUG: DllOMX: Using omx system library
23:39:06 T:1784693354 DEBUG: Previous line repeats 5 times.
23:39:06 T:1784693354 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:39:06 T:1784693749 DEBUG: DllOMX: Using omx system library
23:39:06 T:1784698196 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:39:06 T:1784698491 DEBUG: DllOMX: Using omx system library
23:39:07 T:1784704035 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:39:07 T:1784704420 DEBUG: DllOMX: Using omx system library
23:39:07 T:1784710482 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:39:07 T:1784720419 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:39:07 T:1784751109 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:39:07 T:1784795672 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:39:07 T:1784815280 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:39:07 T:1784816052 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:39:31 T:1809178682 DEBUG: OMXReader::SeekTime - unknown position after seek
23:39:31 T:1809200339 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:39:31 T:1809201117 DEBUG: OMXThread::StopThread - Thread stopped
23:39:31 T:1809310738 DEBUG: DllAvUtilBase: Using libavutil system library
23:39:31 T:1809311944 DEBUG: DllAvCodec: Using libavcodec system library
23:39:31 T:1809312081 DEBUG: DllAvFormat: Using libavformat system library
23:39:31 T:1809312344 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809317934 DEBUG: Previous line repeats 5 times.
23:39:31 T:1809317934 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:39:31 T:1809318436 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809322414 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:39:31 T:1809322830 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809328794 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:39:31 T:1809329080 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809334437 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:39:31 T:1809345368 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:39:31 T:1809376284 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:39:31 T:1809421361 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:39:31 T:1809441258 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:39:31 T:1809441921 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:39:56 T:1833799911 DEBUG: OMXReader::SeekTime - unknown position after seek
23:39:56 T:1833821357 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:39:56 T:1833822207 DEBUG: OMXThread::StopThread - Thread stopped
23:39:56 T:1833940576 DEBUG: DllAvUtilBase: Using libavutil system library
23:39:56 T:1833940865 DEBUG: DllAvCodec: Using libavcodec system library
23:39:56 T:1833941186 DEBUG: DllAvFormat: Using libavformat system library
23:39:56 T:1833941460 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833946934 DEBUG: Previous line repeats 5 times.
23:39:56 T:1833946934 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:39:56 T:1833947327 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833951440 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:39:56 T:1833951699 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833957630 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:39:56 T:1833958031 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833963518 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:39:56 T:1833973461 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:39:56 T:1834008317 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:39:56 T:1834055453 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:39:56 T:1834074483 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:39:56 T:1834075522 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:40:20 T:1858424860 DEBUG: OMXReader::SeekTime - unknown position after seek
23:40:20 T:1858446740 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:40:20 T:1858447431 DEBUG: OMXThread::StopThread - Thread stopped
23:40:20 T:1858562238 DEBUG: DllAvUtilBase: Using libavutil system library
23:40:20 T:1858562513 DEBUG: DllAvCodec: Using libavcodec system library
23:40:20 T:1858562650 DEBUG: DllAvFormat: Using libavformat system library
23:40:20 T:1858562917 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858568418 DEBUG: Previous line repeats 5 times.
23:40:20 T:1858568418 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:40:20 T:1858568830 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858573180 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:40:20 T:1858573683 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858579141 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:40:20 T:1858579507 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858585169 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:40:20 T:1858595426 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:40:20 T:1858626283 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:40:20 T:1858671677 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:40:20 T:1858690666 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:40:20 T:1858691559 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:40:45 T:1883046192 DEBUG: OMXReader::SeekTime - unknown position after seek
23:40:45 T:1883062482 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:40:45 T:1883063346 DEBUG: OMXThread::StopThread - Thread stopped
23:40:45 T:1883171979 DEBUG: DllAvUtilBase: Using libavutil system library
23:40:45 T:1883173555 DEBUG: DllAvCodec: Using libavcodec system library
23:40:45 T:1883174048 DEBUG: DllAvFormat: Using libavformat system library
23:40:45 T:1883174825 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883179696 DEBUG: Previous line repeats 5 times.
23:40:45 T:1883179696 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:40:45 T:1883180149 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883184725 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:40:45 T:1883184996 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883190346 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:40:45 T:1883190619 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883195980 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:40:45 T:1883206016 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:40:45 T:1883236712 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:40:45 T:1883281809 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:40:45 T:1883300914 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:40:45 T:1883301906 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:41:09 T:1907668599 DEBUG: OMXReader::SeekTime - unknown position after seek
23:41:09 T:1907695658 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:41:09 T:1907696385 DEBUG: OMXThread::StopThread - Thread stopped
23:41:10 T:1907814381 DEBUG: DllAvUtilBase: Using libavutil system library
23:41:10 T:1907814763 DEBUG: DllAvCodec: Using libavcodec system library
23:41:10 T:1907814915 DEBUG: DllAvFormat: Using libavformat system library
23:41:10 T:1907815396 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907820883 DEBUG: Previous line repeats 5 times.
23:41:10 T:1907820883 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:41:10 T:1907821303 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907825343 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:41:10 T:1907825603 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907831427 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:41:10 T:1907831716 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907837152 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:41:10 T:1907847039 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:41:10 T:1907877638 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:41:10 T:1907922264 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:41:10 T:1907941646 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:41:10 T:1907942373 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:41:34 T:1932294123 DEBUG: OMXReader::SeekTime - unknown position after seek
23:41:34 T:1932323695 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:41:34 T:1932324408 DEBUG: OMXThread::StopThread - Thread stopped
23:41:34 T:1932447542 DEBUG: DllAvUtilBase: Using libavutil system library
23:41:34 T:1932447965 DEBUG: DllAvCodec: Using libavcodec system library
23:41:34 T:1932448136 DEBUG: DllAvFormat: Using libavformat system library
23:41:34 T:1932448500 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932453967 DEBUG: Previous line repeats 5 times.
23:41:34 T:1932453967 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:41:34 T:1932454288 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932458536 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:41:34 T:1932458816 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932464520 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:41:34 T:1932464944 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932470787 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:41:34 T:1932480791 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:41:34 T:1932514204 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:41:34 T:1932559209 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:41:34 T:1932578367 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:41:34 T:1932579346 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:41:59 T:1956917933 DEBUG: OMXReader::SeekTime - unknown position after seek
23:41:59 T:1956932156 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:41:59 T:1956932906 DEBUG: OMXThread::StopThread - Thread stopped
23:41:59 T:1957050841 DEBUG: DllAvUtilBase: Using libavutil system library
23:41:59 T:1957051112 DEBUG: DllAvCodec: Using libavcodec system library
23:41:59 T:1957051437 DEBUG: DllAvFormat: Using libavformat system library
23:41:59 T:1957051841 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957056853 DEBUG: Previous line repeats 5 times.
23:41:59 T:1957056853 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:41:59 T:1957057227 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957061688 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:41:59 T:1957062086 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957067860 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:41:59 T:1957068225 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957073476 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:41:59 T:1957083634 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:41:59 T:1957114412 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:41:59 T:1957159343 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:41:59 T:1957178515 DEBUG: COMXVideo::Open - decoder_component(0x0xebecd8), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:41:59 T:1957179733 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:42:23 T:1981536805 DEBUG: OMXReader::SeekTime - unknown position after seek
23:42:23 T:1981558846 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:42:23 T:1981559554 DEBUG: OMXThread::StopThread - Thread stopped
23:42:23 T:1981676300 DEBUG: DllAvUtilBase: Using libavutil system library
23:42:23 T:1981676783 DEBUG: DllAvCodec: Using libavcodec system library
23:42:23 T:1981677452 DEBUG: DllAvFormat: Using libavformat system library
23:42:23 T:1981677844 DEBUG: DllOMX: Using omx system library
23:42:23 T:1981682992 DEBUG: Previous line repeats 5 times.
23:42:23 T:1981682992 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:42:23 T:1981683384 DEBUG: DllOMX: Using omx system library
23:42:23 T:1981688057 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:42:23 T:1981688457 DEBUG: DllOMX: Using omx system library
23:42:23 T:1981694118 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:42:23 T:1981694483 DEBUG: DllOMX: Using omx system library
23:42:24 T:1981700202 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:42:24 T:1981710512 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:42:24 T:1981740996 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:42:24 T:1981785516 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:42:24 T:1981804908 DEBUG: COMXVideo::Open - decoder_component(0x0xebecd8), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:43:39 T:2057080295 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:43:58 T:2076459006 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:43:58 T:2076459752 DEBUG: OMXThread::StopThread - Thread stopped
The text was updated successfully, but these errors were encountered:
I'm using simple movie control in python:
http://www.raspberrypi.org/phpBB3/viewtopic.php?p=372380#p372380
I need to rewind to the beginning of the movie maybe hundreds or thousands of times.
But when I get to the 150th time, omxplayer just stops displaying.
It doesn't matter if it takes 1 hour to get to the 150th time, or 3 hours. When it hits 150 the python script is still running fine, but omxplayer will no longer display anything.
I really need a way around this if anyone has ideas.
The movie I am using is a 19 second, 16MB on disk file.
The basic loop code below:
It works 150 times.
I also did this today and still have this issue every time:
sudo apt-get update && sudo apt-get upgrade
sudo apt-get update && sudo apt-get -y dist-upgrade
sudo rpi-update
and rebooted
So everything is the latest.
As I said my python script continues to run fine even though omxplayer is no longer showing the movie.
So I Ctrl-C to stop the script. At which time omxplayer runs the movie a final time before quitting.
I made a log of the last test. It is very long because it took about an hour to hit the 150th time. So I will just post the last bit in case it shows something important.
Thank you for any help.
23:37:28 T:1686239116 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:37:28 T:1686249201 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:37:28 T:1686279762 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:37:28 T:1686324691 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:37:28 T:1686344422 DEBUG: COMXVideo::Open - decoder_component(0x0xf15d58), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:37:28 T:1686345270 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:37:52 T:1710696674 DEBUG: OMXReader::SeekTime - unknown position after seek
23:37:53 T:1710714767 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:37:53 T:1710715562 DEBUG: OMXThread::StopThread - Thread stopped
23:37:53 T:1710824626 DEBUG: DllAvUtilBase: Using libavutil system library
23:37:53 T:1710824890 DEBUG: DllAvCodec: Using libavcodec system library
23:37:53 T:1710825026 DEBUG: DllAvFormat: Using libavformat system library
23:37:53 T:1710825288 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710830497 DEBUG: Previous line repeats 5 times.
23:37:53 T:1710830497 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:37:53 T:1710830911 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710835299 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:37:53 T:1710835659 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710841762 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:37:53 T:1710842053 DEBUG: DllOMX: Using omx system library
23:37:53 T:1710847658 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:37:53 T:1710858000 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:37:53 T:1710889159 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:37:53 T:1710934779 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:37:53 T:1710954357 DEBUG: COMXVideo::Open - decoder_component(0x0xb34a2010), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:37:53 T:1710955174 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:38:17 T:1735319399 DEBUG: OMXReader::SeekTime - unknown position after seek
23:38:17 T:1735355713 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:38:17 T:1735356539 DEBUG: OMXThread::StopThread - Thread stopped
23:38:17 T:1735466664 DEBUG: DllAvUtilBase: Using libavutil system library
23:38:17 T:1735466955 DEBUG: DllAvCodec: Using libavcodec system library
23:38:17 T:1735467420 DEBUG: DllAvFormat: Using libavformat system library
23:38:17 T:1735467919 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735473018 DEBUG: Previous line repeats 5 times.
23:38:17 T:1735473018 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:38:17 T:1735473579 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735477668 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:38:17 T:1735478037 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735483684 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:38:17 T:1735483953 DEBUG: DllOMX: Using omx system library
23:38:17 T:1735489696 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:38:17 T:1735499737 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:38:17 T:1735530957 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:38:17 T:1735575414 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:38:17 T:1735594548 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:38:17 T:1735595291 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:38:42 T:1759941235 DEBUG: OMXReader::SeekTime - unknown position after seek
23:38:42 T:1759962735 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:38:42 T:1759963679 DEBUG: OMXThread::StopThread - Thread stopped
23:38:42 T:1760082356 DEBUG: DllAvUtilBase: Using libavutil system library
23:38:42 T:1760082780 DEBUG: DllAvCodec: Using libavcodec system library
23:38:42 T:1760082930 DEBUG: DllAvFormat: Using libavformat system library
23:38:42 T:1760083239 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760088664 DEBUG: Previous line repeats 5 times.
23:38:42 T:1760088664 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:38:42 T:1760088982 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760093236 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:38:42 T:1760093492 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760099652 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:38:42 T:1760099940 DEBUG: DllOMX: Using omx system library
23:38:42 T:1760105219 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:38:42 T:1760115289 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:38:42 T:1760145847 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:38:42 T:1760190973 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:38:42 T:1760210182 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:38:42 T:1760211045 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:39:06 T:1784555115 DEBUG: OMXReader::SeekTime - unknown position after seek
23:39:06 T:1784567976 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:39:06 T:1784568838 DEBUG: OMXThread::StopThread - Thread stopped
23:39:06 T:1784686686 DEBUG: DllAvUtilBase: Using libavutil system library
23:39:06 T:1784687288 DEBUG: DllAvCodec: Using libavcodec system library
23:39:06 T:1784687755 DEBUG: DllAvFormat: Using libavformat system library
23:39:06 T:1784688059 DEBUG: DllOMX: Using omx system library
23:39:06 T:1784693354 DEBUG: Previous line repeats 5 times.
23:39:06 T:1784693354 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:39:06 T:1784693749 DEBUG: DllOMX: Using omx system library
23:39:06 T:1784698196 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:39:06 T:1784698491 DEBUG: DllOMX: Using omx system library
23:39:07 T:1784704035 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:39:07 T:1784704420 DEBUG: DllOMX: Using omx system library
23:39:07 T:1784710482 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:39:07 T:1784720419 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:39:07 T:1784751109 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:39:07 T:1784795672 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:39:07 T:1784815280 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:39:07 T:1784816052 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:39:31 T:1809178682 DEBUG: OMXReader::SeekTime - unknown position after seek
23:39:31 T:1809200339 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:39:31 T:1809201117 DEBUG: OMXThread::StopThread - Thread stopped
23:39:31 T:1809310738 DEBUG: DllAvUtilBase: Using libavutil system library
23:39:31 T:1809311944 DEBUG: DllAvCodec: Using libavcodec system library
23:39:31 T:1809312081 DEBUG: DllAvFormat: Using libavformat system library
23:39:31 T:1809312344 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809317934 DEBUG: Previous line repeats 5 times.
23:39:31 T:1809317934 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:39:31 T:1809318436 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809322414 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:39:31 T:1809322830 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809328794 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:39:31 T:1809329080 DEBUG: DllOMX: Using omx system library
23:39:31 T:1809334437 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:39:31 T:1809345368 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:39:31 T:1809376284 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:39:31 T:1809421361 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:39:31 T:1809441258 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:39:31 T:1809441921 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:39:56 T:1833799911 DEBUG: OMXReader::SeekTime - unknown position after seek
23:39:56 T:1833821357 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:39:56 T:1833822207 DEBUG: OMXThread::StopThread - Thread stopped
23:39:56 T:1833940576 DEBUG: DllAvUtilBase: Using libavutil system library
23:39:56 T:1833940865 DEBUG: DllAvCodec: Using libavcodec system library
23:39:56 T:1833941186 DEBUG: DllAvFormat: Using libavformat system library
23:39:56 T:1833941460 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833946934 DEBUG: Previous line repeats 5 times.
23:39:56 T:1833946934 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:39:56 T:1833947327 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833951440 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:39:56 T:1833951699 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833957630 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:39:56 T:1833958031 DEBUG: DllOMX: Using omx system library
23:39:56 T:1833963518 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:39:56 T:1833973461 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:39:56 T:1834008317 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:39:56 T:1834055453 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:39:56 T:1834074483 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:39:56 T:1834075522 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:40:20 T:1858424860 DEBUG: OMXReader::SeekTime - unknown position after seek
23:40:20 T:1858446740 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:40:20 T:1858447431 DEBUG: OMXThread::StopThread - Thread stopped
23:40:20 T:1858562238 DEBUG: DllAvUtilBase: Using libavutil system library
23:40:20 T:1858562513 DEBUG: DllAvCodec: Using libavcodec system library
23:40:20 T:1858562650 DEBUG: DllAvFormat: Using libavformat system library
23:40:20 T:1858562917 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858568418 DEBUG: Previous line repeats 5 times.
23:40:20 T:1858568418 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:40:20 T:1858568830 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858573180 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:40:20 T:1858573683 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858579141 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:40:20 T:1858579507 DEBUG: DllOMX: Using omx system library
23:40:20 T:1858585169 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:40:20 T:1858595426 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:40:20 T:1858626283 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:40:20 T:1858671677 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:40:20 T:1858690666 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:40:20 T:1858691559 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:40:45 T:1883046192 DEBUG: OMXReader::SeekTime - unknown position after seek
23:40:45 T:1883062482 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:40:45 T:1883063346 DEBUG: OMXThread::StopThread - Thread stopped
23:40:45 T:1883171979 DEBUG: DllAvUtilBase: Using libavutil system library
23:40:45 T:1883173555 DEBUG: DllAvCodec: Using libavcodec system library
23:40:45 T:1883174048 DEBUG: DllAvFormat: Using libavformat system library
23:40:45 T:1883174825 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883179696 DEBUG: Previous line repeats 5 times.
23:40:45 T:1883179696 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:40:45 T:1883180149 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883184725 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:40:45 T:1883184996 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883190346 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:40:45 T:1883190619 DEBUG: DllOMX: Using omx system library
23:40:45 T:1883195980 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:40:45 T:1883206016 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:40:45 T:1883236712 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:40:45 T:1883281809 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:40:45 T:1883300914 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:40:45 T:1883301906 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:41:09 T:1907668599 DEBUG: OMXReader::SeekTime - unknown position after seek
23:41:09 T:1907695658 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:41:09 T:1907696385 DEBUG: OMXThread::StopThread - Thread stopped
23:41:10 T:1907814381 DEBUG: DllAvUtilBase: Using libavutil system library
23:41:10 T:1907814763 DEBUG: DllAvCodec: Using libavcodec system library
23:41:10 T:1907814915 DEBUG: DllAvFormat: Using libavformat system library
23:41:10 T:1907815396 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907820883 DEBUG: Previous line repeats 5 times.
23:41:10 T:1907820883 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:41:10 T:1907821303 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907825343 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:41:10 T:1907825603 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907831427 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:41:10 T:1907831716 DEBUG: DllOMX: Using omx system library
23:41:10 T:1907837152 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:41:10 T:1907847039 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:41:10 T:1907877638 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:41:10 T:1907922264 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:41:10 T:1907941646 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:41:10 T:1907942373 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:41:34 T:1932294123 DEBUG: OMXReader::SeekTime - unknown position after seek
23:41:34 T:1932323695 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:41:34 T:1932324408 DEBUG: OMXThread::StopThread - Thread stopped
23:41:34 T:1932447542 DEBUG: DllAvUtilBase: Using libavutil system library
23:41:34 T:1932447965 DEBUG: DllAvCodec: Using libavcodec system library
23:41:34 T:1932448136 DEBUG: DllAvFormat: Using libavformat system library
23:41:34 T:1932448500 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932453967 DEBUG: Previous line repeats 5 times.
23:41:34 T:1932453967 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:41:34 T:1932454288 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932458536 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:41:34 T:1932458816 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932464520 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:41:34 T:1932464944 DEBUG: DllOMX: Using omx system library
23:41:34 T:1932470787 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:41:34 T:1932480791 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:41:34 T:1932514204 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:41:34 T:1932559209 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:41:34 T:1932578367 DEBUG: COMXVideo::Open - decoder_component(0x0xb3405e98), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:41:34 T:1932579346 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:41:59 T:1956917933 DEBUG: OMXReader::SeekTime - unknown position after seek
23:41:59 T:1956932156 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:41:59 T:1956932906 DEBUG: OMXThread::StopThread - Thread stopped
23:41:59 T:1957050841 DEBUG: DllAvUtilBase: Using libavutil system library
23:41:59 T:1957051112 DEBUG: DllAvCodec: Using libavcodec system library
23:41:59 T:1957051437 DEBUG: DllAvFormat: Using libavformat system library
23:41:59 T:1957051841 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957056853 DEBUG: Previous line repeats 5 times.
23:41:59 T:1957056853 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:41:59 T:1957057227 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957061688 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:41:59 T:1957062086 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957067860 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:41:59 T:1957068225 DEBUG: DllOMX: Using omx system library
23:41:59 T:1957073476 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:41:59 T:1957083634 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:41:59 T:1957114412 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:41:59 T:1957159343 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:41:59 T:1957178515 DEBUG: COMXVideo::Open - decoder_component(0x0xebecd8), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:41:59 T:1957179733 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:42:23 T:1981536805 DEBUG: OMXReader::SeekTime - unknown position after seek
23:42:23 T:1981558846 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:42:23 T:1981559554 DEBUG: OMXThread::StopThread - Thread stopped
23:42:23 T:1981676300 DEBUG: DllAvUtilBase: Using libavutil system library
23:42:23 T:1981676783 DEBUG: DllAvCodec: Using libavcodec system library
23:42:23 T:1981677452 DEBUG: DllAvFormat: Using libavformat system library
23:42:23 T:1981677844 DEBUG: DllOMX: Using omx system library
23:42:23 T:1981682992 DEBUG: Previous line repeats 5 times.
23:42:23 T:1981682992 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_decode input port 130 output port 131
23:42:23 T:1981683384 DEBUG: DllOMX: Using omx system library
23:42:23 T:1981688057 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_render input port 90 output port 90
23:42:23 T:1981688457 DEBUG: DllOMX: Using omx system library
23:42:23 T:1981694118 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.video_scheduler input port 10 output port 11
23:42:23 T:1981694483 DEBUG: DllOMX: Using omx system library
23:42:24 T:1981700202 DEBUG: COMXCoreComponent::Initialize OMX.broadcom.text_scheduler input port 150 output port 151
23:42:24 T:1981710512 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.video_decode) - port(130), nBufferCountMin(1), nBufferCountActual(60), nBufferSize(81920), nBufferAlignmen(16)
23:42:24 T:1981740996 DEBUG: COMXCoreComponent::AllocInputBuffers component(OMX.broadcom.text_scheduler) - port(150), nBufferCountMin(1), nBufferCountActual(100), nBufferSize(1024), nBufferAlignmen(16)
23:42:24 T:1981785516 DEBUG: COMXCoreComponent::AllocOutputBuffers component(OMX.broadcom.text_scheduler) - port(151), nBufferCountMin(1), nBufferCountActual(1), nBufferSize(1024) nBufferAlignmen(16)
23:42:24 T:1981804908 DEBUG: COMXVideo::Open - decoder_component(0x0xebecd8), input_port(0x82), output_port(0x83) deinterlace 0 hdmiclocksync 0
23:43:39 T:2057080295 DEBUG: OMXThread::Create - Thread with id -1306528672 started
23:43:58 T:2076459006 DEBUG: OMXThread::Run - Exited thread with id -1306528672
23:43:58 T:2076459752 DEBUG: OMXThread::StopThread - Thread stopped
The text was updated successfully, but these errors were encountered: