Sorry but what is this?What is a difference?3) Optional use of mapped memory instead of shared memory.
than you
Wikipedia is great for looking these things up:marculin wrote:Sorry but what is this?What is a difference?3) Optional use of mapped memory instead of shared memory.
than you
Code: Select all
g++ -frepo -g -O2 -L/usr/lib -L/usr/include/mysql/lib/mysql -o zmc zmc.o zm_box.o zm_buffer.o zm_camera.o zm_comms.o zm_config.o zm_coord.o zm.o zm_db.o zm_debug.o zm_event.o zm_exception.o zm_file_camera.o zm_image.o zm_jpeg.o zm_local_camera.o zm_monitor.o zm_ffmpeg.o zm_mpeg.o zm_poly.o zm_regexp.o zm_remote_camera.o zm_remote_camera_http.o zm_remote_camera_rtsp.o zm_rtp.o zm_rtp_ctrl.o zm_rtp_data.o zm_rtp_source.o zm_rtsp.o zm_sdp.o zm_signal.o zm_stream.o zm_thread.o zm_time.o zm_timer.o zm_user.o zm_utils.o zm_zone.o -lbz2 -lswscale -lavformat -lavcodec -lavutil -lpcre -lgnutls-openssl -lmysqlclient -lpthread -ldl -lz -ljpeg
zm_sdp.o: In function `sdp_parse_line':
/home/dave/Desktop/ZoneMinder-1.24.0/src/zm_sdp.c:405: undefined reference to `ff_dynarray_add'
collect2: ld returned 1 exit status
make[2]: *** [zmc] Error 1
make[2]: Leaving directory `/home/dave/Desktop/ZoneMinder-1.24.0/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/dave/Desktop/ZoneMinder-1.24.0'
make: *** [all] Error 2
Code: Select all
./configure --enable-gpl --enable-pthreads --enable-libvorbis --enable-libgsm --disable-debug --enable-libmp3lame --enable-libfaad --enable-libfaac --enable-libxvid --enable-swscale
ffmpeg is "SVN-r15629". I will rebuild my version of ffmpeg with just the two options you listed and see what happens...zoneminder wrote:I usually just use --enable-gpl and --enable-swscale but I will try and reproduce your. Can you confirm the version number in version.h?
Also did it build with the previous ZM rcs?
Code: Select all
alter table Monitors modify column `Type` enum('Local','Remote','File','Ffmpeg') NOT NULL default 'Local';
+alter table MonitorPresets modify column `Type` enum('Local','Remote','File','Ffmpeg') NOT NULL default 'Local';
Give the newest RC, just uploaded, a try.yogev_ezra wrote:Any light on possible fix for the wrong palette issue on V4L2 cameras?
http://www.zoneminder.com/forums/viewtopic.php?t=12611
Code: Select all
alter table Monitors modify column `Format` int(10) unsigned NOT NULL default '0';
alter table Monitors modify column `Palette` int(10) unsigned NOT NULL default '0';
alter table MonitorPresets modify column `Channel` tinyint(3) unsigned default NULL;
alter table MonitorPresets modify column `Format` int(10) unsigned default NULL;
alter table MonitorPresets modify column `Palette` int(10) unsigned default NULL;