diff options
author | HyungKyu Song <hk76.song@samsung.com> | 2013-02-16 00:14:42 +0900 |
---|---|---|
committer | HyungKyu Song <hk76.song@samsung.com> | 2013-02-16 00:14:42 +0900 |
commit | 715f9ce62a12d128754d2cf47f90a024b537e320 (patch) | |
tree | 57fb94c81055a31938bea831641092152a03089f /ext/jpeg/smokeformat.h | |
parent | dfa84b358c7cdf0535eba1fead62fc4122cc56e6 (diff) | |
download | gst-plugins-good0.10-tizen_2.0.tar.gz gst-plugins-good0.10-tizen_2.0.tar.bz2 gst-plugins-good0.10-tizen_2.0.zip |
Diffstat (limited to 'ext/jpeg/smokeformat.h')
-rw-r--r-- | ext/jpeg/smokeformat.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/ext/jpeg/smokeformat.h b/ext/jpeg/smokeformat.h new file mode 100644 index 0000000..1511934 --- /dev/null +++ b/ext/jpeg/smokeformat.h @@ -0,0 +1,46 @@ +/* Smoke Codec + * Copyright (C) <2004> Wim Taymans <wim@fluendo.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + + +#ifndef __SMOKEFORMAT_H__ +#define __SMOKEFORMAT_H__ + + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +#define IDX_TYPE 0 +#define IDX_WIDTH 1 +#define IDX_HEIGHT 3 +#define IDX_FPS_NUM 5 +#define IDX_FPS_DENOM 9 +#define IDX_FLAGS 13 +#define IDX_NUM_BLOCKS 14 +#define IDX_SIZE 16 +#define IDX_BLOCKS 18 +#define OFFS_PICT 18 + + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + +#endif /* __SMOKEFORMAT_H__ */ |