mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Give a little better name to the magic(_id) field in xvmc struct
Originally committed as revision 17310 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
49674dd052
commit
a0723a4d84
@ -38,7 +38,7 @@
|
||||
void ff_xvmc_init_block(MpegEncContext *s)
|
||||
{
|
||||
struct xvmc_render_state *render = (struct xvmc_render_state*)s->current_picture.data[2];
|
||||
if (!render || render->magic != AV_XVMC_RENDER_MAGIC) {
|
||||
if (!render || render->magic_id != AV_XVMC_RENDER_MAGIC) {
|
||||
assert(0);
|
||||
return; // make sure that this is a render packet
|
||||
}
|
||||
@ -69,7 +69,7 @@ int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx)
|
||||
struct xvmc_render_state *last, *next, *render = (struct xvmc_render_state*)s->current_picture.data[2];
|
||||
|
||||
assert(avctx);
|
||||
if (!render || render->magic != AV_XVMC_RENDER_MAGIC)
|
||||
if (!render || render->magic_id != AV_XVMC_RENDER_MAGIC)
|
||||
return -1; // make sure that this is a render packet
|
||||
|
||||
render->picture_structure = s->picture_structure;
|
||||
@ -92,7 +92,7 @@ int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx)
|
||||
next = (struct xvmc_render_state*)s->next_picture.data[2];
|
||||
if (!next)
|
||||
return -1;
|
||||
if (next->magic != AV_XVMC_RENDER_MAGIC)
|
||||
if (next->magic_id != AV_XVMC_RENDER_MAGIC)
|
||||
return -1;
|
||||
render->p_future_surface = next->p_surface;
|
||||
// no return here, going to set forward prediction
|
||||
@ -100,7 +100,7 @@ int ff_xvmc_field_start(MpegEncContext*s, AVCodecContext *avctx)
|
||||
last = (struct xvmc_render_state*)s->last_picture.data[2];
|
||||
if (!last)
|
||||
last = render; // predict second field from the first
|
||||
if (last->magic != AV_XVMC_RENDER_MAGIC)
|
||||
if (last->magic_id != AV_XVMC_RENDER_MAGIC)
|
||||
return -1;
|
||||
render->p_past_surface = last->p_surface;
|
||||
return 0;
|
||||
@ -154,7 +154,7 @@ void ff_xvmc_decode_mb(MpegEncContext *s)
|
||||
// start of XVMC-specific code
|
||||
render = (struct xvmc_render_state*)s->current_picture.data[2];
|
||||
assert(render);
|
||||
assert(render->magic == AV_XVMC_RENDER_MAGIC);
|
||||
assert(render->magic_id == AV_XVMC_RENDER_MAGIC);
|
||||
assert(render->mv_blocks);
|
||||
|
||||
// take the next free macroblock
|
||||
|
@ -36,7 +36,7 @@
|
||||
struct xvmc_render_state {
|
||||
/** set by calling application */
|
||||
//@{
|
||||
int magic; ///< used as a check against memory corruption by regular pixel routines
|
||||
int magic_id; ///< used as a check against memory corruption by regular pixel routines or other API structure
|
||||
|
||||
short* data_blocks;
|
||||
XvMCMacroBlock* mv_blocks;
|
||||
|
Loading…
Reference in New Issue
Block a user