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

« back to all changes in this revision

Viewing changes to avidemux/ADM_videoFilter/ADM_vidSoften.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
// C++ Interface: ADM_vidSoften
 
3
//
 
4
// Description: 
 
5
//
 
6
// Very similar to Avisynth spatial soften
 
7
// you might even say inspired by
 
8
//
 
9
//
 
10
// Author: mean <fixounet@free.fr>, (C) 2004
 
11
//
 
12
// Copyright: See COPYING file that comes with this distribution
 
13
//
 
14
//
 
15
 
 
16
#ifndef MSOFTEN_
 
17
#define MSOFTEN_
 
18
 
 
19
typedef struct MaskedSoften_CONF
 
20
{
 
21
        uint32_t luma,chroma;
 
22
        uint32_t radius;
 
23
}MaskedSoften_CONF;
 
24
 
 
25
 class  ADMVideoMaskedSoften:public AVDMGenericVideoStream
 
26
 {
 
27
 
 
28
 protected:
 
29
                
 
30
                
 
31
     virtual    char                    *printConf(void);
 
32
                uint8_t                 *_reverse;
 
33
                uint8_t                 radius5(uint8_t *_uncompressed, uint8_t *data) ;
 
34
                uint8_t                 radius3(uint8_t *_uncompressed, uint8_t *data) ;
 
35
 
 
36
 public:
 
37
                MaskedSoften_CONF *_param;
 
38
 
 
39
                                ADMVideoMaskedSoften(  AVDMGenericVideoStream *in,
 
40
                                                        CONFcouple *setup);
 
41
 
 
42
        virtual                 ~ADMVideoMaskedSoften();
 
43
        virtual uint8_t         getFrameNumberNoAlloc(uint32_t frame, uint32_t *len,
 
44
                                                        ADMImage *data,uint32_t *flags);
 
45
        virtual uint8_t         configure( AVDMGenericVideoStream *instream) ;
 
46
        virtual uint8_t         getCoupledConf( CONFcouple **couples);
 
47
        
 
48
 }     ;
 
49
#endif