* - decoding: Set by user.\
*/\
void *opaque;\
+\
+ /*
+ * dummy variable for tizen in Windows.
+ */\
+ int dummy_a;\
\
/**\
* error\
* - decoding: Set by libavcodec.\
*/\
int8_t *ref_index[2];\
+\
+ /*
+ * dummy variable for tizen in Windows.
+ */\
+ int dummy_b;\
\
/**\
* reordered opaque 64bit number (generally a PTS) from AVCodecContext.reordered_opaque\
* - decoding: Set by libavcodec\
*/\
void *hwaccel_picture_private;\
+\
+ /*
+ * dummy variable for tizen in Windows.
+ */\
+ int dummy_c;\
#define FF_QSCALE_TYPE_MPEG1 0
* - decoding: Set by user.
*/
int debug_mv;
+
+ /*
+ * dummy variable for tizen in Windows.
+ */
+ int dummy_a;
#define FF_DEBUG_VIS_MV_P_FOR 0x00000001 //visualize forward predicted MVs of P frames
#define FF_DEBUG_VIS_MV_B_FOR 0x00000002 //visualize forward predicted MVs of B frames
#define FF_DEBUG_VIS_MV_B_BACK 0x00000004 //visualize backward predicted MVs of B frames
*/
int bits_per_raw_sample;
+ /*
+ * dummy variable for tizen in Windows.
+ */
+ int dummy_b;
+
/**
* Audio channel layout.
* - encoding: set by user.
* - decoding: unused
*/
int rc_lookahead;
+
+ /*
+ * dummy variable for tizen in Windows.
+ */
+ int dummy_c;
} AVCodecContext;
/**
#define PARSER_FLAG_COMPLETE_FRAMES 0x0001
int64_t offset; ///< byte offset from starting packet start
+ /*
+ * dummy variable for tizen in Windows.
+ */
+ int dummy_a;
+
int64_t cur_frame_end[AV_PARSER_PTS_NB];
/*!
*/
int key_frame;
+ /*
+ * dummy variable for tizen in Windows.
+ */
+ int dummy_b;
+
/**
* Time difference in stream time base units from the pts of this
* packet to the point at which the output from the decoder has converged
*/
int pts_dts_delta;
+ /*
+ * dummy variable for tizen in Windows.
+ */
+ int dummy_c;
+
/**
* Position of the packet in file.
*
MODULE_LICENSE("GPL2");
// #define CODEC_DEBUG
-// #define CODEC_KVM
+#define CODEC_KVM
#ifdef CODEC_DEBUG
#define SVCODEC_LOG(fmt, ...) \
codec = (AVCodec*)paramInfo.in_args[1];
size = sizeof(AVCodecContext);
- printk(KERN_DEBUG "AVCodecContext size:%d\n", sizeof(AVCodecContext));
memcpy(&tmpCtx, ctx, size);
memcpy_toio(svcodec->memaddr, ctx, size);