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

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dsoxdec.c50 unsigned header_size, comment_size; local
66 comment_size = avio_rl32(pb);
73 comment_size = avio_rb32(pb);
76 if (comment_size > 0xFFFFFFFFU - SOX_FIXED_HDR - 4U) {
77 av_log(s, AV_LOG_ERROR, "invalid comment size (%u)\n", comment_size);
92 if ((header_size + 4) & 7 || header_size < SOX_FIXED_HDR + comment_size
98 if (comment_size && comment_size < UINT_MAX) {
99 char *comment = av_malloc(comment_size+1);
102 if (avio_read(pb, comment, comment_size) !
[all...]
H A Dsoxenc.c50 size_t comment_len = 0, comment_size; local
55 comment_size = FFALIGN(comment_len, 8);
57 sox->header_size = SOX_FIXED_HDR + comment_size;
65 avio_wl32(pb, comment_size);
72 avio_wb32(pb, comment_size);
81 ffio_fill(pb, 0, comment_size - comment_len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dsoxdec.c51 unsigned header_size, comment_size; local
67 comment_size = avio_rl32(pb);
74 comment_size = avio_rb32(pb);
77 if (comment_size > 0xFFFFFFFFU - SOX_FIXED_HDR - 4U) {
78 av_log(s, AV_LOG_ERROR, "invalid comment size (%u)\n", comment_size);
93 if ((header_size + 4) & 7 || header_size < SOX_FIXED_HDR + comment_size
99 if (comment_size && comment_size < UINT_MAX) {
100 char *comment = av_malloc(comment_size+1);
101 if (avio_read(pb, comment, comment_size) !
[all...]
H A Dsoxenc.c49 size_t comment_len = 0, comment_size; local
54 comment_size = (comment_len + 7) & ~7;
56 sox->header_size = SOX_FIXED_HDR + comment_size;
64 avio_wl32(pb, comment_size);
71 avio_wb32(pb, comment_size);
80 for ( ; comment_size > comment_len; comment_len++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmpeg4audio.c157 int five_bit_ch, four_bit_ch, comment_size, bits; local
179 comment_size = copy_bits(pb, gb, 8);
180 for (; comment_size > 0; comment_size--)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dmpeg4audio.c163 int five_bit_ch, four_bit_ch, comment_size, bits; local
185 comment_size = copy_bits(pb, gb, 8);
186 for (; comment_size > 0; comment_size--)

Completed in 174 milliseconds