View | Details | Raw Unified
Collapse All | Expand All

(-) gephex-0.4.3.old/base/src/utils/structscanner.h (-3 / +3 lines)
 Lines 40-50    Link Here 
{
{
 IStructTokenListener& m_listener;
 IStructTokenListener& m_listener;
  
  
  void StructScanner::divideNameFromContent(const std::string& text,
  void divideNameFromContent(const std::string& text,
					    std::string& name,
					    std::string& name,
					    std::string& content) const;
					    std::string& content) const;
  void StructScanner::processName(const std::string& name) const;
  void processName(const std::string& name) const;
  void StructScanner::processContent(const std::string& content) const;
  void processContent(const std::string& content) const;
  std::string::size_type
  std::string::size_type
  findNextClosingBracket(const std::string& content,
  findNextClosingBracket(const std::string& content,
			 std::string::size_type n) const;
			 std::string::size_type n) const;
(-) gephex-0.4.3.old/contrib/ffmpeg/libavcodec/ac3.h (+2 lines)
 Lines 43-48    Link Here 
    int cplfleak, cplsleak;
    int cplfleak, cplsleak;
} AC3BitAllocParameters;
} AC3BitAllocParameters;
#if 0
extern const uint16_t ac3_freqs[3];
extern const uint16_t ac3_freqs[3];
extern const uint16_t ac3_bitratetab[19];
extern const uint16_t ac3_bitratetab[19];
extern const int16_t ac3_window[256];
extern const int16_t ac3_window[256];
 Lines 52-57    Link Here 
