~ubuntu-branches/ubuntu/wily/mpv/wily

« back to all changes in this revision

Viewing changes to stream/stream_memory.c

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2013-10-16 12:38:59 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131016123859-wj70wr6n3mzimx3e
Tags: 0.2.0-1
* New upstream release
* Install sample configuration files as examples
* Enable Lua scripting support
* Remove copyright for talloc (not used anymore)
* Update installed docs list
* Update 01_spelling.patch
* Enable VAAPI support

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
static int seek(stream_t *s, int64_t newpos)
38
38
{
39
 
    s->pos = newpos;
40
39
    return 1;
41
40
}
42
41
 
73
72
}
74
73
 
75
74
const stream_info_t stream_info_memory = {
76
 
    "memory",
77
 
    open_f,
78
 
    { "memory", NULL },
 
75
    .name = "memory",
 
76
    .open = open_f,
 
77
    .protocols = (const char*[]){ "memory", NULL },
79
78
};