git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f931ff7
)
Fix a crash in ffserver when streaming to WMP from a file. However, it
author
Philip Gladstone
<philipjsg@users.sourceforge.net>
Fri, 3 Jan 2003 20:00:49 +0000
(20:00 +0000)
committer
Philip Gladstone
<philipjsg@users.sourceforge.net>
Fri, 3 Jan 2003 20:00:49 +0000
(20:00 +0000)
still doesn't seem to work for me anyway.
Originally committed as revision 1391 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffserver.c
patch
|
blob
|
history
diff --git
a/ffserver.c
b/ffserver.c
index
d9c8cf9
..
f6e3be5
100644
(file)
--- a/
ffserver.c
+++ b/
ffserver.c
@@
-995,6
+995,10
@@
static int modify_current_stream(HTTPContext *c, char *rates)
FFStream *req = c->stream;
int action_required = 0;
+ /* Not much we can do for a feed */
+ if (!req->feed)
+ return 0;
+
for (i = 0; i < req->nb_streams; i++) {
AVCodecContext *codec = &req->streams[i]->codec;