Ignore:
Timestamp:
Jun 19, 2013 6:47:43 AM (11 years ago)
Author:
riza
Message:

Re #1680: Add initial support for Win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia-codec/h263_packetizer.c

    r4006 r4537  
    156156    *payload = p; 
    157157    *payload_len = end-p; 
    158     *pos = end - bits; 
     158    *pos = (unsigned)(end - bits); 
    159159 
    160160    return PJ_SUCCESS; 
     
    274274    /* Write two zero octets when payload flagged with sync point */ 
    275275    if (P) { 
    276         pktz->unpack_last_sync_pos = q - bits; 
     276        pktz->unpack_last_sync_pos = (unsigned)(q - bits); 
    277277        *q++ = 0; 
    278278        *q++ = 0; 
     
    284284 
    285285    /* Update the bitstream writing offset */ 
    286     *pos = q - bits; 
     286    *pos = (unsigned)(q - bits); 
    287287 
    288288    pktz->unpack_prev_lost = PJ_FALSE; 
Note: See TracChangeset for help on using the changeset viewer.