• Home
  • Raw
  • Download

Lines Matching refs:frame_code

154     ft            = &nut->frame_code[start];  in build_frame_code()
162 FrameCode *ft = &nut->frame_code[start]; in build_frame_code()
191 FrameCode *ft = &nut->frame_code[start2]; in build_frame_code()
217 FrameCode *ft = &nut->frame_code[start2]; in build_frame_code()
228 FrameCode *ft = &nut->frame_code[start2]; in build_frame_code()
261 FrameCode *ft = &nut->frame_code[index]; in build_frame_code()
274 memmove(&nut->frame_code['N' + 1], &nut->frame_code['N'], sizeof(FrameCode) * (255 - 'N')); in build_frame_code()
275 nut->frame_code[0].flags = in build_frame_code()
276 nut->frame_code[255].flags = in build_frame_code()
277 nut->frame_code['N'].flags = FLAG_INVALID; in build_frame_code()
376 if (tmp_pts != nut->frame_code[i].pts_delta ) tmp_fields = 1; in write_mainheader()
377 if (tmp_mul != nut->frame_code[i].size_mul ) tmp_fields = 2; in write_mainheader()
378 if (tmp_stream != nut->frame_code[i].stream_id ) tmp_fields = 3; in write_mainheader()
379 if (tmp_size != nut->frame_code[i].size_lsb ) tmp_fields = 4; in write_mainheader()
381 if (tmp_head_idx != nut->frame_code[i].header_idx) tmp_fields = 8; in write_mainheader()
383 tmp_pts = nut->frame_code[i].pts_delta; in write_mainheader()
384 tmp_flags = nut->frame_code[i].flags; in write_mainheader()
385 tmp_stream = nut->frame_code[i].stream_id; in write_mainheader()
386 tmp_mul = nut->frame_code[i].size_mul; in write_mainheader()
387 tmp_size = nut->frame_code[i].size_lsb; in write_mainheader()
389 tmp_head_idx = nut->frame_code[i].header_idx; in write_mainheader()
396 if (nut->frame_code[i].pts_delta != tmp_pts || in write_mainheader()
397 nut->frame_code[i].flags != tmp_flags || in write_mainheader()
398 nut->frame_code[i].stream_id != tmp_stream || in write_mainheader()
399 nut->frame_code[i].size_mul != tmp_mul || in write_mainheader()
400 nut->frame_code[i].size_lsb != tmp_size + j || in write_mainheader()
402 nut->frame_code[i].header_idx != tmp_head_idx) in write_mainheader()
768 av_assert0(nut->frame_code['N'].flags == FLAG_INVALID); in nut_write_header()
960 int best_length, frame_code, flags, needed_flags, i, header_idx; in nut_write_packet() local
1067 frame_code = -1; in nut_write_packet()
1070 FrameCode *fc = &nut->frame_code[i]; in nut_write_packet()
1119 frame_code = i; in nut_write_packet()
1122 av_assert0(frame_code != -1); in nut_write_packet()
1124 fc = &nut->frame_code[frame_code]; in nut_write_packet()
1130 avio_w8(bc, frame_code); in nut_write_packet()