summaryrefslogtreecommitdiff
path: root/transcode/transcode-gcc10.patch
blob: fcee415deee1bbb8b7c9c5e637be76a016e82758 (plain)
    1 --- a/import/demux_pass.c
    2 +++ b/import/demux_pass.c
    3 @@ -32,8 +32,6 @@
    4  #include "packets.h"
    5  
    6  
    7 -int gop, gop_pts, gop_cnt;
    8 -
    9  /* if you listen carefully, then you can hear the desesperate
   10   * whisper of this code calling for a rewrite. Or for a redesign.
   11   * Or both. --  FR
   12 --- a/import/extract_ac3.c
   13 +++ b/import/extract_ac3.c
   14 @@ -334,7 +334,6 @@
   15  FILE *fd;
   16  
   17  #define MAX_BUF 4096
   18 -char audio[MAX_BUF];
   19  
   20  
   21  /* from ac3scan.c */
   22 @@ -472,6 +471,8 @@
   23  void extract_ac3(info_t *ipipe)
   24  {
   25  
   26 +    char audio[MAX_BUF];
   27 +
   28      int error=0;
   29  
   30      avi_t *avifile;
   31 --- a/import/extract_mp3.c
   32 +++ b/import/extract_mp3.c
   33 @@ -243,7 +243,6 @@
   34  }
   35  
   36  #define MAX_BUF 4096
   37 -char audio[MAX_BUF];
   38  
   39  /* ------------------------------------------------------------
   40   *
   41 @@ -258,6 +257,7 @@
   42  
   43  void extract_mp3(info_t *ipipe)
   44  {
   45 +    char audio[MAX_BUF];
   46  
   47      int error=0;
   48  

Generated by cgit