comparison postprocess.h @ 110:858be852c955 libpostproc

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents c24dab9bca80
children bf39174d9785
comparison
equal deleted inserted replaced
109:4c5594af9816 110:858be852c955
16 * You should have received a copy of the GNU General Public License 16 * You should have received a copy of the GNU General Public License
17 * along with FFmpeg; if not, write to the Free Software 17 * along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef FFMPEG_POSTPROCESS_H 21 #ifndef POSTPROCESS_POSTPROCESS_H
22 #define FFMPEG_POSTPROCESS_H 22 #define POSTPROCESS_POSTPROCESS_H
23 23
24 /** 24 /**
25 * @file postprocess.h 25 * @file postprocess.h
26 * @brief 26 * @brief
27 * external postprocessing API 27 * external postprocessing API
87 #define PP_FORMAT_411 (0x00000002|PP_FORMAT) 87 #define PP_FORMAT_411 (0x00000002|PP_FORMAT)
88 #define PP_FORMAT_444 (0x00000000|PP_FORMAT) 88 #define PP_FORMAT_444 (0x00000000|PP_FORMAT)
89 89
90 #define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale 90 #define PP_PICT_TYPE_QP2 0x00000010 ///< MPEG2 style QScale
91 91
92 #endif /* FFMPEG_POSTPROCESS_H */ 92 #endif /* POSTPROCESS_POSTPROCESS_H */