diff options
| author | Anton Khirnov <[email protected]> | 2011-03-31 16:40:31 +0200 | 
|---|---|---|
| committer | Anton Khirnov <[email protected]> | 2011-04-04 17:45:20 +0200 | 
| commit | dce375645945e31687493ebe82a7a89623e49bdc (patch) | |
| tree | 2e28cf8a7b9a297545edb73b923f17ebd66c1f0c /libavformat/rtmppkt.c | |
| parent | bc371aca468c3dd8d1a8cb2b44c99798f232b145 (diff) | |
avio: make url_read_complete() internal.
Diffstat (limited to 'libavformat/rtmppkt.c')
| -rw-r--r-- | libavformat/rtmppkt.c | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/rtmppkt.c b/libavformat/rtmppkt.c index b979566972..ca2ce09ff9 100644 --- a/libavformat/rtmppkt.c +++ b/libavformat/rtmppkt.c @@ -86,7 +86,7 @@ int ff_rtmp_packet_read(URLContext *h, RTMPPacket *p,      if (channel_id < 2) { //special case for channel number >= 64          buf[1] = 0; -        if (url_read_complete(h, buf, channel_id + 1) != channel_id + 1) +        if (ffurl_read_complete(h, buf, channel_id + 1) != channel_id + 1)              return AVERROR(EIO);          size += channel_id + 1;          channel_id = AV_RL16(buf) + 64; @@ -99,28 +99,28 @@ int ff_rtmp_packet_read(URLContext *h, RTMPPacket *p,      if (hdr == RTMP_PS_ONEBYTE) {          timestamp = prev_pkt[channel_id].ts_delta;      } else { -        if (url_read_complete(h, buf, 3) != 3) +        if (ffurl_read_complete(h, buf, 3) != 3)              return AVERROR(EIO);          size += 3;          timestamp = AV_RB24(buf);          if (hdr != RTMP_PS_FOURBYTES) { -            if (url_read_complete(h, buf, 3) != 3) +            if (ffurl_read_complete(h, buf, 3) != 3)                  return AVERROR(EIO);              size += 3;              data_size = AV_RB24(buf); -            if (url_read_complete(h, buf, 1) != 1) +            if (ffurl_read_complete(h, buf, 1) != 1)                  return AVERROR(EIO);              size++;              type = buf[0];              if (hdr == RTMP_PS_TWELVEBYTES) { -                if (url_read_complete(h, buf, 4) != 4) +                if (ffurl_read_complete(h, buf, 4) != 4)                      return AVERROR(EIO);                  size += 4;                  extra = AV_RL32(buf);              }          }          if (timestamp == 0xFFFFFF) { -            if (url_read_complete(h, buf, 4) != 4) +            if (ffurl_read_complete(h, buf, 4) != 4)                  return AVERROR(EIO);              timestamp = AV_RB32(buf);          } @@ -140,7 +140,7 @@ int ff_rtmp_packet_read(URLContext *h, RTMPPacket *p,      prev_pkt[channel_id].extra      = extra;      while (data_size > 0) {          int toread = FFMIN(data_size, chunk_size); -        if (url_read_complete(h, p->data + offset, toread) != toread) { +        if (ffurl_read_complete(h, p->data + offset, toread) != toread) {              ff_rtmp_packet_destroy(p);              return AVERROR(EIO);          } @@ -148,7 +148,7 @@ int ff_rtmp_packet_read(URLContext *h, RTMPPacket *p,          offset    += chunk_size;          size      += chunk_size;          if (data_size > 0) { -            url_read_complete(h, &t, 1); //marker +            ffurl_read_complete(h, &t, 1); //marker              size++;              if (t != (0xC0 + channel_id))                  return -1;  | 
