~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_codecs/ADM_divx4.h

  • Committer: Bazaar Package Importer
  • Author(s): Matvey Kozhev
  • Date: 2007-12-18 13:53:04 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071218135304-cdqec2lg2bglyz15
Tags: 1:2.4~preview3-0.0ubuntu1
* Upload to Ubuntu. (LP: #163287, LP: #126572)
* debian/changelog: re-added Ubuntu releases.
* debian/control:
  - Require debhelper >= 5.0.51 (for dh_icons) and imagemagick.
  - Build-depend on libsdl1.2-dev instead of libsdl-dev.
  - Build against newer libx264-dev. (LP: #138854)
  - Removed libamrnb-dev, not in Ubuntu yet.
* debian/rules:
  - Install all icon sizes, using convert (upstream installs none).
  - Added missing calls to dh_installmenu, dh_installman, dh_icons and
    dh_desktop.
* debian/menu, debian/avidemux-qt.menu:
  - Corrected package and executable names.
* debian/avidemux-common.install: Install icons.
* debian/avidemux.common.manpages: Install man/avidemux.1.
* debian/links, debian/avidemux-cli.links, debian/avidemux-gtk.links:
  - Link manpages to avidemux.1.gz.
* debian/install, debian/avidemux-qt.install, debian/avidemux-gtk.desktop,
  debian/avidemux-qt.desktop: Install desktop files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          ADM_divx4.h  -  description
3
 
                             -------------------
4
 
 
5
 
        Mpeg4 ****decoder******** using divx 5.0.5
6
 
 
7
 
    begin                : Wed Sep 25 2002
8
 
    copyright            : (C) 2002 by mean
9
 
    email                : fixounet@free.fr
10
 
 ***************************************************************************/
11
 
 
12
 
/***************************************************************************
13
 
 *                                                                         *
14
 
 *   This program is free software; you can redistribute it and/or modify  *
15
 
 *   it under the terms of the GNU General Public License as published by  *
16
 
 *   the Free Software Foundation; either version 2 of the License, or     *
17
 
 *   (at your option) any later version.                                   *
18
 
 *                                                                         *
19
 
 ***************************************************************************/
20
 
#ifdef USE_DIVX
21
 
class decoderDIVX:public decoders
22
 
{
23
 
protected:
24
 
  void *_handle;
25
 
public:
26
 
    decoderDIVX (uint32_t w, uint32_t h);
27
 
    virtual ~ decoderDIVX ();
28
 
  virtual uint8_t uncompress (uint8_t * in, uint8_t * out, uint32_t len,
29
 
                              uint32_t * flag = NULL);
30
 
  virtual void setParam (void);
31
 
  virtual uint8_t bFramePossible (void)
32
 
  {
33
 
    return 0;
34
 
  }
35
 
};
36
 
#endif