diff options
Diffstat (limited to 'src/libxinevdec/qtrle.c')
-rw-r--r-- | src/libxinevdec/qtrle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libxinevdec/qtrle.c b/src/libxinevdec/qtrle.c index e02b59ced..5240dd23b 100644 --- a/src/libxinevdec/qtrle.c +++ b/src/libxinevdec/qtrle.c @@ -21,7 +21,7 @@ * For more information on the QT RLE format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: qtrle.c,v 1.9 2002/12/18 21:35:42 esnel Exp $ + * $Id: qtrle.c,v 1.10 2002/12/21 12:56:49 miguelfreitas Exp $ */ #include <stdio.h> @@ -693,7 +693,7 @@ static void qtrle_decode_data (video_decoder_t *this_gen, if ((buf->decoder_flags & BUF_FLAG_SPECIAL) && (buf->decoder_info[1] == BUF_SPECIAL_PALETTE)) { - palette = (palette_entry_t *)buf->decoder_info[3]; + palette = (palette_entry_t *)buf->decoder_info_ptr[2]; for (i = 0; i < buf->decoder_info[2]; i++) { this->yuv_palette[i * 4 + 0] = COMPUTE_Y(palette[i].r, palette[i].g, palette[i].b); @@ -900,6 +900,6 @@ static decoder_info_t dec_info_video = { plugin_info_t xine_plugin_info[] = { /* type, API, "name", version, special_info, init_function */ - { PLUGIN_VIDEO_DECODER, 13, "qtrle", XINE_VERSION_CODE, &dec_info_video, init_plugin }, + { PLUGIN_VIDEO_DECODER, 14, "qtrle", XINE_VERSION_CODE, &dec_info_video, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |