Make filesrc respond to seek
[platform/upstream/gstreamer.git] / gst / elements / gstfilesrc.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstfilesrc.c:
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <gst/gst.h>
24
25 #include "gstfilesrc.h"
26
27 #include <stdio.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include <sys/mman.h>
32 #include <errno.h>
33 #include <string.h>
34
35
36 /**********************************************************************
37  * GStreamer Default File Source
38  * Theory of Operation
39  *
40  * This source uses mmap(2) to efficiently load data from a file.
41  * To do this without seriously polluting the applications' memory
42  * space, it must do so in smaller chunks, say 1-4MB at a time.
43  * Buffers are then subdivided from these mmap'd chunks, to directly
44  * make use of the mmap.
45  *
46  * To handle refcounting so that the mmap can be freed at the appropriate
47  * time, a buffer will be created for each mmap'd region, and all new
48  * buffers will be sub-buffers of this top-level buffer.  As they are 
49  * freed, the refcount goes down on the mmap'd buffer and its free()
50  * function is called, which will call munmap(2) on itself.
51  *
52  * If a buffer happens to cross the boundaries of an mmap'd region, we
53  * have to decide whether it's more efficient to copy the data into a
54  * new buffer, or mmap() just that buffer.  There will have to be a
55  * breakpoint size to determine which will be done.  The mmap() size
56  * has a lot to do with this as well, because you end up in double-
57  * jeopardy: the larger the outgoing buffer, the more data to copy when
58  * it overlaps, *and* the more frequently you'll have buffers that *do*
59  * overlap.
60  *
61  * Seeking is another tricky aspect to do efficiently.  The initial
62  * implementation of this source won't make use of these features, however.
63  * The issue is that if an application seeks backwards in a file, *and*
64  * that region of the file is covered by an mmap that hasn't been fully
65  * deallocated, we really should re-use it.  But keeping track of these
66  * regions is tricky because we have to lock the structure that holds
67  * them.  We need to settle on a locking primitive (GMutex seems to be
68  * a really good option...), then we can do that.
69  */
70
71
72 GstElementDetails gst_filesrc_details = {
73   "File Source",
74   "Source/File",
75   "Read from arbitrary point in a file",
76   VERSION,
77   "Erik Walthinsen <omega@cse.ogi.edu>",
78   "(C) 1999",
79 };
80
81 /*#define fs_print(format,args...) g_print(format, ## args)*/
82 #define fs_print(format,args...)
83
84 /* FileSrc signals and args */
85 enum {
86   /* FILL ME */
87   LAST_SIGNAL
88 };
89
90 enum {
91   ARG_0,
92   ARG_LOCATION,
93   ARG_FILESIZE,
94   ARG_FD,
95   ARG_BLOCKSIZE,
96   ARG_OFFSET,
97   ARG_MAPSIZE,
98   ARG_TOUCH,
99 };
100
101
102 static void             gst_filesrc_class_init          (GstFileSrcClass *klass);
103 static void             gst_filesrc_init                (GstFileSrc *filesrc);
104 static void             gst_filesrc_dispose             (GObject *object);
105
106 static void             gst_filesrc_set_property        (GObject *object, guint prop_id, 
107                                                          const GValue *value, GParamSpec *pspec);
108 static void             gst_filesrc_get_property        (GObject *object, guint prop_id, 
109                                                          GValue *value, GParamSpec *pspec);
110
111 static GstBuffer *      gst_filesrc_get                 (GstPad *pad);
112 static gboolean         gst_filesrc_srcpad_event        (GstPad *pad, GstEvent *event);
113
114 static GstElementStateReturn    gst_filesrc_change_state        (GstElement *element);
115
116
117 static GstElementClass *parent_class = NULL;
118 /*static guint gst_filesrc_signals[LAST_SIGNAL] = { 0 };*/
119
120 GType
121 gst_filesrc_get_type(void)
122 {
123   static GType filesrc_type = 0;
124
125   if (!filesrc_type) {
126     static const GTypeInfo filesrc_info = {
127       sizeof(GstFileSrcClass),      NULL,
128       NULL,
129       (GClassInitFunc)gst_filesrc_class_init,
130       NULL,
131       NULL,
132       sizeof(GstFileSrc),
133       0,
134       (GInstanceInitFunc)gst_filesrc_init,
135     };
136     filesrc_type = g_type_register_static (GST_TYPE_ELEMENT, "GstFileSrc", &filesrc_info, 0);
137   }
138   return filesrc_type;
139 }
140
141 static void
142 gst_filesrc_class_init (GstFileSrcClass *klass)
143 {
144   GObjectClass *gobject_class;
145   GstElementClass *gstelement_class;
146
147   gobject_class = (GObjectClass*)klass;
148   gstelement_class = (GstElementClass*)klass;
149
150   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
151
152   gst_element_install_std_props (
153           GST_ELEMENT_CLASS (klass),
154           "fd",           ARG_FD,           G_PARAM_READABLE,
155           "offset",       ARG_OFFSET,       G_PARAM_READWRITE,
156           "filesize",     ARG_FILESIZE,     G_PARAM_READABLE,
157           "location",     ARG_LOCATION,     G_PARAM_READWRITE,
158           "blocksize",    ARG_BLOCKSIZE,    G_PARAM_READWRITE,
159           "mmapsize",     ARG_MAPSIZE,      G_PARAM_READWRITE,
160           "touch",        ARG_TOUCH,        G_PARAM_READWRITE,
161           NULL);
162
163   gobject_class->dispose        = gst_filesrc_dispose;
164   gobject_class->set_property   = gst_filesrc_set_property;
165   gobject_class->get_property   = gst_filesrc_get_property;
166
167   gstelement_class->change_state = gst_filesrc_change_state;
168 }
169
170 static gint
171 gst_filesrc_bufcmp (gconstpointer a, gconstpointer b)
172 {
173 /*  GstBuffer *bufa = (GstBuffer *)a, *bufb = (GstBuffer *)b;*/
174
175   /* sort first by offset, then in reverse by size */
176   if (GST_BUFFER_OFFSET(a) < GST_BUFFER_OFFSET(b)) return -1;
177   else if (GST_BUFFER_OFFSET(a) > GST_BUFFER_OFFSET(b)) return 1;
178   else if (GST_BUFFER_SIZE(a) > GST_BUFFER_SIZE(b)) return -1;
179   else if (GST_BUFFER_SIZE(a) < GST_BUFFER_SIZE(b)) return 1;
180   else return 0;
181 }
182
183 static void
184 gst_filesrc_init (GstFileSrc *src)
185 {
186   src->srcpad = gst_pad_new ("src", GST_PAD_SRC);
187   gst_pad_set_get_function (src->srcpad,gst_filesrc_get);
188   gst_pad_set_event_function (src->srcpad,gst_filesrc_srcpad_event);
189   gst_element_add_pad (GST_ELEMENT (src), src->srcpad);
190
191   src->pagesize = getpagesize();
192
193   src->filename = NULL;
194   src->fd = 0;
195   src->filelen = 0;
196
197   src->curoffset = 0;
198   src->block_size = 4096;
199   src->touch = TRUE;
200
201   src->mapbuf = NULL;
202   src->mapsize = 4 * 1024 * 1024;               /* default is 4MB */
203
204   src->map_regions = g_tree_new(gst_filesrc_bufcmp);
205   src->map_regions_lock = g_mutex_new();
206
207   src->seek_happened = FALSE;
208 }
209
210 static void
211 gst_filesrc_dispose (GObject *object)
212 {
213   GstFileSrc *src;
214
215   src = GST_FILESRC (object);
216
217   G_OBJECT_CLASS (parent_class)->dispose (object);
218
219   g_tree_destroy (src->map_regions);
220   g_mutex_free (src->map_regions_lock);
221   if (src->filename)
222     g_free (src->filename);
223 }
224
225
226 static void
227 gst_filesrc_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
228 {
229   GstFileSrc *src;
230
231   /* it's not null if we got it, but it might not be ours */
232   g_return_if_fail (GST_IS_FILESRC (object));
233
234   src = GST_FILESRC (object);
235
236   switch (prop_id) {
237     case ARG_LOCATION:
238       /* the element must be stopped in order to do this */
239       g_return_if_fail (GST_STATE (src) < GST_STATE_PLAYING);
240
241       if (src->filename) g_free (src->filename);
242       /* clear the filename if we get a NULL (is that possible?) */
243       if (g_value_get_string (value) == NULL) {
244         gst_element_set_state (GST_ELEMENT (object), GST_STATE_NULL);
245         src->filename = NULL;
246       /* otherwise set the new filename */
247       } else {
248         src->filename = g_strdup (g_value_get_string (value));
249       }
250       break;
251     case ARG_BLOCKSIZE:
252       src->block_size = g_value_get_ulong (value);
253       break;
254     case ARG_OFFSET:
255       src->curoffset = g_value_get_int64 (value);
256       break;
257     case ARG_MAPSIZE:
258       if ((src->mapsize % src->pagesize) == 0)
259         src->mapsize = g_value_get_ulong (value);
260       else
261         GST_INFO(0, "invalid mapsize, must a multiple of pagesize, which is %d\n",src->pagesize);
262       break;
263     case ARG_TOUCH:
264       src->touch = g_value_get_boolean (value);
265       break;
266     default:
267       break;
268   }
269 }
270
271 static void
272 gst_filesrc_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
273 {
274   GstFileSrc *src;
275
276   /* it's not null if we got it, but it might not be ours */
277   g_return_if_fail (GST_IS_FILESRC (object));
278
279   src = GST_FILESRC (object);
280
281   switch (prop_id) {
282     case ARG_LOCATION:
283       g_value_set_string (value, src->filename);
284       break;
285     case ARG_FILESIZE:
286       g_value_set_int64 (value, src->filelen);
287       break;
288     case ARG_FD:
289       g_value_set_int (value, src->fd);
290       break;
291     case ARG_BLOCKSIZE:
292       g_value_set_ulong (value, src->block_size);
293       break;
294     case ARG_OFFSET:
295       g_value_set_int64 (value, src->curoffset);
296       break;
297     case ARG_MAPSIZE:
298       g_value_set_ulong (value, src->mapsize);
299       break;
300     case ARG_TOUCH:
301       g_value_set_boolean (value, src->touch);
302       break;
303     default:
304       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
305       break;
306   }
307 }
308
309 static void
310 gst_filesrc_free_parent_mmap (GstBuffer *buf)
311 {
312   GstFileSrc *src = GST_FILESRC(GST_BUFFER_POOL_PRIVATE(buf));
313
314   fs_print ("freeing mmap()d buffer at %d+%d\n",GST_BUFFER_OFFSET(buf),GST_BUFFER_SIZE(buf));
315
316   /* remove the buffer from the list of available mmap'd regions */
317   g_mutex_lock(src->map_regions_lock);
318   g_tree_remove(src->map_regions,buf);
319   /* check to see if the tree is empty */
320   if (g_tree_nnodes(src->map_regions) == 0) {
321     /* we have to free the bufferpool we don't have yet */
322   }
323   g_mutex_unlock(src->map_regions_lock);
324
325 #ifdef MADV_DONTNEED
326   /* madvise to tell the kernel what to do with it */
327   madvise(GST_BUFFER_DATA(buf),GST_BUFFER_SIZE(buf),MADV_DONTNEED);
328 #endif
329   /* now unmap the memory */
330   munmap(GST_BUFFER_DATA(buf),GST_BUFFER_MAXSIZE(buf));
331 }
332
333 static GstBuffer *
334 gst_filesrc_map_region (GstFileSrc *src, off_t offset, size_t size)
335 {
336   GstBuffer *buf;
337   gint retval;
338
339   g_return_val_if_fail (offset >= 0, NULL);
340
341   fs_print  ("mapping region %08lx+%08lx from file into memory\n",offset,size);
342
343   /* time to allocate a new mapbuf */
344   buf = gst_buffer_new();
345   /* mmap() the data into this new buffer */
346   GST_BUFFER_DATA(buf) = mmap (NULL, size, PROT_READ, MAP_SHARED, src->fd, offset);
347   if (GST_BUFFER_DATA(buf) == NULL) {
348     gst_element_error (GST_ELEMENT (src), "couldn't map file");
349   } else if (GST_BUFFER_DATA(buf) == MAP_FAILED) {
350     gst_element_error (GST_ELEMENT (src), "mmap (0x%x, %d, 0x%llx) : %s",
351              size, src->fd, offset, strerror (errno));
352   }
353 #ifdef MADV_SEQUENTIAL
354   /* madvise to tell the kernel what to do with it */
355   retval = madvise(GST_BUFFER_DATA(buf),GST_BUFFER_SIZE(buf),MADV_SEQUENTIAL);
356 #endif
357   /* fill in the rest of the fields */
358   GST_BUFFER_FLAGS(buf) = GST_BUFFER_READONLY | GST_BUFFER_ORIGINAL;
359   GST_BUFFER_SIZE(buf) = size;
360   GST_BUFFER_MAXSIZE(buf) = size;
361   GST_BUFFER_OFFSET(buf) = offset;
362   GST_BUFFER_TIMESTAMP(buf) = -1LL;
363   GST_BUFFER_POOL_PRIVATE(buf) = src;
364   GST_BUFFER_FREE_FUNC(buf) = gst_filesrc_free_parent_mmap;
365
366   g_mutex_lock(src->map_regions_lock);
367   g_tree_insert(src->map_regions,buf,buf);
368   g_mutex_unlock(src->map_regions_lock);
369
370   return buf;
371 }
372
373 static GstBuffer *
374 gst_filesrc_map_small_region (GstFileSrc *src, off_t offset, size_t size)
375 {
376   size_t mapsize;
377   off_t mod, mapbase;
378   GstBuffer *map;
379
380 /*  printf("attempting to map a small buffer at %d+%d\n",offset,size); */
381
382   /* if the offset starts at a non-page boundary, we have to special case */
383   if ((mod = offset % src->pagesize)) {
384     GstBuffer *ret;
385
386     mapbase = offset - mod;
387     mapsize = ((size + mod + src->pagesize - 1) / src->pagesize) * src->pagesize;
388 /*    printf("not on page boundaries, resizing map to %d+%d\n",mapbase,mapsize);*/
389     map = gst_filesrc_map_region(src, mapbase, mapsize);
390     ret = gst_buffer_create_sub (map, offset - mapbase, size);
391
392     gst_buffer_unref (map);
393
394     return ret;
395   }
396
397   return gst_filesrc_map_region(src,offset,size);
398 }
399
400 typedef struct {
401   off_t offset;
402   off_t size;
403 } GstFileSrcRegion;
404
405 /* This allows us to search for a potential mmap region. */
406 static gint
407 gst_filesrc_search_region_match (gpointer a, gpointer b)
408 {
409   GstFileSrcRegion *r = (GstFileSrcRegion *)b;
410
411   /* trying to walk b down the tree, current node is a */
412   if (r->offset < GST_BUFFER_OFFSET(a)) return -1;
413   else if (r->offset >= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 1;
414   else if ((r->offset + r->size) <= (GST_BUFFER_OFFSET(a) + GST_BUFFER_SIZE(a))) return 0;
415
416   return -2;
417 }
418
419 /**
420  * gst_filesrc_get:
421  * @pad: #GstPad to push a buffer from
422  *
423  * Push a new buffer from the filesrc at the current offset.
424  */
425 static GstBuffer *
426 gst_filesrc_get (GstPad *pad)
427 {
428   GstFileSrc *src;
429   GstBuffer *buf = NULL, *map;
430   size_t readsize;
431   off_t readend,mapstart,mapend;
432   GstFileSrcRegion region;
433   int i;
434
435   g_return_val_if_fail (pad != NULL, NULL);
436   src = GST_FILESRC (gst_pad_get_parent (pad));
437   g_return_val_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN), NULL);
438
439   /* check for seek */
440   if (src->seek_happened) {
441     src->seek_happened = FALSE;
442     return GST_BUFFER (gst_event_new (GST_EVENT_DISCONTINUOUS));
443   }
444   /* check for flush */
445   if (src->need_flush) {
446     src->need_flush = FALSE;
447     return GST_BUFFER (gst_event_new_flush ());
448   }
449
450   /* check for EOF */
451   if (src->curoffset == src->filelen) {
452     gst_element_set_eos (GST_ELEMENT (src));
453     return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
454   }
455
456   /* calculate end pointers so we don't have to do so repeatedly later */
457   readsize = src->block_size;
458   readend = src->curoffset + src->block_size;           /* note this is the byte *after* the read */
459   mapstart = GST_BUFFER_OFFSET(src->mapbuf);
460   mapend = mapstart + GST_BUFFER_SIZE(src->mapbuf);     /* note this is the byte *after* the map */
461
462   /* check to see if we're going to overflow the end of the file */
463   if (readend > src->filelen) {
464     readsize = src->filelen - src->curoffset;
465     readend = src->curoffset;
466   }
467
468   /* if the start is past the mapstart */
469   if (src->curoffset >= mapstart) {
470     /* if the end is before the mapend, the buffer is in current mmap region... */
471     /* ('cause by definition if readend is in the buffer, so's readstart) */
472     if (readend <= mapend) {
473       fs_print ("read buf %d+%d lives in current mapbuf %d+%d, creating subbuffer of mapbuf\n",
474              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
475       buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - GST_BUFFER_OFFSET(src->mapbuf),
476                                    readsize);
477
478     /* if the start actually is within the current mmap region, map an overlap buffer */
479     } else if (src->curoffset < mapend) {
480       fs_print ("read buf %d+%d starts in mapbuf %d+%d but ends outside, creating new mmap\n",
481              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
482       buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
483     }
484
485     /* the only other option is that buffer is totally outside, which means we search for it */
486
487   /* now we can assume that the start is *before* the current mmap region */
488   /* if the readend is past mapstart, we have two options */
489   } else if (readend >= mapstart) {
490     /* either the read buffer overlaps the start of the mmap region */
491     /* or the read buffer fully contains the current mmap region    */
492     /* either way, it's really not relevant, we just create a new region anyway*/
493     fs_print ("read buf %d+%d starts before mapbuf %d+%d, but overlaps it\n",
494              src->curoffset,readsize,GST_BUFFER_OFFSET(src->mapbuf),GST_BUFFER_SIZE(src->mapbuf));
495     buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
496   }
497
498   /* then deal with the case where the read buffer is totally outside */
499   if (buf == NULL) {
500     /* first check to see if there's a map that covers the right region already */
501     fs_print ("searching for mapbuf to cover %d+%d\n",src->curoffset,readsize);
502     region.offset = src->curoffset;
503     region.size = readsize;
504     map = g_tree_search (src->map_regions,
505                          (GCompareFunc) gst_filesrc_search_region_match,
506                          (gpointer)&region);
507
508     /* if we found an exact match, subbuffer it */
509     if (map != NULL) {
510       fs_print ("found mapbuf at %d+%d, creating subbuffer\n",GST_BUFFER_OFFSET(map),GST_BUFFER_SIZE(map));
511       buf = gst_buffer_create_sub (map, src->curoffset - GST_BUFFER_OFFSET(map), readsize);
512
513     /* otherwise we need to create something out of thin air */
514     } else {
515       /* if the read buffer crosses a mmap region boundary, create a one-off region */
516       if ((src->curoffset / src->mapsize) != (readend / src->mapsize)) {
517         fs_print ("read buf %d+%d crosses a %d-byte boundary, creating a one-off\n",
518                src->curoffset,readsize,src->mapsize);
519         buf = gst_filesrc_map_small_region (src, src->curoffset, readsize);
520
521       /* otherwise we will create a new mmap region and set it to the default */
522       } else {
523         off_t nextmap = src->curoffset - (src->curoffset % src->mapsize);
524         fs_print ("read buf %d+%d in new mapbuf at %d+%d, mapping and subbuffering\n",
525                src->curoffset,readsize,nextmap,src->mapsize);
526         /* first, we're done with the old mapbuf */
527         gst_buffer_unref(src->mapbuf);
528         /* create a new one */
529         src->mapbuf = gst_filesrc_map_region (src, nextmap, src->mapsize);
530         /* subbuffer it */
531         buf = gst_buffer_create_sub (src->mapbuf, src->curoffset - GST_BUFFER_OFFSET(src->mapbuf), readsize);
532       }
533     }
534   }
535
536   /* if we need to touch the buffer (to bring it into memory), do so */
537   if (src->touch) {
538     volatile guchar *p = GST_BUFFER_DATA (buf), c;
539     for (i=0;i<GST_BUFFER_SIZE(buf);i+=src->pagesize)
540       c = p[i];
541   }
542
543   /* we're done, return the buffer */
544   src->curoffset += GST_BUFFER_SIZE(buf);
545   return buf;
546 }
547
548 /* open the file and mmap it, necessary to go to READY state */
549 static gboolean 
550 gst_filesrc_open_file (GstFileSrc *src)
551 {
552   g_return_val_if_fail (!GST_FLAG_IS_SET (src ,GST_FILESRC_OPEN), FALSE);
553
554   GST_DEBUG(0, "opening file %s\n",src->filename);
555
556   /* open the file */
557   src->fd = open (src->filename, O_RDONLY);
558   if (src->fd < 0) {
559     gst_element_error (GST_ELEMENT (src), "opening file \"%s\" (%s)", 
560                        src->filename, strerror (errno), NULL);
561     return FALSE;
562   } else {
563                 /* check if it is a regular file, otherwise bail out */
564                 struct stat stat_results;
565                 fstat(src->fd, &stat_results);
566                 if (!S_ISREG(stat_results.st_mode)) {
567                         gst_element_error (GST_ELEMENT (src), "opening file \"%s\" failed. it isn't a regular file", 
568                                                                                                  src->filename, NULL);
569                         close(src->fd);
570                         return FALSE;
571                 }
572                 
573     /* find the file length */
574     src->filelen = lseek (src->fd, 0, SEEK_END);
575     lseek (src->fd, 0, SEEK_SET);
576
577     /* allocate the first mmap'd region */
578     src->mapbuf = gst_filesrc_map_region (src, 0, src->mapsize);
579
580     src->curoffset = 0;
581
582     GST_FLAG_SET (src, GST_FILESRC_OPEN);
583   }
584   return TRUE;
585 }
586
587 /* unmap and close the file */
588 static void
589 gst_filesrc_close_file (GstFileSrc *src)
590 {
591   g_return_if_fail (GST_FLAG_IS_SET (src, GST_FILESRC_OPEN));
592
593   /* close the file */
594   close (src->fd);
595
596   /* zero out a lot of our state */
597   src->fd = 0;
598   src->filelen = 0;
599   src->curoffset = 0;
600   if (src->mapbuf)
601     gst_buffer_unref (src->mapbuf);
602
603   GST_FLAG_UNSET (src, GST_FILESRC_OPEN);
604 }
605
606
607 static GstElementStateReturn
608 gst_filesrc_change_state (GstElement *element)
609 {
610   GstFileSrc *src = GST_FILESRC(element);
611
612   switch (GST_STATE_TRANSITION (element)) {
613     case GST_STATE_NULL_TO_READY:
614       if (!GST_FLAG_IS_SET (element, GST_FILESRC_OPEN)) {
615         if (!gst_filesrc_open_file (GST_FILESRC (element)))
616           return GST_STATE_FAILURE;
617       }
618       break;
619     case GST_STATE_READY_TO_NULL:
620       if (GST_FLAG_IS_SET (element, GST_FILESRC_OPEN))
621         gst_filesrc_close_file (GST_FILESRC (element));
622       break;
623     case GST_STATE_READY_TO_PAUSED:
624     case GST_STATE_PAUSED_TO_READY:
625       src->curoffset = 0;
626     default:
627       break;
628   }
629
630   if (GST_ELEMENT_CLASS (parent_class)->change_state)
631     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
632
633   return GST_STATE_SUCCESS;
634 }
635
636 static gboolean
637 gst_filesrc_srcpad_event (GstPad *pad, GstEvent *event)
638 {
639   GstFileSrc *src = GST_FILESRC(GST_PAD_PARENT(pad));
640
641   switch (GST_EVENT_TYPE (event)) {
642     case GST_EVENT_SEEK:
643       switch (GST_EVENT_SEEK_TYPE (event)) {
644         case GST_SEEK_BYTEOFFSET_SET:
645           src->curoffset = (guint64) GST_EVENT_SEEK_OFFSET (event);
646           break;
647         case GST_SEEK_BYTEOFFSET_CUR:
648           src->curoffset += GST_EVENT_SEEK_OFFSET (event);
649           break;
650         case GST_SEEK_BYTEOFFSET_END:
651           src->curoffset = src->filelen - ABS (GST_EVENT_SEEK_OFFSET (event));
652           break;
653         default:
654           return FALSE;
655           break;
656       }
657       src->seek_happened = TRUE;
658       src->need_flush = GST_EVENT_SEEK_FLUSH(event);
659       gst_event_free (event);
660       /* push a discontinuous event? */
661       break;
662     case GST_EVENT_FLUSH:
663       src->need_flush = TRUE;
664       break;
665     default:
666       return FALSE;
667       break;
668   }
669
670   return TRUE;
671 }