MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / mpeg2_get_f_code

Function mpeg2_get_f_code

libavcodec/vaapi_mpeg2.c:27–31  ·  view source on GitHub ↗

Reconstruct bitstream f_code */

Source from the content-addressed store, hash-verified

25
26/** Reconstruct bitstream f_code */
27static 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 */
34static inline int mpeg2_get_is_frame_start(MpegEncContext *s)

Callers 1

vaapi_mpeg2_start_frameFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected