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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dh264_parser.c133 int src_length, dst_length, consumed; local
147 ptr= ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
148 if (ptr==NULL || dst_length < 0)
151 init_get_bits(&h->s.gb, ptr, 8*dst_length);
H A Dh264.c140 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length){ argument
181 *dst_length= length;
220 *dst_length= di;
3865 int dst_length; local
3901 ptr= ff_h264_decode_nal(hx, buf + buf_index, &dst_length, &consumed, next_avc - buf_index);
3902 if (ptr == NULL || dst_length < 0) {
3912 while(ptr[dst_length - 1] == 0 && dst_length > 0)
3913 dst_length--;
3915 bit_length= !dst_length
[all...]
H A Dh264.h612 * @param dst_length is the number of decoded bytes FIXME here or a decode rbsp tailing?
615 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dh264.c236 int *dst_length, int *consumed, int length)
307 *dst_length= length;
342 *dst_length = di;
1371 const uint8_t *ptr, int dst_length,
1380 while (dst_length > 0 && ptr[dst_length - 1] == 0)
1381 dst_length--;
1383 if (!dst_length)
1386 return 8 * dst_length - decode_rbsp_trailing(h, ptr + dst_length
235 ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length) argument
1370 get_bit_length(H264Context *h, const uint8_t *buf, const uint8_t *ptr, int dst_length, int i, int next_avc) argument
1399 int dst_length, bit_length, consumed; local
1494 int dst_length; local
[all...]
H A Dh264_parser.c230 int src_length, dst_length, consumed, nalsize = 0; local
265 ptr = ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
266 if (ptr == NULL || dst_length < 0)
269 init_get_bits(&h->gb, ptr, 8 * dst_length);
H A Dh264.h795 * @param dst_length is the number of decoded bytes FIXME here
800 int *dst_length, int *consumed, int length);

Completed in 229 milliseconds