| 199 | } |
| 200 | |
| 201 | void ff_msmpeg4_code012(PutBitContext *pb, int n) |
| 202 | { |
| 203 | if (n == 0) { |
| 204 | put_bits(pb, 1, 0); |
| 205 | } else { |
| 206 | put_bits(pb, 1, 1); |
| 207 | put_bits(pb, 1, (n >= 2)); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | static int get_size_of_code(MpegEncContext * s, RLTable *rl, int last, int run, int level, int intra){ |
| 212 | int size=0; |
no outgoing calls
no test coverage detected