Searched refs:dst_length (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dh264_parser.c131 int src_length, dst_length, consumed; local
145 ptr= ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
146 if (ptr==NULL || dst_length < 0)
149 init_get_bits(&h->s.gb, ptr, 8*dst_length);
H A Dh264.h554 * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp tailing?
557 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length);
H A Dh264.c1363 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length){ argument
1408 *dst_length= length;
1447 *dst_length= di;
7427 int dst_length; local
7462 ptr= ff_h264_decode_nal(hx, buf + buf_index, &dst_length, &consumed, h->is_avc ? nalsize : buf_size - buf_index);
7463 if (ptr==NULL || dst_length < 0){
7466 while(ptr[dst_length - 1] == 0 && dst_length > 0)
7467 dst_length--;
7468 bit_length= !dst_length
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/wireless/
H A Dstrip.c677 * maximum of "dst_length", and returns the new value of "src" so that a
681 * 1. The source data runs out before extracting "dst_length" bytes:
683 * 2. The source data produces exactly "dst_length" bytes:
685 * 3. "dst_length" bytes are extracted, with more remaining.
695 __u32 dst_length)
697 __u8 *dst_end = dst + dst_length;
699 if (!src || !end || !dst || !dst_length)
694 UnStuffData(__u8 * src, __u8 * end, __u8 * dst, __u32 dst_length) argument

Completed in 103 milliseconds