Searched refs:frame_flags (Results 1 – 13 of 13) sorted by relevance
/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | id3v2.c | 499 guint16 frame_flags = 0x0; in id3v2_frames_to_tag_list() local 519 frame_flags = 0; in id3v2_frames_to_tag_list() 535 frame_flags = GST_READ_UINT16_BE (work->hdr.frame_data + 8); in id3v2_frames_to_tag_list() 538 frame_flags &= ID3V2_3_FRAME_FLAGS_MASK; in id3v2_frames_to_tag_list() 579 ((frame_flags & (flag)) ? (str) : "") in id3v2_frames_to_tag_list() 580 GST_LOG ("Frame header flags: 0x%04x %s %s %s %s %s %s %s", frame_flags, in id3v2_frames_to_tag_list() 596 work->frame_flags = frame_flags; in id3v2_frames_to_tag_list()
|
D | id3v2.h | 60 guint16 frame_flags; member
|
D | id3v2frames.c | 96 if (work->frame_flags & ID3V2_FRAME_FORMAT_ENCRYPTION) { in id3v2_parse_frame() 110 if (work->frame_flags & (ID3V2_FRAME_FORMAT_COMPRESSION | in id3v2_parse_frame() 135 ((work->frame_flags & ID3V2_FRAME_FORMAT_UNSYNCHRONISATION) != 0)) { in id3v2_parse_frame() 145 if (work->frame_flags & ID3V2_FRAME_FORMAT_COMPRESSION) { in id3v2_parse_frame() 210 if (work->frame_flags & ID3V2_FRAME_FORMAT_COMPRESSION) { in id3v2_parse_frame()
|
/third_party/ffmpeg/libavcodec/ |
D | escape124.c | 207 unsigned frame_flags, frame_size; in escape124_decode_frame() local 231 frame_flags = get_bits_long(&gb, 32); in escape124_decode_frame() 236 if (!(frame_flags & 0x114) || !(frame_flags & 0x7800000)) { in escape124_decode_frame() 250 if (frame_flags & (1 << (17 + i))) { in escape124_decode_frame() 342 } else if (frame_flags & (1 << 16)) { in escape124_decode_frame()
|
D | indeo5.c | 350 ctx->frame_flags = get_bits(&ctx->gb, 8); in decode_pic_hdr() 352 ctx->pic_hdr_size = (ctx->frame_flags & 1) ? get_bits(&ctx->gb, 24) : 0; in decode_pic_hdr() 354 ctx->checksum = (ctx->frame_flags & 0x10) ? get_bits(&ctx->gb, 16) : 0; in decode_pic_hdr() 357 if (ctx->frame_flags & 0x20) in decode_pic_hdr() 361 ret = ff_ivi_dec_huff_desc(&ctx->gb, ctx->frame_flags & 0x40, in decode_pic_hdr() 396 band->data_size = (ctx->frame_flags & 0x80) ? get_bits(&ctx->gb, 24) : 0; in decode_band_hdr() 498 if (!band->plane && !band->band_num && (ctx->frame_flags & 8)) { in decode_mb_info() 532 (ctx->frame_flags & 8))) { in decode_mb_info()
|
D | wavpack.c | 68 int frame_flags; member 1122 s->frame_flags = bytestream2_get_le32(&gb); in wavpack_decode_block() 1124 if (s->frame_flags & (WV_FLOAT_DATA | WV_DSD_DATA)) in wavpack_decode_block() 1126 else if ((s->frame_flags & 0x03) <= 1) in wavpack_decode_block() 1135 orig_bpp = ((s->frame_flags & 0x03) + 1) << 3; in wavpack_decode_block() 1136 multiblock = (s->frame_flags & WV_SINGLE_BLOCK) != WV_SINGLE_BLOCK; in wavpack_decode_block() 1138 s->stereo = !(s->frame_flags & WV_MONO); in wavpack_decode_block() 1139 s->stereo_in = (s->frame_flags & WV_FALSE_STEREO) ? 0 : s->stereo; in wavpack_decode_block() 1140 s->joint = s->frame_flags & WV_JOINT_STEREO; in wavpack_decode_block() 1141 s->hybrid = s->frame_flags & WV_HYBRID_MODE; in wavpack_decode_block() [all …]
|
D | indeo3.c | 98 uint16_t frame_flags; ///< frame properties member 927 ctx->frame_flags = bytestream2_get_le16(&gb); in decode_frame_headers() 1001 if (ctx->frame_flags & BS_8BIT_PEL) { in decode_frame_headers() 1006 if (ctx->frame_flags & BS_MV_X_HALF || ctx->frame_flags & BS_MV_Y_HALF) { in decode_frame_headers() 1086 if (ctx->frame_flags & BS_NONREF && in decode_frame() 1091 if (!(ctx->frame_flags & BS_KEYFRAME) && avctx->skip_frame >= AVDISCARD_NONKEY) in decode_frame() 1095 ctx->buf_sel = (ctx->frame_flags >> BS_BUFFER) & 1; in decode_frame()
|
D | proresenc_anatoliy.c | 726 uint8_t frame_flags; in prores_encode_frame() local 744 frame_flags = 0x82; /* 422 not interlaced */ in prores_encode_frame() 746 frame_flags |= 0x40; /* 444 chroma */ in prores_encode_frame() 750 frame_flags |= 0x04; /* interlaced tff */ in prores_encode_frame() 754 frame_flags |= 0x08; /* interlaced bff */ in prores_encode_frame() 759 *buf++ = frame_flags; in prores_encode_frame()
|
D | cinepak.c | 372 int i, result, strip_size, frame_flags, num_strips; in cinepak_decode() local 375 frame_flags = s->data[0]; in cinepak_decode() 406 if ((i > 0) && !(frame_flags & 0x01)) { in cinepak_decode()
|
D | ivi.h | 226 uint8_t frame_flags; member
|
D | proresenc_kostya.c | 1011 uint8_t frame_flags; in encode_frame() local 1034 frame_flags = ctx->chroma_factor << 6; in encode_frame() 1036 frame_flags |= pic->top_field_first ? 0x04 : 0x08; in encode_frame() 1037 bytestream_put_byte (&buf, frame_flags); in encode_frame()
|
/third_party/gstreamer/gstplugins_base/gst/rawparse/ |
D | gstrawvideoparse.c | 926 guint frame_flags = 0; in gst_raw_video_parse_process() local 949 frame_flags |= GST_VIDEO_FRAME_FLAG_INTERLACED; in gst_raw_video_parse_process() 953 frame_flags |= GST_VIDEO_FRAME_FLAG_TFF; in gst_raw_video_parse_process() 959 frame_flags, in gst_raw_video_parse_process()
|
/third_party/gstreamer/gstplugins_base/ |
D | ChangeLog | 85410 video: improve frame_flags 85411 Rename the frame_flags to flags. Because they are flags on the frame object it
|