Bug 153581

Summary: [patch] multimedia/ffmpeg: make libvdpau a build-time dependency
Product: Ports & Packages Reporter: swell.k <swell.k>
Component: Individual Port(s)Assignee: Martin Matuska <mm>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
a.diff none

Description swell.k 2010-12-31 14:30:13 UTC
http://docs.freebsd.org/cgi/mid.cgi?86y677n18t.fsf

How-To-Repeat: 1. unmark all OPTIONS except for VDPAU
2. install the port
3. check direct linking

    $ readelf -d PREFIX/lib/libavcodec.so | awk '/needed/I && /vdpau/'
    $

4. confirm that ffmpeg has vdpau decoders

    $ ffmpeg -codecs 2>&1 | fgrep -i vdpau
      configuration: ... --enable-vdpau ...
     D V D  h264_vdpau      H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration)
     D V DT mpeg1video_vdpau MPEG-1 video (VDPAU acceleration)
     D V DT mpeg4_vdpau     MPEG-4 part 2 (VDPAU)
     D V DT mpegvideo_vdpau MPEG-1/2 video (VDPAU acceleration)
     D V D  vc1_vdpau       SMPTE VC-1 VDPAU
     D V D  wmv3_vdpau      Windows Media Video 9 VDPAU
Comment 1 dfilter service freebsd_committer freebsd_triage 2011-03-22 07:35:12 UTC
mm          2011-03-22 07:34:47 UTC

  FreeBSD ports repository

  Modified files:
    multimedia/ffmpeg-devel Makefile distinfo pkg-plist 
    multimedia/ffmpeg-devel/files patch-configure 
  Log:
  - Update to 2011-03-21
  - Add LICENSE information
  - If linking against libfaac, set to RESTRICTED
  - Respect WITH_DEBUG [1]
  - Change WITH_VDPAU to a build-time dependency [2]
  - Add new option WITH_VAAPI (multimedia/libva) [3]
  - Accept x264_devel if installed
  
  PR:             ports/153540 [1], ports/153581 [2], ports/153727 [3]
  Submitted by:   swell.k@gmail.com [1] [2] [3]
  
  Revision  Changes    Path
  1.137     +32 -8     ports/multimedia/ffmpeg-devel/Makefile
  1.49      +2 -2      ports/multimedia/ffmpeg-devel/distinfo
  1.19      +11 -9     ports/multimedia/ffmpeg-devel/files/patch-configure
  1.33      +9 -15     ports/multimedia/ffmpeg-devel/pkg-plist
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 2 dfilter service freebsd_committer freebsd_triage 2011-03-22 07:38:59 UTC
mm          2011-03-22 07:38:46 UTC

  FreeBSD ports repository

  Modified files:
    multimedia/ffmpeg    Makefile distinfo 
  Log:
  - Add LICENSE information
  - If linking against libfaac, set RESTRICTED
  - Respect WITH_DEBUG [1]
  - Change WITH_VDPAU to a build-time dependency [2]
  - Add new option WITH_VAAPI (multimedia/libva) [3]
  
  PR:             ports/153540 [1], ports/153581 [2], ports/153727 [3]
  Submitted by:   swell.k@gmail.com
  
  Revision  Changes    Path
  1.122     +26 -6     ports/multimedia/ffmpeg/Makefile
  1.21      +0 -1      ports/multimedia/ffmpeg/distinfo
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Martin Matuska freebsd_committer freebsd_triage 2011-03-22 08:11:23 UTC
State Changed
From-To: open->closed

Committed. Thanks!