Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: [ANNOUNCE] vdr-xine-0.2.2 plugin



hello,

your new 0.2.2 input_vdr.c did not compile; I had to change the
following lines:

In function:
static off_t internal_read (vdr_input_plugin_t *this, char *buf, off_t
len)

lines 594--600:

     if (frame) 
      { 
        int maxSize = 2 * frame->width * frame->height;
 
        img = xine_xmalloc(maxSize)
        int ratio_code = 0;
        int format = 0;

to
 
     if (frame) 
      { 
        int maxSize = 2 * frame->width * frame->height;
        int ratio_code = 0;
        int format = 0;
 
        img = xine_xmalloc(maxSize);
 
to get it compile.
 gcc --version
2.95.4

yours,
		Jouni


-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index