summaryrefslogtreecommitdiff
path: root/libavcodec/libschroedinger.h
diff options
context:
space:
mode:
authorAnuradha Suraparaju <anuradha@rd.bbc.co.uk>2009-08-15 11:59:53 +0000
committerDiego Biurrun <diego@biurrun.de>2009-08-15 11:59:53 +0000
commitd15f2e00c5a0c2b84f1a1f457044b6e57ca7e63d (patch)
tree0b005cec238ba7221133904d7188276696e27787 /libavcodec/libschroedinger.h
parent0ebe3b8e2bf74503d7c9cc383e29254a3cb06d55 (diff)
Fix bug caused by difference in stride and picture width.
When a frame is allocated using libschroedinger routines, the frame data size does not match the actual frame size if the width is not a multiple of 16. So we cannot do a straightforward memcpy of the frame returned by libschroedinger into the FFmpeg picture as the stride differs from the width. Fix this bug by allocating for the libschroedinger frame with the dimensions in AVCodecContext within libavcodec and passing the frame to libschroedinger. patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 19653 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libschroedinger.h')
-rw-r--r--libavcodec/libschroedinger.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/libschroedinger.h b/libavcodec/libschroedinger.h
index 71aa1b2251..cfc2087b47 100644
--- a/libavcodec/libschroedinger.h
+++ b/libavcodec/libschroedinger.h
@@ -53,4 +53,11 @@ SchroVideoFormatEnum ff_get_schro_video_format_preset (AVCodecContext *avccontex
int ff_get_schro_frame_format(SchroChromaFormat schro_chroma_fmt,
SchroFrameFormat *schro_frame_fmt);
+/**
+* Create a Schro frame based on the dimensions and frame format
+* passed. Returns a pointer to a frame on success, NULL on failure.
+*/
+SchroFrame *ff_create_schro_frame(AVCodecContext *avccontext,
+ SchroFrameFormat schro_frame_fmt);
+
#endif /* AVCODEC_LIBSCHROEDINGER_H */