1) codecs.conf changed recently and demux_gif no longer needs to spit

out BGR8 upside-down.  the workaround for this is removed.
2) fixes a bug so that streaming gifs now works, and removes a
   workaround no longer needed. now libgif uses mplayer's stream_read
   function and thus http streaming, etc, works with demux_gif.
3) cosmetic clean-up because i no longer plan to support certain GIF
   extensions that would be more difficult to implement.
patch by Joey Parrish <joey@nicewarrior.org>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9345 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi 2003-02-08 15:49:03 +00:00
parent dde865f3a8
commit 6ad5abbedd
1 changed files with 7 additions and 11 deletions

View File

@ -24,10 +24,12 @@ static unsigned char *pallete = NULL;
#define GIF_SIGNATURE (('G' << 16) | ('I' << 8) | 'F')
int my_read_gif(GifFileType *gif, uint8_t *buf, int len) {
return stream_read(gif->UserData, buf, len);
}
int gif_check_file(demuxer_t *demuxer)
{
stream_reset(demuxer->stream);
stream_seek(demuxer->stream, 0);
if (stream_read_int24(demuxer->stream) == GIF_SIGNATURE)
return 1;
return 0;
@ -82,9 +84,6 @@ int demux_gif_fill_buffer(demuxer_t *demuxer)
}
}
printf("\n");
// FIXME support these:
} else if (code == 0x01) { // plaintext extension
} else if (code == 0xFF) { // application extension
}
while (p != NULL) {
if (DGifGetExtensionNext(gif, &p) == GIF_ERROR) {
@ -127,8 +126,7 @@ int demux_gif_fill_buffer(demuxer_t *demuxer)
for (y = 0; y < gif->Image.Height; y++) {
unsigned char *drow = dp->buffer;
int x = gif->Image.Height - y - 1; // BGR8 is flipped
unsigned char *gbuf = buf + (x * gif->Image.Width);
unsigned char *gbuf = buf + (y * gif->Image.Width);
drow += gif->Image.Width * (y + gif->Image.Top);
drow += gif->Image.Left;
@ -156,11 +154,9 @@ demuxer_t* demux_open_gif(demuxer_t* demuxer)
demuxer->seekable = 0; // FIXME
// go back to the beginning
stream_reset(demuxer->stream);
stream_seek(demuxer->stream, 0);
lseek(demuxer->stream->fd, 0, SEEK_SET);
stream_seek(stream,stream->start_pos);
gif = DGifOpenFileHandle(demuxer->stream->fd);
gif = DGifOpen(demuxer->stream, my_read_gif);
if (!gif) {
PrintGifError();
return NULL;