extern const uint16_t dbkneetab[4];
extern const uint16_t dbkneetab[4];
extern const uint16_t floortab[8];
extern const uint16_t floortab[8];
extern const uint16_t fgaintab[8];
extern const uint16_t fgaintab[8];
#endif
void ac3_common_init(void);
void ac3_common_init(void);
void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
void ac3_parametric_bit_allocation(AC3BitAllocParameters *s, uint8_t *bap,
(-) gephex-0.4.3.old/contrib/ffmpeg/libavcodec/avcodec.h (+8 lines)
 Lines 1685-1690    Link Here 
#define FF_OPT_MAX_DEPTH 10
#define FF_OPT_MAX_DEPTH 10
} AVOption;
} AVOption;
struct AVOption;
#ifdef HAVE_MMX
extern const struct AVOption avoptions_common[3 + 5];
#else
extern const struct AVOption avoptions_common[3];
#endif
extern const struct AVOption avoptions_workaround_bug[11];
/**
/**
 * Parse option(s) and sets fields in passed structure
 * Parse option(s) and sets fields in passed structure
 * @param strct	structure where the parsed results will be written
 * @param strct	structure where the parsed results will be written
(-) gephex-0.4.3.old/contrib/ffmpeg/libavcodec/common.h (-8 lines)
 Lines 62-75    Link Here 
#define AVOPTION_SUB(ptr) { .name = NULL, .help = (const char*)ptr }
#define AVOPTION_SUB(ptr) { .name = NULL, .help = (const char*)ptr }
#define AVOPTION_END() AVOPTION_SUB(NULL)
#define AVOPTION_END() AVOPTION_SUB(NULL)
struct AVOption;
#ifdef HAVE_MMX
extern const struct AVOption avoptions_common[3 + 5];
#else
extern const struct AVOption avoptions_common[3];
#endif
extern const struct AVOption avoptions_workaround_bug[11];
#endif /* HAVE_AV_CONFIG_H */
#endif /* HAVE_AV_CONFIG_H */
/* Suppress restrict if it was not defined in config.h.  */
/* Suppress restrict if it was not defined in config.h.  */
(-) gephex-0.4.3.old/contrib/ffmpeg/libavcodec/i386/dsputil_mmx.c (-20 / +16 lines)
 Lines 672-697    Link Here 
        "punpcklwd %%mm0, %%mm1		\n\t"
        "punpcklwd %%mm0, %%mm1		\n\t"
        "punpckhwd %%mm4, %%mm3		\n\t"
        "punpckhwd %%mm4, %%mm3		\n\t"
        "punpckhwd %%mm0, %%mm6		\n\t"
        "punpckhwd %%mm0, %%mm6		\n\t"
        "movd %%mm5, %0			\n\t"
        "movd %%mm5, (%0)               \n\t" 
        "punpckhdq %%mm5, %%mm5		\n\t"
        "punpckhdq %%mm5, %%mm5         \n\t" 
        "movd %%mm5, %1			\n\t"
        "movd %%mm5, (%0,%2)            \n\t" 
        "movd %%mm3, %2			\n\t"
        "movd %%mm3, (%0,%2,2)          \n\t" 
        "punpckhdq %%mm3, %%mm3		\n\t"
        "punpckhdq %%mm3, %%mm3         \n\t" 
        "movd %%mm3, %3			\n\t"
        "movd %%mm3, (%0,%3)            \n\t" 
        "movd %%mm1, %4			\n\t"
        "movd %%mm1, (%1)               \n\t" 
        "punpckhdq %%mm1, %%mm1		\n\t"
        "punpckhdq %%mm1, %%mm1         \n\t" 
        "movd %%mm1, %5			\n\t"
        "movd %%mm1, (%1,%2)            \n\t" 
        "movd %%mm6, %6			\n\t"
        "movd %%mm6, (%1,%2,2)          \n\t" 
        "punpckhdq %%mm6, %%mm6		\n\t"
        "punpckhdq %%mm6, %%mm6         \n\t" 
        "movd %%mm6, %7			\n\t"
        "movd %%mm6, (%1,%3)            \n\t" 
        : "=m" (*(uint32_t*)(src + 0*stride)),
        :: "r" (src), 
          "=m" (*(uint32_t*)(src + 1*stride)),
        "r" (src + 4*stride), 
          "=m" (*(uint32_t*)(src + 2*stride)),
        "r" ((long)   stride ), 
          "=m" (*(uint32_t*)(src + 3*stride)),
        "r" ((long)(3*stride)) 
          "=m" (*(uint32_t*)(src + 4*stride)),
          "=m" (*(uint32_t*)(src + 5*stride)),
          "=m" (*(uint32_t*)(src + 6*stride)),
          "=m" (*(uint32_t*)(src + 7*stride))
    );
    );
}
}
(-) gephex-0.4.3.old/engine/src/model/model.h (-1 / +1 lines)
 Lines 235-241    Link Here 
      void deleteModule(utils::AutoPtr<Graph>, int moduleID);
      void deleteModule(utils::AutoPtr<Graph>, int moduleID);
#ifndef NDEBUG
#ifndef NDEBUG
      void Model::checkGraphSerialisation();
      void checkGraphSerialisation();
#endif
#endif
    };
    };
(-) gephex-0.4.3.old/modules/src/frbinmodule/ffmpegdriver.cpp (-1 / +1 lines)
 Lines 366-372    Link Here 
    return m_num_frames;
    return m_num_frames;
  }
  }
  void FFMpegDriverImpl::decode_frame(unsigned int frame_number,
  void decode_frame(unsigned int frame_number,
                                      uint_32* framebuffer,
                                      uint_32* framebuffer,
                                      int width, int height)
                                      int width, int height)
  {
  {
(-) gephex-0.4.3.old/qtgui/src/gui/graphnameview.cpp (-2 / +2 lines)
 Lines 266-272    Link Here 
      m_textListener->textChanged(1,newStatus.c_str());
      m_textListener->textChanged(1,newStatus.c_str());
    }
    }
    virtual void GraphItem::propertySelected(int id)
    virtual void propertySelected(int id)
    {
    {
      switch(id)
      switch(id)
	{
	{
 Lines 428-434    Link Here 
      m_textListener->textChanged(1,newStatus.c_str());
      m_textListener->textChanged(1,newStatus.c_str());
    }
    }
    void SnapItem::propertySelected(int id)
    void propertySelected(int id)
    {
    {
      switch(id)
      switch(id)
	{
	{