annotate stream/stream_ffmpeg.c @ 34615:306ee51a2fa0

Deduplicate some code that exists both in the if and else branch.
author reimar
date Sun, 12 Feb 2012 19:27:35 +0000
parents 36ef1a75aa48
children bbbe7b6abc62
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30426
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
1 /*
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
2 * This file is part of MPlayer.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
3 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
4 * MPlayer is free software; you can redistribute it and/or modify
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
5 * it under the terms of the GNU General Public License as published by
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
6 * the Free Software Foundation; either version 2 of the License, or
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
7 * (at your option) any later version.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
8 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
9 * MPlayer is distributed in the hope that it will be useful,
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
12 * GNU General Public License for more details.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
13 *
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
14 * You should have received a copy of the GNU General Public License along
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
17 */
ce0122361a39 Add license header to all files missing it in the stream subdirectory.
diego
parents: 30190
diff changeset
18
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
19 #include "config.h"
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
20
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
21 #include "libavformat/avformat.h"
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
22 #include "libavformat/avio.h"
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
23 #include "mp_msg.h"
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
24 #include "stream.h"
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
25 #include "m_option.h"
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
26 #include "m_struct.h"
33871
30f5e5cd3676 Move code for setting up libav* logging callbacks from vd_ffmpeg to a
reimar
parents: 32794
diff changeset
27 #include "av_helpers.h"
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
28
34544
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
29 #ifndef URL_RDONLY
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
30 #include "libavformat/url.h"
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
31 #define url_read_complete ffurl_read_complete
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
32 #define url_write ffurl_write
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
33 #define url_seek ffurl_seek
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
34 #define url_filesize ffurl_size
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
35 #define url_close ffurl_close
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
36 #define url_open(c, n, f) ffurl_open(c, n, f, NULL, NULL)
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
37 #endif
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
38
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
39 static int fill_buffer(stream_t *s, char *buffer, int max_len)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
40 {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
41 int r = url_read_complete(s->priv, buffer, max_len);
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
42 return (r <= 0) ? -1 : r;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
43 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
44
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
45 static int write_buffer(stream_t *s, char *buffer, int len)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
46 {
32794
77d81e27a176 Fix stream_write_buffer to make sure all requested bytes are written
ranma
parents: 31161
diff changeset
47 /* url_write retries internally on short writes and EAGAIN */
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
48 int r = url_write(s->priv, buffer, len);
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
49 return (r <= 0) ? -1 : r;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
50 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
51
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
52 static int seek(stream_t *s, off_t newpos)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
53 {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
54 s->pos = newpos;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
55 if (url_seek(s->priv, s->pos, SEEK_SET) < 0) {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
56 s->eof = 1;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
57 return 0;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
58 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
59 return 1;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
60 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
61
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
62 static int control(stream_t *s, int cmd, void *arg)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
63 {
34544
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
64 URLContext *ctx = s->priv;
31161
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
65 int64_t size, ts;
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
66 double pts;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
67 switch(cmd) {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
68 case STREAM_CTRL_GET_SIZE:
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
69 size = url_filesize(s->priv);
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
70 if(size >= 0) {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
71 *(off_t *)arg = size;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
72 return 1;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
73 }
31161
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
74 break;
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
75 case STREAM_CTRL_SEEK_TO_TIME:
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
76 pts = *(double *)arg;
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
77 ts = pts * AV_TIME_BASE;
34544
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
78 #ifdef URL_RDONLY
31161
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
79 ts = av_url_read_seek(s->priv, -1, ts, 0);
34544
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
80 #else
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
81 if (!ctx->prot->url_read_seek)
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
82 break;
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
83 ts = ctx->prot->url_read_seek(s->priv, -1, ts, 0);
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
84 #endif
31161
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
85 if (ts >= 0)
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
86 return 1;
0255b5679645 Add support for STREAM_CTRL_SEEK_TO_TIME in ffmpeg streams
hyc
parents: 30457
diff changeset
87 break;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
88 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
89 return STREAM_UNSUPPORTED;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
90 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
91
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
92 static void close_f(stream_t *stream)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
93 {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
94 url_close(stream->priv);
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
95 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
96
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
97 static const char prefix[] = "ffmpeg://";
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
98
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
99 static int open_f(stream_t *stream, int mode, void *opts, int *file_format)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
100 {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
101 int flags = 0;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
102 const char *filename;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
103 URLContext *ctx = NULL;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
104 int res = STREAM_ERROR;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
105 int64_t size;
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
106 int dummy;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
107
33871
30f5e5cd3676 Move code for setting up libav* logging callbacks from vd_ffmpeg to a
reimar
parents: 32794
diff changeset
108 init_avformat();
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
109 if (mode == STREAM_READ)
34544
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
110 flags = AVIO_FLAG_READ;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
111 else if (mode == STREAM_WRITE)
34544
36ef1a75aa48 Some hacks to allow stream_ffmpeg to compile against newer FFmpeg.
reimar
parents: 33871
diff changeset
112 flags = AVIO_FLAG_WRITE;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
113 else {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
114 mp_msg(MSGT_OPEN, MSGL_ERR, "[ffmpeg] Unknown open mode %d\n", mode);
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
115 res = STREAM_UNSUPPORTED;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
116 goto out;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
117 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
118
30189
787bcd39e929 Simplify ffmpeg stream support, we (so far) do not need any special option parsing.
reimar
parents: 29886
diff changeset
119 if (stream->url)
787bcd39e929 Simplify ffmpeg stream support, we (so far) do not need any special option parsing.
reimar
parents: 29886
diff changeset
120 filename = stream->url;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
121 else {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
122 mp_msg(MSGT_OPEN, MSGL_ERR, "[ffmpeg] No URL\n");
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
123 goto out;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
124 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
125 if (!strncmp(filename, prefix, strlen(prefix)))
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
126 filename += strlen(prefix);
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
127 dummy = !strncmp(filename, "rtsp:", 5);
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
128 mp_msg(MSGT_OPEN, MSGL_V, "[ffmpeg] Opening %s\n", filename);
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
129
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
130 if (!dummy && url_open(&ctx, filename, flags) < 0)
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
131 goto out;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
132
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
133 stream->priv = ctx;
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
134 size = dummy ? 0 : url_filesize(ctx);
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
135 if (size >= 0)
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
136 stream->end_pos = size;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
137 stream->type = STREAMTYPE_FILE;
29886
988c42cb595a Fall back to read-based seeking for ffmpeg:// URLs when is_streamed is set
reimar
parents: 29881
diff changeset
138 stream->seek = seek;
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
139 if (dummy || ctx->is_streamed) {
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
140 stream->type = STREAMTYPE_STREAM;
29886
988c42cb595a Fall back to read-based seeking for ffmpeg:// URLs when is_streamed is set
reimar
parents: 29881
diff changeset
141 stream->seek = NULL;
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
142 }
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
143 if (!dummy) {
30457
04bdf393175b Reindent
reimar
parents: 30456
diff changeset
144 stream->fill_buffer = fill_buffer;
04bdf393175b Reindent
reimar
parents: 30456
diff changeset
145 stream->write_buffer = write_buffer;
04bdf393175b Reindent
reimar
parents: 30456
diff changeset
146 stream->control = control;
04bdf393175b Reindent
reimar
parents: 30456
diff changeset
147 stream->close = close_f;
30456
0eee9d2e7a1d Add support for FFmpeg's rtsp dummy URL-with-pseudo-demuxer scheme.
reimar
parents: 30426
diff changeset
148 }
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
149 res = STREAM_OK;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
150
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
151 out:
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
152 return res;
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
153 }
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
154
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
155 const stream_info_t stream_info_ffmpeg = {
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
156 "FFmpeg",
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
157 "ffmpeg",
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
158 "",
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
159 "",
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
160 open_f,
30190
561453831add Support rtmp:// URLs directly instead of requiring ffmpeg://rtmp://
reimar
parents: 30189
diff changeset
161 { "ffmpeg", "rtmp", NULL },
30189
787bcd39e929 Simplify ffmpeg stream support, we (so far) do not need any special option parsing.
reimar
parents: 29886
diff changeset
162 NULL,
29881
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
163 1 // Urls are an option string
5797dc687a8e Add preliminary support for streaming via FFmpeg's URProtocol functions.
reimar
parents:
diff changeset
164 };