Browse Source

rtmp: Display a verbose message when an unknown packet type is received

Signed-off-by: Martin Storsjö <martin@martin.st>
tags/n1.0
Samuel Pitoiset Martin Storsjö 13 years ago
parent
commit
9ff930aace
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavformat/rtmpproto.c

+ 3
- 0
libavformat/rtmpproto.c View File

@@ -937,6 +937,9 @@ static int rtmp_parse_result(URLContext *s, RTMPContext *rt, RTMPPacket *pkt)
return ret;
}
break;
default:
av_log(s, AV_LOG_VERBOSE, "Unknown packet type received 0x%02X\n", pkt->type);
break;
}
return 0;
}


Loading…
Cancel
Save