Changeset 3df2398


Ignore:
Timestamp:
07/12/2022 03:32:06 AM (22 months ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/soup3, xry111/xf86-video-removal
Children:
dafe226
Parents:
f2b4c82
Message:

ffmpeg5 update: Turn off ffmpeg support in transcode.

Since ffmpeg5 no longer carries libavresample, we can't build transcode without
disabling ffmpeg support.. With some rudimentary testing, it seems that this
doesn't have any negative impact.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rf2b4c82 r3df2398  
    4545      <para>July 12th, 2022</para>
    4646      <itemizedlist>
     47        <listitem>
     48          <para>[renodr] - Remove ffmpeg support from transcode since
     49          libavresample has been removed from ffmpeg. This allows building and
     50          using this package again.</para>
     51        </listitem>
    4752        <listitem>
    4853          <para>[renodr] - Disable libva support in VLC so that it builds with
  • multimedia/videoutils/transcode.xml

    rf2b4c82 r3df2398  
    9191    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
    9292    <itemizedlist spacing="compact">
     93 <!--
    9394      <listitem>
    9495        <para>
     
    9798        </para>
    9899      </listitem>
     100-->
    99101      <listitem>
    100102        <para>
     
    107109    <bridgehead renderas="sect3">Transcode Dependencies</bridgehead>
    108110
     111<!-- ffmpeg does not carry libavresample anymore, so we'll work around it.
    109112    <bridgehead renderas="sect4">Required</bridgehead>
    110113    <para role="required">
    111       <xref linkend="ffmpeg"/> (configured with --enable-avresample)
    112     </para>
     114      <xref linkend="ffmpeg"/> (configured with - -enable-avresample)
     115    </para>
     116-->
    113117
    114118    <bridgehead renderas="sect4">Recommended</bridgehead>
     
    156160    <title>Installation of Transcode</title>
    157161
     162<!-- ffmpeg5 no longer carries libavresample.
    158163    <note>
    159164      <para>
     
    174179      </para>
    175180    </note>
     181-->
    176182
    177183    <note>
     
    193199       $(find . -name Makefile.in -exec grep -l 'docsdir =' {} \;) &amp;&amp;
    194200
    195 patch -Np1 -i ../transcode-&transcode-version;-ffmpeg4-1.patch   &amp;&amp;
    196201patch -Np1 -i ../transcode-&transcode-version;-gcc10_fix-1.patch &amp;&amp;
    197202
    198203./configure --prefix=/usr     \
    199204            --enable-alsa     \
    200             --enable-libmpeg2 &amp;&amp;
     205            --enable-libmpeg2 \
     206            --disable-ffmpeg  &amp;&amp;
    201207make</userinput></screen>
    202208
     
    218224    <para>
    219225      <command>sed -i ...</command>: Fixes install location for documentation.
     226    </para>
     227
     228    <para>
     229      <parameter>--disable-ffmpeg</parameter>: This switch disables support for
     230      ffmpeg because libavresample was removed in ffmpeg-5.x.
    220231    </para>
    221232
Note: See TracChangeset for help on using the changeset viewer.