Reconstruct bitstream f_code */
| 25 | |
| 26 | /** Reconstruct bitstream f_code */ |
| 27 | static inline int mpeg2_get_f_code(MpegEncContext *s) |
| 28 | { |
| 29 | return ((s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) | |
| 30 | (s->mpeg_f_code[1][0] << 4) | s->mpeg_f_code[1][1]); |
| 31 | } |
| 32 | |
| 33 | /** Determine frame start: first field for field picture or frame picture */ |
| 34 | static inline int mpeg2_get_is_frame_start(MpegEncContext *s) |
no outgoing calls
no test coverage detected