annotate stream/stream_mf.c @ 33771:6e774a02d00c

Remove gtkClearStruct code from mplayer() in interface.c. Move it as static function guiInfoMediumClear() where it is used and rename the symbolic constants used with this code.
author ib
date Sat, 09 Jul 2011 11:48:13 +0000
parents 0f1b5b68af32
children a5764687ff8d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
1 /*
26737
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
2 * stream layer for multiple files input, based on previous work from Albeu
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
3 *
26737
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
4 * Copyright (C) 2006 Benjamin Zores
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
5 *
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
6 * This file is part of MPlayer.
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
7 *
26737
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
8 * MPlayer is free software; you can redistribute it and/or modify
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
9 * it under the terms of the GNU General Public License as published by
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
11 * (at your option) any later version.
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
12 *
26737
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
13 * MPlayer is distributed in the hope that it will be useful,
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
16 * GNU General Public License for more details.
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
17 *
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
18 * You should have received a copy of the GNU General Public License along
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
a26e50cae389 Use standard license headers with standard formatting.
diego
parents: 25211
diff changeset
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
21 */
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
22
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
23 #include "config.h"
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
24
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
25 #include <stdlib.h>
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
26 #include <string.h>
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
27
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
28 #include "stream.h"
19312
ab8d6b6deb63 proper inclusion of demuxer.h (including libmpdemux in Makefile only was to make previous split easier)
ben
parents: 19301
diff changeset
29 #include "libmpdemux/demuxer.h"
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
30
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
31 static int
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
32 mf_stream_open (stream_t *stream, int mode, void *opts, int *file_format)
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
33 {
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
34 stream->type = STREAMTYPE_MF;
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
35 *file_format = DEMUXER_TYPE_MF;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 26737
diff changeset
36
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
37 return STREAM_OK;
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
38 }
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
39
25211
c1d17bd6683c Mark all stream_info_t as const
reimar
parents: 19312
diff changeset
40 const stream_info_t stream_info_mf = {
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
41 "Multiple files input",
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
42 "mf",
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
43 "Benjamin Zores, Albeu",
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
44 "",
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 26737
diff changeset
45 mf_stream_open,
19301
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
46 { "mf", NULL },
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
47 NULL,
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
48 1
097e5bc71210 added dedicated file for mf:// input
ben
parents:
diff changeset
49 };