OSDN Git Service

rtpdec: Don't require frames to start with a Mode A packet
authorMartin Storsjö <martin@martin.st>
Thu, 14 Jun 2012 12:13:14 +0000 (15:13 +0300)
committerMartin Storsjö <martin@martin.st>
Thu, 14 Jun 2012 19:11:43 +0000 (22:11 +0300)
While there is no reason for starting a frame with anything else
than a Mode A packet, some senders seem to consistently use Mode B
packets for everything. This fixes depacketization of such streams.

Signed-off-by: Martin Storsjö <martin@martin.st>
libavformat/rtpdec_h263_rfc2190.c

index a3a4825..92102f3 100644 (file)
@@ -132,7 +132,7 @@ static int h263_handle_packet(AVFormatContext *ctx, PayloadContext *data,
     if (!data->buf) {
         /* Check the picture start code, only start buffering a new frame
          * if this is correct */
-        if (!f && len > 4 && AV_RB32(buf) >> 10 == 0x20) {
+        if (len > 4 && AV_RB32(buf) >> 10 == 0x20) {
             int ret = avio_open_dyn_buf(&data->buf);
             if (ret < 0)
                 return ret;