Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. static __forceinline unsigned int invoke_thread_procedure(
  2. _beginthreadex_proc_type const procedure,
  3. void* const context
  4. ) throw()
  5. {
  6. return procedure(context);
  7. }
  8.  
  9. thread* m_tVideoDecode;
  10. m_tVideoDecode = new thread(&CVideoStreamDecoder::RunVideoDecode, m_tVideoStreamDecoder);
  11.  
  12. void CVideoStreamDecoder::RunVideoDecode(CVideoStreamDecoder* vd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement