Lines Matching refs:info
44 static void send_mode_a(AVFormatContext *s1, const struct H263Info *info,
55 put_bits(&pb, 3, info->src); /* SRC - source format */
56 put_bits(&pb, 1, info->i); /* I - inter/intra */
57 put_bits(&pb, 1, info->u); /* U - unrestricted motion vector */
58 put_bits(&pb, 1, info->s); /* S - syntax-baesd arithmetic coding */
59 put_bits(&pb, 1, info->a); /* A - advanced prediction */
63 put_bits(&pb, 8, info->tr); /* TR */
70 static void send_mode_b(AVFormatContext *s1, const struct H263Info *info,
82 put_bits(&pb, 3, info->src); /* SRC - source format */
87 put_bits(&pb, 1, info->i); /* I - inter/intra */
88 put_bits(&pb, 1, info->u); /* U - unrestricted motion vector */
89 put_bits(&pb, 1, info->s); /* S - syntax-baesd arithmetic coding */
90 put_bits(&pb, 1, info->a); /* A - advanced prediction */
107 struct H263Info info = { 0 };
116 info.tr = get_bits(&gb, 8);
119 info.src = get_bits(&gb, 3);
120 info.i = get_bits(&gb, 1);
121 info.u = get_bits(&gb, 1);
122 info.s = get_bits(&gb, 1);
123 info.a = get_bits(&gb, 1);
124 info.pb = get_bits(&gb, 1);
137 /* Skip mb info prior to the start of the current ptr */
144 /* Find the first mb info past the end pointer */
153 /* get position in bits in the input packet at which the next info block should be used */
157 /* check if data from the next MB info block should be used */
179 send_mode_a(s1, &info, buf, len, ebits, len == size);
181 send_mode_b(s1, &info, &packet_start_state, buf, len, sbits,