summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-03-08 19:35:37 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-03-08 19:35:37 +0100
commitfee484edaff77fc831d4cbbdd259ea0948103f86 (patch)
treeb8b7ba5d51cbb3da036a9e28534575aa8419e4ca /libavcodec/mpegvideo.h
parentd9d97f9b3374ee740a6f7218aecb0f5d6cec8f57 (diff)
parentad0c9f2d5d81e22207c6ccecc426bf7306acc327 (diff)
Merge commit 'ad0c9f2d5d81e22207c6ccecc426bf7306acc327'
* commit 'ad0c9f2d5d81e22207c6ccecc426bf7306acc327': lavc: move AVFrame.hwaccel_picture_private to Picture. Conflicts: libavcodec/avcodec.h libavcodec/mpegvideo.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index 4d6487dea4..b6226e2c2d 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -146,6 +146,10 @@ typedef struct Picture{
void *owner2; ///< pointer to the context that allocated this picture
int needs_realloc; ///< Picture needs to be reallocated (eg due to a frame size change)
int period_since_free; ///< "cycles" since this Picture has been freed
+ /**
+ * hardware accelerator private data
+ */
+ void *hwaccel_picture_private;
} Picture;
/**