Added seek support.

Original commit message from CVS:
Added seek support.
This commit is contained in:
Edgard Lima 2006-12-22 16:23:32 +00:00
parent b9925f8b22
commit 983cd81f2c
3 changed files with 573 additions and 489 deletions

View file

@ -1,3 +1,11 @@
2006-12-22 Edgard Lima <edgard.lima@indt.org.br>
* ext/neon/gstneonhttpsrc.c:
* ext/neon/gstneonhttpsrc.h:
Added seek support.
Patch by: Andre Moreira Magalhaes <andrunko@gmail.com>
Fixes: #375264.
2006-12-22 Stefan Kost <ensonic@users.sf.net>
* tests/check/elements/mpeg2enc.c: (setup_mpeg2enc),

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,7 @@
/* GStreamer
* Copyright (C) <2005> Edgard Lima <edgard.lima@indt.org.br>
* Copyright (C) <2006> Rosfran Borges <rosfran.borges@indt.org.br>
* Copyright (C) <2006> Andre Moreira Magalhaes <andre.magalhaes@indt.org.br>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@ -69,6 +71,9 @@ struct _GstNeonhttpSrc {
/* enable Neon HTTP debug messages */
gboolean neon_http_msgs_dbg;
gint64 read_position;
gboolean seekable;
};
struct _GstNeonhttpSrcClass {