From owner-freebsd-questions@FreeBSD.ORG Tue Aug 10 19:25:11 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F4C61065674 for ; Tue, 10 Aug 2010 19:25:11 +0000 (UTC) (envelope-from jjfitzgerald@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id D686A8FC17 for ; Tue, 10 Aug 2010 19:25:10 +0000 (UTC) Received: by gxk24 with SMTP id 24so4839505gxk.13 for ; Tue, 10 Aug 2010 12:25:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=NmufSXLAe2q+kJw0dU5gmBmfkak7TKO1S6fxeQXakxk=; b=ZjDfuLfCKflkIRGkYahy7K2VtnnJG+qrHoknQJauLF0paXiZIIBplWGV7ME1c+Zwpf ISFWb1B+DhRyeZenacnzDapnGKKHX6Igi/VmZYU+jC+7jiHIZ+IVZZenUfOcc5mAPV73 mEEogIaf3cLA4NzWeht+F7PdigGDD2NJASULM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Es14utSPkdPnI9rTNsJuzQ0Zq/zoIDkKjqatvuFjtFQuTGwN78P3WFVWH5FTM1JIml n+rPmzyu3i9mhKw5O9oUiiFPk0TR7CKPgqIgU6Gjesw3hFEaYOcsr5eGIHOA3Re2a9qK cipsqERzZvUFNu/kNw3q8HsXDs0v6jyCDP2oA= MIME-Version: 1.0 Received: by 10.100.139.10 with SMTP id m10mr20219534and.132.1281466833229; Tue, 10 Aug 2010 12:00:33 -0700 (PDT) Received: by 10.100.133.7 with HTTP; Tue, 10 Aug 2010 12:00:33 -0700 (PDT) Date: Tue, 10 Aug 2010 15:00:33 -0400 Message-ID: From: John Fitzgerald To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: ffmpeg Bus error: 10 (core dumped) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2010 19:25:11 -0000 Hi all, I just installed ffmpeg from ports (after a portsnap update). Running ffmpeg results in a core dump: # /usr/local/bin/ffmpeg -i myfile.flv output.flv FFmpeg version 0.6, Copyright (c) 2000-2010 the FFmpeg developers built on Aug 10 2010 14:46:32 with gcc 3.4.6 [FreeBSD] 20060305 configuration: --prefix=/usr/local --mandir=/usr/local/man --enable-shared --enable-gpl --enable-postproc --enable-avfilter --enable-avfilter-lavf --enable-pthreads --enable-x11grab --enable-memalign-hack --cc=cc --extra-cflags=-I/usr/local/include/vorbis -I/usr/local/include --extra-ldflags=-L/usr/local/lib --extra-libs=-pthread --disable-debug --disable-sse --disable-mmx --enable-libopencore-amrnb --enable-version3 --enable-libopencore-amrwb --enable-version3 --disable-libdirac --disable-libfaac --enable-libfaad --enable-libfaadbin --enable-libgsm --enable-libmp3lame --disable-libopenjpeg --disable-libschroedinger --disable-ffplay --disable-libspeex --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid libavutil 50.15. 1 / 50.15. 1 libavcodec 52.72. 2 / 52.72. 2 libavformat 52.64. 2 / 52.64. 2 libavdevice 52. 2. 0 / 52. 2. 0 libavfilter 1.19. 0 / 1.19. 0 libswscale 0.11. 0 / 0.11. 0 libpostproc 51. 2. 0 / 51. 2. 0 Bus error: 10 (core dumped) Here's the backtrace: # gdb `which ffmpeg` ffmpeg.core [...etc, etc....] This GDB was configured as "i386-marcel-freebsd"...(no debugging symbols found)... Core was generated by `ffmpeg'. Program terminated with signal 10, Bus error. Reading symbols from /usr/local/lib/libavdevice.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libavdevice.so.1 [...etc, etc....] Reading symbols from /libexec/ld-elf.so.1...(no debugging symbols found)...done. Loaded symbols for /libexec/ld-elf.so.1 #0 0x2812ea67 in ff_av_dup_packet () from /usr/local/lib/libavformat.so.1 [New LWP 100870] (gdb) bt #0 0x2812ea67 in ff_av_dup_packet () from /usr/local/lib/libavformat.so.1 Cannot access memory at address 0xbf9ffff4 Running FreeBSD 6.3-RELEASE. Any thoughts / suggestions? Thanks