~ubuntu-branches/ubuntu/feisty/avidemux/feisty

« back to all changes in this revision

Viewing changes to avidemux/ADM_codecs/ADM_xvideco.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *                                                                         *
16
16
 ***************************************************************************/
17
17
#ifdef USE_XX_XVID
18
 
   class decoderXvid : decoders
 
18
class decoderXvid:decoders
19
19
{
20
 
     protected:
21
 
                        void *_handle;
22
 
 
23
 
 
24
 
     public:
25
 
                                                                                decoderXvid(uint32_t w,uint32_t h);
26
 
                        virtual                                 ~decoderXvid();
27
 
                        virtual uint8_t         uncompress(uint8_t *in,uint8_t *out,uint32_t len,uint32_t *flag=NULL)           ;       
28
 
                       virtual                  void setParam( void );
29
 
}   ;
 
20
protected:
 
21
  void *_handle;
 
22
 
 
23
 
 
24
public:
 
25
    decoderXvid (uint32_t w, uint32_t h);
 
26
    virtual ~ decoderXvid ();
 
27
  virtual uint8_t uncompress (uint8_t * in, uint8_t * out, uint32_t len,
 
28
                              uint32_t * flag = NULL);
 
29
  virtual void setParam (void);
 
30
};
30
31
 
31
32
#endif