Searched refs:show_bits (Results 1 - 25 of 62) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dgolomb-test.c51 int j, s = show_bits(&gb, 25);
86 int j, s = show_bits(&gb, 25);
H A Dmpeg4audio.c98 !(show_bits(&gb, 3) & 0x03 && !(show_bits(&gb, 9) & 0x3F)))) {
126 if (show_bits(&gb, 11) == 0x2b7) { // sync extension
H A Daac_adtstoasc_bsf.c55 if (show_bits(&gb, 12) != 0xfff)
H A Dget_bits.h119 * For examples see get_bits, show_bits, skip_bits, get_vlc.
286 static inline unsigned int show_bits(GetBitContext *s, int n) function
325 return show_bits(s, 1);
385 return show_bits(s, n);
635 int show = show_bits(s, 24);
671 int show = show_bits(s, n);
H A Dgolomb.h420 int show = show_bits(s, 24);
437 int show = show_bits(s, 24);
454 int show = show_bits(s, 24);
H A Dxsubdec.c120 int log2 = ff_log2_tab[show_bits(&gb, 8)];
H A Dh261dec.c107 val = show_bits(&s->gb, 15);
164 if (show_bits(&s->gb, 15) == 0) {
175 if (show_bits(&s->gb, 15) == 0) {
292 int check = show_bits(&s->gb, 2);
H A Dhevc_sei.c192 return get_bits_left(gb) > 0 && show_bits(gb, 8) != 0x80;
H A Dmjpegbdec.c123 s->mjpb_skiptosod = (sod_offs - sos_offs - show_bits(&s->gb, 16));
H A Dvble.c61 int val = show_bits(gb, 8);
H A Deatgq.c67 switch (show_bits(gb, 3)) {
94 if (show_bits(gb, 6) == 0x3F) {
H A Dfaxcompr.c300 has_eol = show_bits(&gb, 12) == 1 || show_bits(&gb, 16) == 1;
H A Dh264_sei.c293 type += show_bits(&h->gb, 8);
299 size += show_bits(&h->gb, 8);
H A Dh263dec.c239 ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
299 show_bits(&s->gb, 24) == 0x4010 &&
315 int v = show_bits(&s->gb, 8);
333 show_bits(&s->gb, 8) == 0 &&
366 left, show_bits(&s->gb, 24));
378 get_bits_left(&s->gb), show_bits(&s->gb, 24), s->padding_bug_score);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dmpeg4audio.c95 !(show_bits(&gb, 3) & 0x03 && !(show_bits(&gb, 9) & 0x3F)))) {
123 if (show_bits(&gb, 11) == 0x2b7) { // sync extension
H A Daac_adtstoasc_bsf.c55 if (show_bits(&gb, 12) != 0xfff)
H A Dh264_sei.c172 type+= show_bits(&s->gb, 8);
177 size+= show_bits(&s->gb, 8);
H A Dget_bits.h114 for examples see get_bits, show_bits, skip_bits, get_vlc
251 static inline unsigned int show_bits(GetBitContext *s, int n) function
290 return show_bits(s, 1);
330 return show_bits(s, n);
546 int show = show_bits(s, 24);
561 int show = show_bits(s, n);
H A Dgolomb.h376 int show= show_bits(s, 24);
390 int show= show_bits(s, 24);
404 int show= show_bits(s, 24);
H A Dh261dec.c109 val = show_bits(&s->gb, 15);
166 if(show_bits(&s->gb, 15)==0){
177 if(show_bits(&s->gb, 15)==0){
393 int check = show_bits(&s->gb, 2);
H A Dmjpegbdec.c119 s->mjpb_skiptosod = (sod_offs - sos_offs - show_bits(&s->gb, 16));
H A Dxsubdec.c118 int log2 = ff_log2_tab[show_bits(&gb, 8)];
H A Deatgq.c66 switch(show_bits(gb,3)) {
93 if (show_bits(gb,6)==0x3F) {
H A Dh263dec.c214 //printf("%d %d %06X\n", ret, get_bits_count(&s->gb), show_bits(&s->gb, 24));
227 //printf("%d %d %d %06X\n", s->mb_x, s->mb_y, s->gb.size*8 - get_bits_count(&s->gb), show_bits(&s->gb, 24));
266 && show_bits(&s->gb, 24)==0x4010
284 int v= show_bits(&s->gb, 8);
319 av_log(s->avctx, AV_LOG_ERROR, "discarding %d junk bits at end, next would be %X\n", left, show_bits(&s->gb, 24));
331 show_bits(&s->gb, 24), s->padding_bug_score);
H A Dvble.c44 uint8_t val = show_bits(gb, 8);

Completed in 161 milliseconds

123