Changeset 155:cccb422e9c2d in mediastreamer2
- Timestamp:
- Nov 4, 2008 3:38:42 PM (5 years ago)
- Branch:
- default
- File:
-
- 1 edited
-
linphone/mediastreamer2/src/videoout.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linphone/mediastreamer2/src/videoout.c
r154 r155 391 391 BITMAPINFOHEADER bi; 392 392 RECT rect; 393 MSG msg;394 393 bool_t ret; 395 394 if (wd->window==NULL) return; … … 446 445 447 446 bool_t win_display_pollevent(MSDisplay *d, MSDisplayEvent *ev){ 448 while (PeekMessage(&msg, wd->window, 0, 0, PM_REMOVE) != 0){449 TranslateMessage(&msg);450 DispatchMessage(&msg);451 }452 447 return FALSE; 453 448 } … … 664 659 } 665 660 666 static void video_out_postprocess(MSFilter *f){ 661 static void video_out_preprocess(MSFilter *f){ 662 video_out_prepare(f); 667 663 } 668 664 … … 821 817 video_out_init, 822 818 NULL, 819 video_out_preprocess, 823 820 video_out_process, 824 video_out_postprocess,821 NULL, 825 822 video_out_uninit, 826 823 methods … … 837 834 .noutputs=0, 838 835 .init=video_out_init, 836 .preprocess=video_out_preprocess, 839 837 .process=video_out_process, 840 .postprocess=video_out_postprocess,841 838 .uninit=video_out_uninit, 842 839 .methods=methods
Note: See TracChangeset
for help on using the changeset viewer.
