Changeset 154:c8b7454fabb9 in mediastreamer2
- Timestamp:
- Nov 4, 2008 2:48:37 PM (5 years ago)
- Branch:
- default
- Location:
- linphone/mediastreamer2
- Files:
-
- 2 edited
-
configure.ac (modified) (1 diff)
-
src/videoout.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linphone/mediastreamer2/configure.ac
r134 r154 393 393 394 394 dnl define path of plugins: 395 PACKAGE_PLUGINS_DIR=`eval echo $prefix/lib/mediastreamer/plugins` 396 AC_DEFINE_UNQUOTED(PACKAGE_PLUGINS_DIR, "$PACKAGE_PLUGINS_DIR" ,[path of plugins]) 395 AC_DEFINE_UNQUOTED(PACKAGE_PLUGINS_DIR, "${prefix}/lib/mediastreamer/plugins" ,[path of plugins]) 396 PACKAGE_PLUGINS_DIR="${prefix}/lib/mediastreamer/plugins" 397 397 AC_SUBST(PACKAGE_PLUGINS_DIR) 398 398 399 PACKAGE_DATA_DIR= `eval echo $prefix/share`400 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "$ PACKAGE_DATA_DIR" ,[path of data])399 PACKAGE_DATA_DIR="$prefix/share" 400 AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "$prefix/share" ,[path of data]) 401 401 AC_SUBST(PACKAGE_DATA_DIR) 402 402 -
linphone/mediastreamer2/src/videoout.c
r153 r154 431 431 if (!ret) ms_error("DrawDibDraw failed."); 432 432 ReleaseDC(NULL,hdc); 433 while (PeekMessage(&msg, wd->window, 0, 0, PM_REMOVE) != 0)434 {435 TranslateMessage(&msg);436 DispatchMessage(&msg);437 }438 433 } 439 434 … … 451 446 452 447 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 } 453 452 return FALSE; 454 453 } … … 825 824 video_out_postprocess, 826 825 video_out_uninit, 827 methods, 828 MS_FILTER_IS_PUMP 826 methods 829 827 }; 830 828 … … 839 837 .noutputs=0, 840 838 .init=video_out_init, 841 .preprocess=NULL,842 839 .process=video_out_process, 843 840 .postprocess=video_out_postprocess, 844 841 .uninit=video_out_uninit, 845 .methods=methods, 846 .flags=MS_FILTER_IS_PUMP 842 .methods=methods 847 843 }; 848 844
Note: See TracChangeset
for help on using the changeset viewer.
