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

« back to all changes in this revision

Viewing changes to addons/avisynthproxy/avsHeader.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:
 
1
/*
 
2
 
 
3
 
 
4
 
 
5
*/
 
6
#ifndef AVS_HEADER_H
 
7
#define AVS_HEADER_H
 
8
typedef enum AvsEnum
 
9
{
 
10
        AvsCmd_GetInfo=1,
 
11
        AvsCmd_SendInfo,
 
12
        AvsCmd_GetFrame,
 
13
        AvsCmd_SendFrame,
 
14
        AvsCmd_Quit
 
15
};
 
16
 
 
17
typedef struct avsInfo
 
18
{
 
19
        uint32_t width;
 
20
        uint32_t height;
 
21
        uint32_t fps1000;
 
22
        uint32_t nbFrames;
 
23
}avsyInfo;
 
24
#endif
 
25