summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/libpostproc/postprocess.h
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2006-02-05 14:11:16 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2006-02-05 14:11:16 +0000
commit40c9e400fdaf1e9bb49eb0d0f0e437025b0ab6e8 (patch)
tree0a0d683a843d5d50b12233116b777e8e2780cad9 /src/libffmpeg/libavcodec/libpostproc/postprocess.h
parent9a299a12ea17a363354f451d2efd15bfbf3c7dc6 (diff)
downloadxine-lib-40c9e400fdaf1e9bb49eb0d0f0e437025b0ab6e8.tar.gz
xine-lib-40c9e400fdaf1e9bb49eb0d0f0e437025b0ab6e8.tar.bz2
ffmpeg sync
CVS patchset: 7872 CVS date: 2006/02/05 14:11:16
Diffstat (limited to 'src/libffmpeg/libavcodec/libpostproc/postprocess.h')
-rw-r--r--src/libffmpeg/libavcodec/libpostproc/postprocess.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/libffmpeg/libavcodec/libpostproc/postprocess.h b/src/libffmpeg/libavcodec/libpostproc/postprocess.h
index b5d4fa319..114c88a38 100644
--- a/src/libffmpeg/libavcodec/libpostproc/postprocess.h
+++ b/src/libffmpeg/libavcodec/libpostproc/postprocess.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef NEWPOSTPROCESS_H
@@ -21,7 +21,7 @@
/**
* @file postprocess.h
- * @brief
+ * @brief
* external api for the pp stuff
*/
@@ -29,6 +29,12 @@
extern "C" {
#endif
+#define LIBPOSTPROC_VERSION_INT ((51<<16)+(1<<8)+0)
+#define LIBPOSTPROC_VERSION 51.1.0
+#define LIBPOSTPROC_BUILD LIBPOSTPROC_VERSION_INT
+
+#define LIBPOSTPROC_IDENT "postproc" AV_STRINGIFY(LIBPOSTPROC_VERSION)
+
#define PP_QUALITY_MAX 6
#define QP_STORE_T int8_t
@@ -42,7 +48,7 @@ void pp_postprocess(uint8_t * src[3], int srcStride[3],
uint8_t * dst[3], int dstStride[3],
int horizontalSize, int verticalSize,
QP_STORE_T *QP_store, int QP_stride,
- pp_mode_t *mode, pp_context_t *ppContext, int pict_type);
+ pp_mode_t *mode, pp_context_t *ppContext, int pict_type);
/**