summaryrefslogtreecommitdiff
path: root/ffserver.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-07-03 22:56:54 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-07-03 22:56:54 +0000
commit17705a342073c541a527c675fb9c7d3e5a3e34f8 (patch)
treefe0824b73244f5b6f271a0813ddf7440ca05ff77 /ffserver.c
parentaef95c8cb9b9e141d9fd8f1f30ac82bd61bbb7b0 (diff)
Missing ffserver.c format parameter fix by (Giancarlo Formicuccia <ilsensine at inwind dot it>)
Originally committed as revision 2005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r--ffserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffserver.c b/ffserver.c
index 8b82b9794b..6cebfb4942 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -2714,7 +2714,7 @@ static int prepare_sdp_description(FFStream *stream, uint8_t **pbuffer,
/* we must also add the mpeg4 header */
data = st->codec.extradata;
if (data) {
- url_fprintf(pb, "a=fmtp:%d config=");
+ url_fprintf(pb, "a=fmtp:%d config=", payload_type);
for(j=0;j<st->codec.extradata_size;j++) {
url_fprintf(pb, "%02x", data[j]);
}