On Mon, Aug 13, 2012 at 7:47 PM, Luca Barbato <[email protected]> wrote: > 0x03 (bytes read report) is a known type and should be safely ignored > beside in debug situations. > --- > libavformat/rtmpproto.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c > index 5fb5ac4..1db3152 100644 > --- a/libavformat/rtmpproto.c > +++ b/libavformat/rtmpproto.c > @@ -1200,6 +1200,9 @@ static int rtmp_parse_result(URLContext *s, RTMPContext > *rt, RTMPPacket *pkt) > #endif > > switch (pkt->type) { > + case RTMP_PT_BYTES_READ: > + av_dlog(s, "received bytes read report\n"); > + break; > case RTMP_PT_CHUNK_SIZE: > if ((ret = handle_chunk_size(s, pkt)) < 0) > return ret; > --
OK. -- Best regards, Samuel Pitoiset. _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
