type              129 cmdutils.c     double parse_number_or_die(const char *context, const char *numstr, int type,
type              139 cmdutils.c         else if (type == OPT_INT64 && (int64_t)d != d)
type              141 cmdutils.c         else if (type == OPT_INT && (int)d != d)
type              518 cmdutils.c     #define FLAGS (o->type == AV_OPT_TYPE_FLAGS) ? AV_DICT_APPEND : 0
type             1289 cmdutils.c     #define PRINT_CODEC_SUPPORTED(codec, field, type, list_name, term, get_name) \
type             1291 cmdutils.c             const type *p = codec->field;                                        \
type             1309 cmdutils.c         if (c->type == AVMEDIA_TYPE_VIDEO ||
type             1310 cmdutils.c             c->type == AVMEDIA_TYPE_AUDIO) {
type             1349 cmdutils.c     static char get_media_type_char(enum AVMediaType type)
type             1351 cmdutils.c         switch (type) {
type             1377 cmdutils.c         return (*da)->type != (*db)->type ? (*da)->type - (*db)->type :
type             1440 cmdutils.c             printf("%c", get_media_type_char(desc->type));
type             1490 cmdutils.c                 printf(" %c", get_media_type_char(desc->type));
type             1572 cmdutils.c                     *(descr_cur++) = get_media_type_char(pad[j].type);
type              127 cmdutils.h     double parse_number_or_die(const char *context, const char *numstr, int type,
type              505 compat/avisynth/avisynth_c.h   short type;  // 'a'rray, 'c'lip, 'b'ool, 'i'nt, 'f'loat, 's'tring, 'v'oid, or 'l'ong
type              527 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_defined(AVS_Value v) { return v.type != 'v'; }
type              528 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_clip(AVS_Value v) { return v.type == 'c'; }
type              529 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_bool(AVS_Value v) { return v.type == 'b'; }
type              530 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_int(AVS_Value v) { return v.type == 'i'; }
type              531 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_float(AVS_Value v) { return v.type == 'f' || v.type == 'i'; }
type              532 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_string(AVS_Value v) { return v.type == 's'; }
type              533 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_array(AVS_Value v) { return v.type == 'a'; }
type              534 compat/avisynth/avisynth_c.h AVSC_INLINE int avs_is_error(AVS_Value v) { return v.type == 'e'; }
type              559 compat/avisynth/avisynth_c.h         { AVS_Value v; v.type = 'b'; v.d.boolean = v0 == 0 ? 0 : 1; return v; }
type              561 compat/avisynth/avisynth_c.h         { AVS_Value v; v.type = 'i'; v.d.integer = v0; return v; }
type              563 compat/avisynth/avisynth_c.h         { AVS_Value v; v.type = 's'; v.d.string = v0; return v; }
type              565 compat/avisynth/avisynth_c.h         { AVS_Value v; v.type = 'f'; v.d.floating_pt = v0; return v;}
type              567 compat/avisynth/avisynth_c.h         { AVS_Value v; v.type = 'e'; v.d.string = v0; return v; }
type              573 compat/avisynth/avisynth_c.h         { AVS_Value v; v.type = 'a'; v.d.array = v0; v.array_size = size; return v; }
type              454 compat/avisynth/avxsynth_c.h   short type;  // 'a'rray, 'c'lip, 'b'ool, 'i'nt, 'f'loat, 's'tring, 'v'oid, or 'l'ong
type              477 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_defined(AVS_Value v) { return v.type != 'v'; }
type              478 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_clip(AVS_Value v) { return v.type == 'c'; }
type              479 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_bool(AVS_Value v) { return v.type == 'b'; }
type              480 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_int(AVS_Value v) { return v.type == 'i'; }
type              481 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_float(AVS_Value v) { return v.type == 'f' || v.type == 'i'; }
type              482 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_string(AVS_Value v) { return v.type == 's'; }
type              483 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_array(AVS_Value v) { return v.type == 'a'; }
type              484 compat/avisynth/avxsynth_c.h AVSC_INLINE int avs_is_error(AVS_Value v) { return v.type == 'e'; }
type              516 compat/avisynth/avxsynth_c.h         { AVS_Value v = {0}; v.type = 'b'; v.d.boolean = v0 == 0 ? 0 : 1; return v; }
type              518 compat/avisynth/avxsynth_c.h         { AVS_Value v = {0}; v.type = 'i'; v.d.integer = v0; return v; }
type              520 compat/avisynth/avxsynth_c.h         { AVS_Value v = {0}; v.type = 's'; v.d.string = v0; return v; }
type              522 compat/avisynth/avxsynth_c.h         { AVS_Value v = {0}; v.type = 'f'; v.d.floating_pt = v0; return v;}
type              524 compat/avisynth/avxsynth_c.h         { AVS_Value v = {0}; v.type = 'e'; v.d.string = v0; return v; }
type              530 compat/avisynth/avxsynth_c.h         { AVS_Value v = {0}; v.type = 'a'; v.d.array = v0; v.array_size = size; return v; }
type              155 doc/examples/demuxing_decoding.c                               AVFormatContext *fmt_ctx, enum AVMediaType type)
type              163 doc/examples/demuxing_decoding.c     ret = av_find_best_stream(fmt_ctx, type, -1, -1, NULL, 0);
type              166 doc/examples/demuxing_decoding.c                 av_get_media_type_string(type), src_filename);
type              177 doc/examples/demuxing_decoding.c                     av_get_media_type_string(type));
type              186 doc/examples/demuxing_decoding.c                     av_get_media_type_string(type));
type               73 doc/examples/extract_mvs.c                               AVFormatContext *fmt_ctx, enum AVMediaType type)
type               81 doc/examples/extract_mvs.c     ret = av_find_best_stream(fmt_ctx, type, -1, -1, NULL, 0);
type               84 doc/examples/extract_mvs.c                 av_get_media_type_string(type), src_filename);
type               95 doc/examples/extract_mvs.c                     av_get_media_type_string(type));
type              103 doc/examples/extract_mvs.c                     av_get_media_type_string(type));
type              115 doc/examples/muxing.c     switch ((*codec)->type) {
type              471 doc/examples/transcoding.c     enum AVMediaType type;
type              497 doc/examples/transcoding.c         type = ifmt_ctx->streams[packet.stream_index]->codec->codec_type;
type              511 doc/examples/transcoding.c             dec_func = (type == AVMEDIA_TYPE_VIDEO) ? avcodec_decode_video2 :
type               52 doc/print_options.c     switch (o->type) {
type               84 doc/print_options.c             if (u->type == AV_OPT_TYPE_CONST && u->unit && !strcmp(u->unit, o->unit))
type               97 doc/print_options.c         if (o->type != AV_OPT_TYPE_CONST)
type              187 ffmpeg.c           if (r->type != SUBTITLE_BITMAP) {
type             1279 ffmpeg.c                   switch (filter->inputs[0]->type) {
type             1359 ffmpeg.c                   enum AVMediaType type = ist->dec_ctx->codec_type;
type             1365 ffmpeg.c                          i, j, media_type_string(type));
type             1372 ffmpeg.c                       if (type == AVMEDIA_TYPE_AUDIO)
type             1393 ffmpeg.c                   enum AVMediaType type = ost->enc_ctx->codec_type;
type             1399 ffmpeg.c                          i, j, media_type_string(type));
type             1403 ffmpeg.c                       if (type == AVMEDIA_TYPE_AUDIO)
type             1497 ffmpeg.c                       char type[3] = { 'Y','U','V' };
type             1512 ffmpeg.c                           snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), "%c:%2.2f ", type[j], p);
type             1514 ffmpeg.c                                      ost->file_index, ost->index, type[j] | 32, p);
type             2139 ffmpeg.c                   || ost->enc->type != AVMEDIA_TYPE_SUBTITLE)
type             2745 ffmpeg.c                           sd_dst->type = sd_src->type;
type             3040 ffmpeg.c                   if (ost->enc->type == AVMEDIA_TYPE_AUDIO &&
type             3536 ffmpeg.c                           (ost->stream_copy || ost->enc->type == AVMEDIA_TYPE_SUBTITLE))
type             3621 ffmpeg.c                   if (av_packet_get_side_data(&pkt, src_sd->type, NULL))
type             3624 ffmpeg.c                   dst_data = av_packet_new_side_data(&pkt, src_sd->type, src_sd->size);
type              149 ffmpeg_filter.c #define DEF_CHOOSE_FORMAT(type, var, supported_list, none, get_name)           \
type              156 ffmpeg_filter.c         const type *p;                                                         \
type              221 ffmpeg_filter.c     enum AVMediaType type = avfilter_pad_get_type(in->filter_ctx->input_pads, in->pad_idx);
type              225 ffmpeg_filter.c     if (type != AVMEDIA_TYPE_VIDEO && type != AVMEDIA_TYPE_AUDIO) {
type              246 ffmpeg_filter.c             if (stream_type != type &&
type              248 ffmpeg_filter.c                   type == AVMEDIA_TYPE_VIDEO /* sub2video hack */))
type              265 ffmpeg_filter.c             if (ist->dec_ctx->codec_type == type && ist->discard)
type              298 ffmpeg_filter.c     enum AVMediaType type = avfilter_pad_get_type((*last_filter)->output_pads, *pad_idx);
type              299 ffmpeg_filter.c     const char *name = (type == AVMEDIA_TYPE_VIDEO) ? "trim" : "atrim";
type              949 ffmpeg_filter.c             ost->enc->type == AVMEDIA_TYPE_AUDIO &&
type               44 ffmpeg_opt.c   #define MATCH_PER_STREAM_OPT(name, type, outvar, fmtctx, st)\
type               50 ffmpeg_opt.c               outvar = o->name[i].u.type;\
type               56 ffmpeg_opt.c   #define MATCH_PER_TYPE_OPT(name, type, outvar, fmtctx, mediatype)\
type               62 ffmpeg_opt.c               outvar = o->name[i].u.type;\
type              400 ffmpeg_opt.c   static void parse_meta_type(char *arg, char *type, int *index, const char **stream_spec)
type              403 ffmpeg_opt.c           *type = *arg;
type              424 ffmpeg_opt.c           *type = 'g';
type              467 ffmpeg_opt.c   #define SET_DICT(type, meta, context, index)\
type              468 ffmpeg_opt.c           switch (type) {\
type              532 ffmpeg_opt.c   static AVCodec *find_codec_or_die(const char *name, enum AVMediaType type, int encoder)
type              554 ffmpeg_opt.c       if (codec->type != type) {
type             1076 ffmpeg_opt.c   static OutputStream *new_output_stream(OptionsContext *o, AVFormatContext *oc, enum AVMediaType type, int source_index)
type             1102 ffmpeg_opt.c       st->codec->codec_type = type;
type             1110 ffmpeg_opt.c       ost->enc_ctx->codec_type = type;
type             1150 ffmpeg_opt.c           if (!*p && type != AVMEDIA_TYPE_VIDEO) {
type             1286 ffmpeg_opt.c                                        const OutputStream *ost, enum AVMediaType type)
type             1294 ffmpeg_opt.c                  av_get_media_type_string(type), ost->file_index, ost->index);
type             1671 ffmpeg_opt.c           if (codec->type == AVMEDIA_TYPE_AUDIO)
type             1673 ffmpeg_opt.c           else if (codec->type == AVMEDIA_TYPE_VIDEO)
type             1675 ffmpeg_opt.c           ost   = new_output_stream(o, s, codec->type, -1);
type             2182 ffmpeg_opt.c           char type, *val;
type             2194 ffmpeg_opt.c           parse_meta_type(o->metadata[i].specifier, &type, &index, &stream_spec);
type             2195 ffmpeg_opt.c           if (type == 's') {
type             2204 ffmpeg_opt.c               switch (type) {
type             1812 ffplay.c               event.type = FF_ALLOC_EVENT;
type             2262 ffplay.c                       event.type = FF_QUIT_EVENT;
type             2971 ffplay.c               enum AVMediaType type = st->codec->codec_type;
type             2973 ffplay.c               if (wanted_stream_spec[type] && st_index[type] == -1)
type             2974 ffplay.c                   if (avformat_match_stream_specifier(ic, st, wanted_stream_spec[type]) > 0)
type             2975 ffplay.c                       st_index[type] = i;
type             3189 ffplay.c               event.type = FF_QUIT_EVENT;
type             3397 ffplay.c               switch (event.type) {
type             3514 ffplay.c                   if (event.type == SDL_MOUSEBUTTONDOWN) {
type             1833 ffprobe.c                  name = av_frame_side_data_name(sd->type);
type             1926 ffserver.c                 const char *type = "unknown";
type             1933 ffserver.c                     type = "audio";
type             1938 ffserver.c                     type = "video";
type             1950 ffserver.c                             i, type, st->codec->bit_rate/1000,
type               36 ffserver_config.c static int ffserver_save_avoption(const char *opt, const char *arg, int type,
type              332 ffserver_config.c     if (!codec || codec->type != ctx->codec_type) {
type              352 ffserver_config.c static int ffserver_opt_preset(const char *arg, int type, FFServerConfig *config)
type              360 ffserver_config.c     switch(type) {
type              398 ffserver_config.c         } else if (ffserver_save_avoption(tmp, tmp2, type, config) < 0)
type              512 ffserver_config.c static int ffserver_save_avoption(const char *opt, const char *arg, int type,
type              526 ffserver_config.c     switch (type) {
type              564 ffserver_config.c     o = av_opt_find(ctx, option, NULL, type | AV_OPT_FLAG_ENCODING_PARAM,
type              587 ffserver_config.c         if ((o->type == AV_OPT_TYPE_FLAGS) && arg &&
type              600 ffserver_config.c                                       int type, FFServerConfig *config)
type              604 ffserver_config.c     return ffserver_save_avoption(opt, buf, type, config);
type              150 libavcodec/012v.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1023 libavcodec/4xm.c     .type           = AVMEDIA_TYPE_VIDEO,
type              182 libavcodec/8bps.c     .type           = AVMEDIA_TYPE_VIDEO,
type              191 libavcodec/8svx.c   .type           = AVMEDIA_TYPE_AUDIO,
type              206 libavcodec/8svx.c   .type           = AVMEDIA_TYPE_AUDIO,
type              401 libavcodec/a64multienc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              415 libavcodec/a64multienc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              216 libavcodec/aac.h     enum RawDataBlockType type[8];   ///< Type of channel element to be coupled - SCE or CPE.
type              151 libavcodec/aacdec.c                                  int type, int id, int *channels)
type              156 libavcodec/aacdec.c         if (!ac->che[type][id]) {
type              157 libavcodec/aacdec.c             if (!(ac->che[type][id] = av_mallocz(sizeof(ChannelElement))))
type              159 libavcodec/aacdec.c             ff_aac_sbr_ctx_init(ac, &ac->che[type][id]->sbr);
type              161 libavcodec/aacdec.c         if (type != TYPE_CCE) {
type              162 libavcodec/aacdec.c             if (*channels >= MAX_CHANNELS - (type == TYPE_CPE || (type == TYPE_SCE && ac->oc[1].m4ac.ps == 1))) {
type              166 libavcodec/aacdec.c             ac->output_element[(*channels)++] = &ac->che[type][id]->ch[0];
type              167 libavcodec/aacdec.c             if (type == TYPE_CPE ||
type              168 libavcodec/aacdec.c                 (type == TYPE_SCE && ac->oc[1].m4ac.ps == 1)) {
type              169 libavcodec/aacdec.c                 ac->output_element[(*channels)++] = &ac->che[type][id]->ch[1];
type              173 libavcodec/aacdec.c         if (ac->che[type][id])
type              174 libavcodec/aacdec.c             ff_aac_sbr_ctx_close(&ac->che[type][id]->sbr);
type              175 libavcodec/aacdec.c         av_freep(&ac->che[type][id]);
type              183 libavcodec/aacdec.c     int type, id, ch, ret;
type              186 libavcodec/aacdec.c     for (type = 0; type < 4; type++) {
type              188 libavcodec/aacdec.c             ChannelElement *che = ac->che[type][id];
type              471 libavcodec/aacdec.c         int type =     layout_map[i][0];
type              476 libavcodec/aacdec.c         ret = che_configure(ac, position, type, id, &channels);
type              505 libavcodec/aacdec.c     int type, i, j;
type              507 libavcodec/aacdec.c     for (type = 3; type >= 0; type--) {
type              509 libavcodec/aacdec.c             ChannelElement *che = ac->che[type][i];
type              561 libavcodec/aacdec.c static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
type              566 libavcodec/aacdec.c         return ac->tag_che_map[type][elem_id];
type              569 libavcodec/aacdec.c     if (!ac->tags_mapped && type == TYPE_CPE &&
type              588 libavcodec/aacdec.c     if (!ac->tags_mapped && type == TYPE_SCE &&
type              611 libavcodec/aacdec.c         if (ac->tags_mapped == 3 && type == TYPE_CPE) {
type              622 libavcodec/aacdec.c         if (ac->tags_mapped == tags_per_config[ac->oc[1].m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
type              623 libavcodec/aacdec.c             if (!ac->warned_remapping_once && (type != TYPE_LFE || elem_id != 0)) {
type              626 libavcodec/aacdec.c                    type == TYPE_SCE ? "SCE" : "LFE", elem_id);
type              630 libavcodec/aacdec.c             return ac->tag_che_map[type][elem_id] = ac->che[TYPE_LFE][0];
type              633 libavcodec/aacdec.c         if (ac->tags_mapped == 2 && type == TYPE_CPE) {
type              644 libavcodec/aacdec.c         if (ac->tags_mapped == tags_per_config[ac->oc[1].m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
type              645 libavcodec/aacdec.c             if (!ac->warned_remapping_once && (type != TYPE_SCE || elem_id != 1)) {
type              648 libavcodec/aacdec.c                    type == TYPE_SCE ? "SCE" : "LFE", elem_id);
type              652 libavcodec/aacdec.c             return ac->tag_che_map[type][elem_id] = ac->che[TYPE_SCE][1];
type              656 libavcodec/aacdec.c             type == TYPE_SCE) {
type              663 libavcodec/aacdec.c             type == TYPE_CPE) {
type              670 libavcodec/aacdec.c         if (!ac->tags_mapped && type == TYPE_SCE) {
type              686 libavcodec/aacdec.c                                enum ChannelPosition type,
type              691 libavcodec/aacdec.c         switch (type) {
type              710 libavcodec/aacdec.c         layout_map[0][2] = type;
type             2141 libavcodec/aacdec.c         coup->type[c] = get_bits1(gb) ? TYPE_CPE : TYPE_SCE;
type             2143 libavcodec/aacdec.c         if (coup->type[c] == TYPE_CPE) {
type             2304 libavcodec/aacdec.c     int type = get_bits(gb, 4);
type             2307 libavcodec/aacdec.c         av_log(ac->avctx, AV_LOG_DEBUG, "extension type: %d len:%d\n", type, cnt);
type             2309 libavcodec/aacdec.c     switch (type) { // extension type
type             2712 libavcodec/aacdec.c                                    enum RawDataBlockType type, int elem_id,
type             2726 libavcodec/aacdec.c                 if (coup->type[c] == type && coup->id_select[c] == elem_id) {
type             2746 libavcodec/aacdec.c     int i, type;
type             2758 libavcodec/aacdec.c     for (type = 3; type >= 0; type--) {
type             2760 libavcodec/aacdec.c             ChannelElement *che = ac->che[type][i];
type             2762 libavcodec/aacdec.c                 if (type <= TYPE_CPE)
type             2763 libavcodec/aacdec.c                     apply_channel_coupling(ac, che, type, i, BEFORE_TNS, apply_dependent_coupling);
type             2768 libavcodec/aacdec.c                         if (che->ch[1].ics.ltp.present && type == TYPE_CPE)
type             2776 libavcodec/aacdec.c                 if (type <= TYPE_CPE)
type             2777 libavcodec/aacdec.c                     apply_channel_coupling(ac, che, type, i, BETWEEN_TNS_AND_IMDCT, apply_dependent_coupling);
type             2778 libavcodec/aacdec.c                 if (type != TYPE_CCE || che->coup.coupling_point == AFTER_IMDCT) {
type             2782 libavcodec/aacdec.c                     if (type == TYPE_CPE) {
type             2788 libavcodec/aacdec.c                         ff_sbr_apply(ac, &che->sbr, type, che->ch[0].ret, che->ch[1].ret);
type             2791 libavcodec/aacdec.c                 if (type <= TYPE_CCE)
type             2792 libavcodec/aacdec.c                     apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling);
type             2795 libavcodec/aacdec.c                 av_log(ac->avctx, AV_LOG_VERBOSE, "ChannelElement %d.%d missing \n", type, i);
type             3172 libavcodec/aacdec.c     int i, type;
type             3175 libavcodec/aacdec.c         for (type = 0; type < 4; type++) {
type             3176 libavcodec/aacdec.c             if (ac->che[type][i])
type             3177 libavcodec/aacdec.c                 ff_aac_sbr_ctx_close(&ac->che[type][i]->sbr);
type             3178 libavcodec/aacdec.c             av_freep(&ac->che[type][i]);
type             3522 libavcodec/aacdec.c     .type            = AVMEDIA_TYPE_AUDIO,
type             3546 libavcodec/aacdec.c     .type            = AVMEDIA_TYPE_AUDIO,
type              191 libavcodec/aacenc.c #define WINDOW_FUNC(type) \
type              192 libavcodec/aacenc.c static void apply_ ##type ##_window(AVFloatDSPContext *fdsp, \
type              854 libavcodec/aacenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              155 libavcodec/aasc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              185 libavcodec/ac3dec_fixed.c     .type           = AVMEDIA_TYPE_AUDIO,
type               57 libavcodec/ac3dec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type               80 libavcodec/ac3dec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type              149 libavcodec/ac3enc_fixed.c     .type            = AVMEDIA_TYPE_AUDIO,
type              151 libavcodec/ac3enc_float.c     .type            = AVMEDIA_TYPE_AUDIO,
type             1547 libavcodec/adpcm.c     .type           = AVMEDIA_TYPE_AUDIO,                   \
type              713 libavcodec/adpcmenc.c     .type           = AVMEDIA_TYPE_AUDIO,                   \
type              180 libavcodec/adxdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              175 libavcodec/adxenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              191 libavcodec/aic.c #define GET_CODE(val, type, add_bits)                         \
type              193 libavcodec/aic.c         if (type)                                             \
type              478 libavcodec/aic.c     .type           = AVMEDIA_TYPE_VIDEO,
type              658 libavcodec/alac.c     .type           = AVMEDIA_TYPE_AUDIO,
type               87 libavcodec/alacenc.c #define COPY_SAMPLES(type) do {                             \
type               90 libavcodec/alacenc.c             const type *sptr = (const type *)samples[ch];   \
type              650 libavcodec/alacenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              124 libavcodec/aliaspixdec.c     .type         = AVMEDIA_TYPE_VIDEO,
type              126 libavcodec/aliaspixenc.c     .type      = AVMEDIA_TYPE_VIDEO,
type             1807 libavcodec/alsdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1086 libavcodec/amrnbdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1271 libavcodec/amrwbdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              145 libavcodec/anm.c         int type = bytestream2_get_byte(&s->gb);
type              146 libavcodec/anm.c         count = type & 0x7F;
type              147 libavcodec/anm.c         type >>= 7;
type              149 libavcodec/anm.c             if (OP(type ? NULL : &s->gb, -1, count)) break;
type              150 libavcodec/anm.c         } else if (!type) {
type              157 libavcodec/anm.c             type = bytestream2_get_le16(&s->gb);
type              158 libavcodec/anm.c             count = type & 0x3FFF;
type              159 libavcodec/anm.c             type >>= 14;
type              161 libavcodec/anm.c                 if (type == 0)
type              163 libavcodec/anm.c                 if (type == 2) {
type              169 libavcodec/anm.c             pixel = type == 3 ? bytestream2_get_byte(&s->gb) : -1;
type              170 libavcodec/anm.c             if (type == 1) count += 0x4000;
type              171 libavcodec/anm.c             if (OP(type == 2 ? &s->gb : NULL, pixel, count)) break;
type              195 libavcodec/anm.c     .type           = AVMEDIA_TYPE_VIDEO,
type              475 libavcodec/ansi.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1567 libavcodec/apedec.c     .type           = AVMEDIA_TYPE_AUDIO,
type               28 libavcodec/arm/rv40dsp_init_arm.c #define DECL_QPEL3(type, w, pos) \
type               29 libavcodec/arm/rv40dsp_init_arm.c void ff_ ## type ## _rv40_qpel ## w ## _mc ## pos ## _neon(uint8_t *dst,       \
type              163 libavcodec/ass.c     rects[sub->num_rects]->type = SUBTITLE_ASS;
type               36 libavcodec/ass_split.c     int type;
type              301 libavcodec/ass_split.c                         ASSFieldType type = section->fields[order[i]].type;
type              303 libavcodec/ass_split.c                         convert_func[type](ptr, buf, len);
type              315 libavcodec/ass_split.c                         ASSFieldType type = section->fields[i].type;
type              319 libavcodec/ass_split.c                         convert_func[type](ptr, buf, strcspn(buf, "\r\n"));
type              382 libavcodec/ass_split.c                 if (field->type == ASS_STR)
type               78 libavcodec/assdec.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              114 libavcodec/assdec.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type               57 libavcodec/assenc.c         if (sub->rects[i]->type != SUBTITLE_ASS) {
type              114 libavcodec/assenc.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              126 libavcodec/assenc.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              319 libavcodec/asvdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              333 libavcodec/asvdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              357 libavcodec/asvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              371 libavcodec/asvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              383 libavcodec/atrac1.c     .type           = AVMEDIA_TYPE_AUDIO,
type              931 libavcodec/atrac3.c     .type             = AVMEDIA_TYPE_AUDIO,
type              390 libavcodec/atrac3plusdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              103 libavcodec/aura.c     .type           = AVMEDIA_TYPE_VIDEO,
type              560 libavcodec/avcodec.h     enum AVMediaType type;
type             1112 libavcodec/avcodec.h     enum AVPacketSideDataType type;
type             1478 libavcodec/avcodec.h                             int y, int type, int height);
type             3186 libavcodec/avcodec.h     enum AVMediaType type;
type             3288 libavcodec/avcodec.h     enum AVMediaType type;
type             3480 libavcodec/avcodec.h     enum AVSubtitleType type;
type             3813 libavcodec/avcodec.h uint8_t* av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
type             3824 libavcodec/avcodec.h int av_packet_shrink_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
type             3835 libavcodec/avcodec.h uint8_t* av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
type              110 libavcodec/avfft.h DCTContext *av_dct_init(int nbits, enum DCTTransformType type);
type              237 libavcodec/avpacket.c             pkt->side_data[i].type = src->side_data[i].type;
type              299 libavcodec/avpacket.c uint8_t *av_packet_new_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
type              318 libavcodec/avpacket.c     pkt->side_data[elems].type = type;
type              324 libavcodec/avpacket.c uint8_t *av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
type              330 libavcodec/avpacket.c         if (pkt->side_data[i].type == type) {
type              368 libavcodec/avpacket.c             *p++ = old.side_data[i].type | ((i==old.side_data_elems-1)*128);
type              407 libavcodec/avpacket.c             pkt->side_data[i].type = p[4]&127;
type              483 libavcodec/avpacket.c int av_packet_shrink_side_data(AVPacket *pkt, enum AVPacketSideDataType type,
type              489 libavcodec/avpacket.c         if (pkt->side_data[i].type == type) {
type              512 libavcodec/avpacket.c          enum AVPacketSideDataType type = src->side_data[i].type;
type              515 libavcodec/avpacket.c          uint8_t *dst_data = av_packet_new_side_data(dst, type, size);
type              123 libavcodec/avrndec.c     .type           = AVMEDIA_TYPE_VIDEO,
type               59 libavcodec/avs.c     AvsBlockType type;
type               73 libavcodec/avs.c     type = buf[1];
type               76 libavcodec/avs.c     if (type == AVS_PALETTE) {
type               91 libavcodec/avs.c         type = buf[1];
type               95 libavcodec/avs.c     if (type != AVS_VIDEO)
type              182 libavcodec/avs.c     .type           = AVMEDIA_TYPE_VIDEO,
type              125 libavcodec/avuidec.c     .type         = AVMEDIA_TYPE_VIDEO,
type              110 libavcodec/avuienc.c     .type         = AVMEDIA_TYPE_VIDEO,
type               87 libavcodec/bethsoftvideo.c         avpkt->side_data[0].type == AV_PKT_DATA_PALETTE) {
type              159 libavcodec/bethsoftvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              181 libavcodec/bfi.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1348 libavcodec/bink.c     .type           = AVMEDIA_TYPE_VIDEO,
type              340 libavcodec/binkaudio.c     .type           = AVMEDIA_TYPE_AUDIO,
type              352 libavcodec/binkaudio.c     .type           = AVMEDIA_TYPE_AUDIO,
type              156 libavcodec/bintext.c             int type  = *buf >> 6;
type              159 libavcodec/bintext.c             switch (type) {
type              224 libavcodec/bintext.c     .type           = AVMEDIA_TYPE_VIDEO,
type              237 libavcodec/bintext.c     .type           = AVMEDIA_TYPE_VIDEO,
type              250 libavcodec/bintext.c     .type           = AVMEDIA_TYPE_VIDEO,
type              349 libavcodec/bmp.c     .type           = AVMEDIA_TYPE_VIDEO,
type              175 libavcodec/bmpenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               84 libavcodec/bmvaudio.c     .type           = AVMEDIA_TYPE_AUDIO,
type              204 libavcodec/bmvvideo.c     int type, scr_off;
type              209 libavcodec/bmvvideo.c     type = bytestream_get_byte(&c->stream);
type              210 libavcodec/bmvvideo.c     if (type & BMV_AUDIO) {
type              218 libavcodec/bmvvideo.c     if (type & BMV_COMMAND) {
type              219 libavcodec/bmvvideo.c         int command_size = (type & BMV_PRINT) ? 8 : 10;
type              226 libavcodec/bmvvideo.c     if (type & BMV_PALETTE) {
type              234 libavcodec/bmvvideo.c     if (type & BMV_SCROLL) {
type              240 libavcodec/bmvvideo.c     } else if ((type & BMV_INTRA) == BMV_INTRA) {
type              255 libavcodec/bmvvideo.c     frame->palette_has_changed = type & BMV_PALETTE;
type              292 libavcodec/bmvvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              288 libavcodec/brenderpix.c     .type         = AVMEDIA_TYPE_VIDEO,
type               42 libavcodec/bytestream.h #define DEF(type, name, bytes, read, write)                                  \
type               43 libavcodec/bytestream.h static av_always_inline type bytestream_get_ ## name(const uint8_t **b)        \
type               49 libavcodec/bytestream.h                                                      const type value)         \
type               55 libavcodec/bytestream.h                                                            const type value)   \
type               60 libavcodec/bytestream.h                                                       const type value)        \
type               68 libavcodec/bytestream.h static av_always_inline type bytestream2_get_ ## name ## u(GetByteContext *g)  \
type               72 libavcodec/bytestream.h static av_always_inline type bytestream2_get_ ## name(GetByteContext *g)       \
type               78 libavcodec/bytestream.h static av_always_inline type bytestream2_peek_ ## name(GetByteContext *g)      \
type              265 libavcodec/c93.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1245 libavcodec/cavsdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              582 libavcodec/ccaption_dec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              373 libavcodec/cdgraphics.c     .type           = AVMEDIA_TYPE_VIDEO,
type              302 libavcodec/cdxl.c     .type           = AVMEDIA_TYPE_VIDEO,
type              481 libavcodec/cinepak.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1326 libavcodec/cinepakenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               88 libavcodec/cljrdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              115 libavcodec/cljrenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              488 libavcodec/cllc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              161 libavcodec/cngdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              108 libavcodec/cngenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type               35 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               42 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               50 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               58 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               65 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               72 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               79 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               86 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type               94 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              101 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              108 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              115 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              122 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              129 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              136 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              143 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              150 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              157 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              164 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              171 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              178 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              185 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              192 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              199 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              206 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              213 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              220 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              227 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              234 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              241 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              248 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              255 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              262 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              269 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              276 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              283 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              290 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              297 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              304 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              311 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              318 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              325 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              332 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              339 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              346 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              353 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              360 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              367 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              374 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              381 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              388 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              395 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              402 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              409 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              416 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              423 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              430 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              437 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              444 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              451 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              458 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              465 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              472 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              479 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              486 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              493 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              500 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              507 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              514 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              521 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              528 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              536 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              543 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              550 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              557 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              564 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              571 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              578 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              585 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              592 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              599 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              608 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              615 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              622 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              629 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              636 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              643 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              650 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              657 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              664 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              671 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              678 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              685 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              692 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              699 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              706 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              713 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              720 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              727 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              734 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              741 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              748 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              755 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              762 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              769 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              776 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              783 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              790 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              797 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              804 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              811 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              818 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              825 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              832 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              839 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              846 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              853 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              860 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              867 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              874 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              881 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              888 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              895 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              902 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              909 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              916 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              923 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              930 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              937 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              944 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              951 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              958 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              965 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              972 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              979 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              986 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type              993 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1000 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1007 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1014 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1021 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1028 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1035 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1042 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1049 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1056 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1063 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1070 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1077 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1084 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1091 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1098 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1105 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1112 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1119 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1126 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1133 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1140 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1147 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1154 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1161 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1167 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1173 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1180 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1187 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1194 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1201 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1208 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1215 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1222 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1229 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1236 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1243 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1252 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1259 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1266 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1273 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1280 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1288 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1296 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1304 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1311 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1319 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1326 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1334 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1341 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1348 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1356 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1363 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1370 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1377 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1384 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1391 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1399 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1407 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1414 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1421 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1430 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1437 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1444 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1452 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             1462 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1469 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1476 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1483 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1490 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1497 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1504 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1511 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1518 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1525 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1532 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1539 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1546 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1553 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1560 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1567 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1574 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1581 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1588 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1595 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1602 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1609 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1616 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1623 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1630 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1637 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1644 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1651 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1658 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1665 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1672 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1681 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1688 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1695 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1702 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1709 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1716 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1723 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1730 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1737 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1744 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1751 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1758 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1765 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1772 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1779 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1786 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1793 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1800 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1807 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1814 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1821 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1828 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1835 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1842 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1849 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1856 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1863 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1870 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1877 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1884 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1891 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1898 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1905 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1912 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1919 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1926 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1935 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1942 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1951 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1958 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1967 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1974 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1981 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1988 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1997 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2004 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2011 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2018 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2025 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2032 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2039 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2046 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2053 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2060 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2067 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2074 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2081 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2088 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2095 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2102 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2109 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2116 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2123 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2130 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2137 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2144 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2151 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2158 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2165 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2172 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2179 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2186 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2193 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2200 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2207 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2214 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2222 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2230 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2237 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2244 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2251 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2258 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2265 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2272 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2279 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2286 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2293 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2300 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2307 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2314 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2321 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2328 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2335 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2342 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2349 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2356 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2363 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2370 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2377 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2384 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2391 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2398 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2405 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2412 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2419 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2426 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2433 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2439 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2445 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2451 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2458 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2465 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2472 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2479 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2486 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2493 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2500 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2507 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2514 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2521 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2528 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2537 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2544 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2551 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2558 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2565 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2572 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2579 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2586 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2593 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2599 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2606 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2613 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2620 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2627 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2633 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2640 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2647 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2654 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2661 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2668 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2675 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2682 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2689 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_SUBTITLE,
type             2698 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_DATA,
type             2705 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2712 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2719 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2726 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_DATA,
type             2733 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_DATA,
type             2739 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_DATA,
type             2745 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_DATA,
type             2751 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_DATA,
type             2760 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2767 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2774 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2782 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2789 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2796 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2803 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2810 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2817 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_VIDEO,
type             2827 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2835 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2842 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2849 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2856 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2863 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             2870 libavcodec/codec_desc.c         .type      = AVMEDIA_TYPE_AUDIO,
type             1281 libavcodec/cook.c     .type           = AVMEDIA_TYPE_AUDIO,
type              226 libavcodec/cpia.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1095 libavcodec/crystalhd.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1119 libavcodec/crystalhd.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1143 libavcodec/crystalhd.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1167 libavcodec/crystalhd.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1191 libavcodec/crystalhd.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1215 libavcodec/crystalhd.c     .type           = AVMEDIA_TYPE_VIDEO,
type              163 libavcodec/cscd.c     .type           = AVMEDIA_TYPE_VIDEO,
type              182 libavcodec/cyuv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              195 libavcodec/cyuv.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1863 libavcodec/dcadec.c     .type            = AVMEDIA_TYPE_AUDIO,
type              959 libavcodec/dcaenc.c     .type                  = AVMEDIA_TYPE_AUDIO,
type               49 libavcodec/dct.h int  ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType type);
type              415 libavcodec/dfa.c     .type           = AVMEDIA_TYPE_VIDEO,
type              451 libavcodec/dirac_dwt.c                           int stride, enum dwt_type type, int decomposition_count,
type              467 libavcodec/dirac_dwt.c         switch(type){
type              490 libavcodec/dirac_dwt.c     switch (type) {
type              516 libavcodec/dirac_dwt.c         if (type == DWT_DIRAC_HAAR0)
type              539 libavcodec/dirac_dwt.c         av_log(NULL, AV_LOG_ERROR, "Unknown wavelet type %d\n", type);
type              543 libavcodec/dirac_dwt.c     if (HAVE_MMX) ff_spatial_idwt_init_mmx(d, type);
type               80 libavcodec/dirac_dwt.h                           int stride, enum dwt_type type, int decomposition_count,
type             2000 libavcodec/diracdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              507 libavcodec/dnxhddec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1146 libavcodec/dnxhdenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              332 libavcodec/dpcm.c     .type           = AVMEDIA_TYPE_AUDIO,                   \
type              392 libavcodec/dpx.c     .type           = AVMEDIA_TYPE_VIDEO,
type              277 libavcodec/dpxenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              156 libavcodec/dsddec.c     .type         = AVMEDIA_TYPE_AUDIO, \
type              127 libavcodec/dsicinaudio.c     .type           = AVMEDIA_TYPE_AUDIO,
type              310 libavcodec/dsicinvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              781 libavcodec/dss_sp.c     .type           = AVMEDIA_TYPE_AUDIO,
type              456 libavcodec/dvbsub.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              185 libavcodec/dvbsubdec.c     int type;
type              821 libavcodec/dvbsubdec.c             rect->type      = SUBTITLE_BITMAP;
type             1251 libavcodec/dvbsubdec.c         object->type = (*buf) >> 6;
type             1265 libavcodec/dvbsubdec.c         if ((object->type == 1 || object->type == 2) && buf+1 < buf_end) {
type             1656 libavcodec/dvbsubdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              537 libavcodec/dvdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              396 libavcodec/dvdsubdec.c                 sub_header->rects[0]->type = SUBTITLE_BITMAP;
type              746 libavcodec/dvdsubdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              270 libavcodec/dvdsubenc.c         if (h->rects[i]->type != SUBTITLE_BITMAP) {
type              469 libavcodec/dvdsubenc.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              755 libavcodec/dvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               59 libavcodec/dxa.c     int type, x, y, d, d2;
type               76 libavcodec/dxa.c             type = *code++;
type               77 libavcodec/dxa.c             switch(type){
type              102 libavcodec/dxa.c                 if(type == 1){
type              106 libavcodec/dxa.c                     type -= 10;
type              107 libavcodec/dxa.c                     mask = ((msk[0] & 0xF0) << shift1[type]) | ((msk[0] & 0xF) << shift2[type]);
type              197 libavcodec/dxa.c                 data += type - 30;
type              200 libavcodec/dxa.c                 av_log(avctx, AV_LOG_ERROR, "Unknown opcode %d\n", type);
type              367 libavcodec/dxa.c     .type           = AVMEDIA_TYPE_VIDEO,
type              752 libavcodec/dxtory.c     .type           = AVMEDIA_TYPE_VIDEO,
type               55 libavcodec/dxva2.c                            unsigned type, const void *data, unsigned size,
type               63 libavcodec/dxva2.c     hr = IDirectXVideoDecoder_GetBuffer(ctx->decoder, type,
type               67 libavcodec/dxva2.c                type, hr);
type               74 libavcodec/dxva2.c         dsc->CompressedBufferType = type;
type               80 libavcodec/dxva2.c         av_log(avctx, AV_LOG_ERROR, "Buffer for type %u was too small\n", type);
type               84 libavcodec/dxva2.c     hr = IDirectXVideoDecoder_ReleaseBuffer(ctx->decoder, type);
type               88 libavcodec/dxva2.c                type, hr);
type              465 libavcodec/dxva2_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              374 libavcodec/dxva2_hevc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               45 libavcodec/dxva2_internal.h                            unsigned type, const void *data, unsigned size,
type              275 libavcodec/dxva2_mpeg2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              300 libavcodec/dxva2_vc1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              312 libavcodec/dxva2_vc1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              257 libavcodec/eac3enc.c     .type            = AVMEDIA_TYPE_AUDIO,
type              239 libavcodec/eacmv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              345 libavcodec/eamad.c     .type           = AVMEDIA_TYPE_VIDEO,
type              247 libavcodec/eatgq.c     .type           = AVMEDIA_TYPE_VIDEO,
type              360 libavcodec/eatgv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              159 libavcodec/eatqi.c     .type           = AVMEDIA_TYPE_VIDEO,
type              370 libavcodec/escape124.c     .type           = AVMEDIA_TYPE_VIDEO,
type              353 libavcodec/escape130.c     .type           = AVMEDIA_TYPE_VIDEO,
type              912 libavcodec/evrcdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type               44 libavcodec/exif.c static int exif_add_metadata(AVCodecContext *avctx, int count, int type,
type               49 libavcodec/exif.c     switch(type) {
type               67 libavcodec/exif.c         avpriv_request_sample(avctx, "TIFF tag type (%u)", type);
type               78 libavcodec/exif.c     enum TiffTypes type;
type               84 libavcodec/exif.c     ff_tread_tag(gbytes, le, &id, &type, &count, &cur_pos);
type              108 libavcodec/exif.c         ret = exif_add_metadata(avctx, count, type, use_name, NULL,
type             1442 libavcodec/exr.c     .type             = AVMEDIA_TYPE_VIDEO,
type               50 libavcodec/faanidct.c static inline void p8idct(int16_t data[64], FLOAT temp[64], uint8_t *dest, int stride, int x, int y, int type){
type               94 libavcodec/faanidct.c         if(type==0){
type              103 libavcodec/faanidct.c         }else if(type==1){
type              112 libavcodec/faanidct.c         }else if(type==2){
type             1091 libavcodec/ffv1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1346 libavcodec/ffv1enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               88 libavcodec/ffwavesynth.c     enum ws_interval_type type;
type              267 libavcodec/ffwavesynth.c         in->type     = AV_RL32(edata + 16);
type              274 libavcodec/ffwavesynth.c         switch (in->type) {
type              340 libavcodec/ffwavesynth.c         ws->pink_need += ws->inter[i].type == WS_NOISE;
type              376 libavcodec/ffwavesynth.c         switch (in->type) {
type              474 libavcodec/ffwavesynth.c     .type           = AVMEDIA_TYPE_AUDIO,
type              458 libavcodec/fic.c     .type           = AVMEDIA_TYPE_VIDEO,
type              150 libavcodec/flac.h                                                       int *last, int *type, int *size)
type              155 libavcodec/flac.h     if (type)
type              156 libavcodec/flac.h         *type = tmp & 0x7F;
type              349 libavcodec/flacdec.c     int type, wasted = 0;
type              365 libavcodec/flacdec.c     type = get_bits(&s->gb, 6);
type              386 libavcodec/flacdec.c     if (type == 0) {
type              390 libavcodec/flacdec.c     } else if (type == 1) {
type              393 libavcodec/flacdec.c     } else if ((type >= 8) && (type <= 12)) {
type              394 libavcodec/flacdec.c         if ((ret = decode_subframe_fixed(s, decoded, type & ~0x8, bps)) < 0)
type              396 libavcodec/flacdec.c     } else if (type >= 32) {
type              397 libavcodec/flacdec.c         if ((ret = decode_subframe_lpc(s, decoded, (type & ~0x20)+1, bps)) < 0)
type              602 libavcodec/flacdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type               74 libavcodec/flacenc.c     int type;
type              532 libavcodec/flacenc.c     if (sub->type == FLAC_SUBFRAME_CONSTANT) {
type              534 libavcodec/flacenc.c     } else if (sub->type == FLAC_SUBFRAME_VERBATIM) {
type              541 libavcodec/flacenc.c         if (sub->type == FLAC_SUBFRAME_LPC)
type              698 libavcodec/flacenc.c     if (sub->type == FLAC_SUBFRAME_LPC)
type              778 libavcodec/flacenc.c         sub->type = sub->type_code = FLAC_SUBFRAME_CONSTANT;
type              785 libavcodec/flacenc.c         sub->type = sub->type_code = FLAC_SUBFRAME_VERBATIM;
type              795 libavcodec/flacenc.c     sub->type = FLAC_SUBFRAME_FIXED;
type              810 libavcodec/flacenc.c         sub->type_code = sub->type | sub->order;
type              819 libavcodec/flacenc.c     sub->type = FLAC_SUBFRAME_LPC;
type              883 libavcodec/flacenc.c     sub->type_code = sub->type | (sub->order-1);
type             1136 libavcodec/flacenc.c         if (sub->type == FLAC_SUBFRAME_CONSTANT) {
type             1138 libavcodec/flacenc.c         } else if (sub->type == FLAC_SUBFRAME_VERBATIM) {
type             1147 libavcodec/flacenc.c             if (sub->type == FLAC_SUBFRAME_LPC) {
type             1371 libavcodec/flacenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              506 libavcodec/flashsv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              569 libavcodec/flashsv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              913 libavcodec/flashsv2enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              284 libavcodec/flashsvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              811 libavcodec/flicvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              118 libavcodec/flvdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type               97 libavcodec/flvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              319 libavcodec/fraps.c     .type           = AVMEDIA_TYPE_VIDEO,
type              121 libavcodec/frwu.c     .type           = AVMEDIA_TYPE_VIDEO,
type              914 libavcodec/g2meet.c     .type           = AVMEDIA_TYPE_VIDEO,
type              143 libavcodec/g722dec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              386 libavcodec/g722enc.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1335 libavcodec/g723_1.c     .type           = AVMEDIA_TYPE_AUDIO,
type             2476 libavcodec/g723_1.c     .type           = AVMEDIA_TYPE_AUDIO,
type              387 libavcodec/g726.c     .type           = AVMEDIA_TYPE_AUDIO,
type              471 libavcodec/g726.c     .type           = AVMEDIA_TYPE_AUDIO,
type              484 libavcodec/g726.c     .type           = AVMEDIA_TYPE_AUDIO,
type              720 libavcodec/g729dec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              351 libavcodec/gif.c     .type           = AVMEDIA_TYPE_VIDEO,
type              550 libavcodec/gifdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              117 libavcodec/gsmdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              130 libavcodec/gsmdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              684 libavcodec/h261dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              385 libavcodec/h261enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              728 libavcodec/h263dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              744 libavcodec/h263dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              841 libavcodec/h264.c             stereo->type = AV_STEREO3D_CHECKERBOARD;
type              844 libavcodec/h264.c             stereo->type = AV_STEREO3D_COLUMNS;
type              847 libavcodec/h264.c             stereo->type = AV_STEREO3D_LINES;
type              851 libavcodec/h264.c                 stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
type              853 libavcodec/h264.c                 stereo->type = AV_STEREO3D_SIDEBYSIDE;
type              856 libavcodec/h264.c             stereo->type = AV_STEREO3D_TOPBOTTOM;
type              859 libavcodec/h264.c             stereo->type = AV_STEREO3D_FRAMESEQUENCE;
type              862 libavcodec/h264.c             stereo->type = AV_STEREO3D_2D;
type             1979 libavcodec/h264.c     .type                  = AVMEDIA_TYPE_VIDEO,
type             2006 libavcodec/h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1442 libavcodec/h264_cabac.c     int type;
type             1447 libavcodec/h264_cabac.c     type = 3;
type             1451 libavcodec/h264_cabac.c         type += 4;
type             1453 libavcodec/h264_cabac.c     type += 2*get_cabac( &h->cabac, &h->cabac_state[39] );
type             1454 libavcodec/h264_cabac.c     type +=   get_cabac( &h->cabac, &h->cabac_state[39] );
type             1455 libavcodec/h264_cabac.c     return type;
type             1693 libavcodec/h264_cabac.c #define STORE_BLOCK(type) \
type             1702 libavcodec/h264_cabac.c                 ((type*)block)[j] = get_cabac_bypass_sign( CC, -1); \
type             1704 libavcodec/h264_cabac.c                 ((type*)block)[j] = (get_cabac_bypass_sign( CC, -qmul[j]) + 32) >> 6; \
type             1729 libavcodec/h264_cabac.c                 ((type*)block)[j] = get_cabac_bypass_sign( CC, -coeff_abs ); \
type             1731 libavcodec/h264_cabac.c                 ((type*)block)[j] = ((int)(get_cabac_bypass_sign( CC, -coeff_abs ) * qmul[j] + 32)) >> 6; \
type             1966 libavcodec/h264_cabac.c             mb_type=         b_mb_type_info[mb_type].type;
type             1978 libavcodec/h264_cabac.c             mb_type=         p_mb_type_info[mb_type].type;
type             1992 libavcodec/h264_cabac.c         mb_type= i_mb_type_info[mb_type].type;
type             2080 libavcodec/h264_cabac.c                 h->sub_mb_type[i]=      b_sub_mb_type_info[ h->sub_mb_type[i] ].type;
type             2096 libavcodec/h264_cabac.c                 h->sub_mb_type[i]=      p_sub_mb_type_info[ h->sub_mb_type[i] ].type;
type              585 libavcodec/h264_cavlc.c #define STORE_BLOCK(type) \
type              588 libavcodec/h264_cavlc.c         ((type*)block)[*scantable] = level[0]; \
type              596 libavcodec/h264_cavlc.c             ((type*)block)[*scantable]= level[i]; \
type              600 libavcodec/h264_cavlc.c             ((type*)block)[*scantable]= level[i]; \
type              603 libavcodec/h264_cavlc.c         ((type*)block)[*scantable] = ((int)(level[0] * qmul[*scantable] + 32))>>6; \
type              611 libavcodec/h264_cavlc.c             ((type*)block)[*scantable]= ((int)(level[i] * qmul[*scantable] + 32))>>6; \
type              615 libavcodec/h264_cavlc.c             ((type*)block)[*scantable]= ((int)(level[i] * qmul[*scantable] + 32))>>6; \
type              737 libavcodec/h264_cavlc.c             mb_type=         b_mb_type_info[mb_type].type;
type              745 libavcodec/h264_cavlc.c             mb_type=         p_mb_type_info[mb_type].type;
type              762 libavcodec/h264_cavlc.c         mb_type= i_mb_type_info[mb_type].type;
type              850 libavcodec/h264_cavlc.c                 h->sub_mb_type[i]=      b_sub_mb_type_info[ h->sub_mb_type[i] ].type;
type              868 libavcodec/h264_cavlc.c                 h->sub_mb_type[i]=      p_sub_mb_type_info[ h->sub_mb_type[i] ].type;
type              233 libavcodec/h264_mvpred.h #define FIX_MV_MBAFF(type, refn, mvn, idx)      \
type              236 libavcodec/h264_mvpred.h             if (!IS_INTERLACED(type)) {         \
type              243 libavcodec/h264_mvpred.h             if (IS_INTERLACED(type)) {          \
type              285 libavcodec/h264_sei.c         int type = 0;
type              293 libavcodec/h264_sei.c             type += show_bits(&h->gb, 8);
type              303 libavcodec/h264_sei.c             av_log(h->avctx, AV_LOG_DEBUG, "SEI %d len:%d\n", type, size);
type              307 libavcodec/h264_sei.c                    type, 8*size, get_bits_left(&h->gb));
type              312 libavcodec/h264_sei.c         switch (type) {
type              348 libavcodec/h264_sei.c             av_log(h->avctx, AV_LOG_DEBUG, "unknown SEI type %d\n", type);
type               74 libavcodec/h264data.h     uint16_t type;
type              109 libavcodec/h264data.h     uint16_t type;
type             2525 libavcodec/hevc.c                 stereo->type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
type             2527 libavcodec/hevc.c                 stereo->type = AV_STEREO3D_SIDEBYSIDE;
type             2530 libavcodec/hevc.c             stereo->type = AV_STEREO3D_TOPBOTTOM;
type             2533 libavcodec/hevc.c             stereo->type = AV_STEREO3D_FRAMESEQUENCE;
type             3390 libavcodec/hevc.c             int type = bytestream2_get_byte(&gb) & 0x3f;
type             3406 libavcodec/hevc.c                            type, i);
type             3512 libavcodec/hevc.c     .type                  = AVMEDIA_TYPE_VIDEO,
type              507 libavcodec/hnm4video.c     .type           = AVMEDIA_TYPE_VIDEO,
type              636 libavcodec/hqx.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1235 libavcodec/huffyuvdec.c     .type             = AVMEDIA_TYPE_VIDEO,
type             1250 libavcodec/huffyuvdec.c     .type             = AVMEDIA_TYPE_VIDEO,
type             1071 libavcodec/huffyuvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1089 libavcodec/huffyuvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              246 libavcodec/idcinvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              509 libavcodec/iff.c #define DECODE_RGBX_COMMON(type) \
type              519 libavcodec/iff.c         *(type *)(dst + y*linesize + x * sizeof(type)) = pixel; \
type              884 libavcodec/iff.c     .type           = AVMEDIA_TYPE_VIDEO,
type              897 libavcodec/iff.c     .type           = AVMEDIA_TYPE_VIDEO,
type              225 libavcodec/iirfilter.c #define FILTER_BW_O4(type, fmt) {           \
type              227 libavcodec/iirfilter.c     const type *src0 = src;                 \
type              228 libavcodec/iirfilter.c     type       *dst0 = dst;                 \
type              238 libavcodec/iirfilter.c #define FILTER_DIRECT_FORM_II(type, fmt) {                                  \
type              240 libavcodec/iirfilter.c     const type *src0 = src;                                                 \
type              241 libavcodec/iirfilter.c     type       *dst0 = dst;                                                 \
type              260 libavcodec/iirfilter.c #define FILTER_O2(type, fmt) {                                              \
type              262 libavcodec/iirfilter.c     const type *src0 = src;                                                 \
type              263 libavcodec/iirfilter.c     type       *dst0 = dst;                                                 \
type             1081 libavcodec/imc.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1097 libavcodec/imc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              249 libavcodec/indeo2.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1139 libavcodec/indeo3.c     .type           = AVMEDIA_TYPE_VIDEO,
type              505 libavcodec/indeo4.c                 mb->type = 1; /* empty macroblocks are always INTER */
type              533 libavcodec/indeo4.c                     mb->type = ref_mb->type;
type              536 libavcodec/indeo4.c                     mb->type = 0; /* mb_type is always INTRA for intra-frames */
type              538 libavcodec/indeo4.c                     mb->type = get_bits(&ctx->gb, mb_type_bits);
type              553 libavcodec/indeo4.c                 if (!mb->type) {
type              576 libavcodec/indeo4.c                         if (mb->type == 3) {
type              589 libavcodec/indeo4.c                     if (mb->type == 2) {
type              599 libavcodec/indeo4.c             if (mb->type)
type              700 libavcodec/indeo4.c     .type           = AVMEDIA_TYPE_VIDEO,
type              492 libavcodec/indeo5.c                 mb->type = 1; /* empty macroblocks are always INTER */
type              515 libavcodec/indeo5.c                     mb->type = ref_mb->type; /* copy mb_type from corresponding reference mb */
type              517 libavcodec/indeo5.c                     mb->type = 0; /* mb_type is always INTRA for intra-frames */
type              519 libavcodec/indeo5.c                     mb->type = get_bits1(&ctx->gb);
type              537 libavcodec/indeo5.c                 if (!mb->type) {
type              564 libavcodec/indeo5.c             if (mb->type)
type              685 libavcodec/indeo5.c     .type           = AVMEDIA_TYPE_VIDEO,
type              133 libavcodec/intelh263dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1045 libavcodec/interplayvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              643 libavcodec/ivi_common.c         is_intra = !mb->type;
type              670 libavcodec/ivi_common.c             if (mb->type == 2)
type              672 libavcodec/ivi_common.c             if (mb->type != 2 && mb->type != 3)
type              674 libavcodec/ivi_common.c             if (mb->type) {
type              689 libavcodec/ivi_common.c             if (mb->type == 2 || mb->type == 3) {
type              790 libavcodec/ivi_common.c             mb->type = 1; /* set the macroblocks type = INTER */
type              115 libavcodec/ivi_common.h     uint8_t     type;     ///< macroblock type: 0 - INTRA, 1 - INTER
type             1041 libavcodec/j2kenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              198 libavcodec/jacosubdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type             1691 libavcodec/jpeg2000dec.c     .type             = AVMEDIA_TYPE_VIDEO,
type              498 libavcodec/jpeg2000dwt.c                          int decomp_levels, int type)
type              504 libavcodec/jpeg2000dwt.c     s->type       = type;
type              519 libavcodec/jpeg2000dwt.c     switch (type) {
type              543 libavcodec/jpeg2000dwt.c     switch(s->type){
type              558 libavcodec/jpeg2000dwt.c     switch (s->type) {
type               46 libavcodec/jpeg2000dwt.h     uint8_t type;                        ///< 0 for 9/7; 1 for 5/3
type               59 libavcodec/jpeg2000dwt.h                          int decomp_levels, int type);
type              504 libavcodec/jpeglsdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              439 libavcodec/jpeglsenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              228 libavcodec/jvdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              179 libavcodec/kgv1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              419 libavcodec/kmvc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              745 libavcodec/lagarith.c     .type           = AVMEDIA_TYPE_VIDEO,
type              657 libavcodec/lcldec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              671 libavcodec/lcldec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              194 libavcodec/lclenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              132 libavcodec/libaacplus.c     .type           = AVMEDIA_TYPE_AUDIO,
type              133 libavcodec/libcelt_dec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              237 libavcodec/libfaac.c     .type           = AVMEDIA_TYPE_AUDIO,
type              411 libavcodec/libfdk-aacdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              414 libavcodec/libfdk-aacenc.c     .type                  = AVMEDIA_TYPE_AUDIO,
type              130 libavcodec/libgsmdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              144 libavcodec/libgsmdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              122 libavcodec/libgsmenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              135 libavcodec/libgsmenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              109 libavcodec/libilbc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              187 libavcodec/libilbc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              305 libavcodec/libmp3lame.c     .type                  = AVMEDIA_TYPE_AUDIO,
type              132 libavcodec/libopencore-amr.c     .type           = AVMEDIA_TYPE_AUDIO,
type              284 libavcodec/libopencore-amr.c     .type           = AVMEDIA_TYPE_AUDIO,
type              369 libavcodec/libopencore-amr.c     .type           = AVMEDIA_TYPE_AUDIO,
type              224 libavcodec/libopenh264enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              426 libavcodec/libopenjpegdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              651 libavcodec/libopenjpegenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              187 libavcodec/libopusdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              435 libavcodec/libopusenc.c     .type            = AVMEDIA_TYPE_AUDIO,
type              380 libavcodec/libschroedingerdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              448 libavcodec/libschroedingerenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              136 libavcodec/libshine.c     .type                  = AVMEDIA_TYPE_AUDIO,
type              195 libavcodec/libspeexdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              353 libavcodec/libspeexenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              374 libavcodec/libtheoraenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              208 libavcodec/libtwolame.c     .type           = AVMEDIA_TYPE_AUDIO,
type              190 libavcodec/libvo-aacenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              143 libavcodec/libvo-amrwbenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              200 libavcodec/libvorbisdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              369 libavcodec/libvorbisenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              180 libavcodec/libvpxdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              199 libavcodec/libvpxdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              876 libavcodec/libvpxenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              905 libavcodec/libvpxenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              185 libavcodec/libwavpackenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              350 libavcodec/libwebpenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              239 libavcodec/libx264.c             switch (stereo->type) {
type              882 libavcodec/libx264.c     .type             = AVMEDIA_TYPE_VIDEO,
type              897 libavcodec/libx264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              268 libavcodec/libx265.c         if (is_keyframe(nal[i].type))
type              329 libavcodec/libx265.c     .type             = AVMEDIA_TYPE_VIDEO,
type              427 libavcodec/libxavs.c     .type           = AVMEDIA_TYPE_VIDEO,
type              213 libavcodec/libxvid.c     if (param->type < 5 && param->type > 0)
type              214 libavcodec/libxvid.c         frame_type = frame_types[param->type];
type              745 libavcodec/libxvid.c     xvid_enc_frame.type      =
type              794 libavcodec/libxvid.c         if (xvid_enc_stats.type == XVID_TYPE_PVOP)
type              796 libavcodec/libxvid.c         else if (xvid_enc_stats.type == XVID_TYPE_BVOP)
type              798 libavcodec/libxvid.c         else if (xvid_enc_stats.type == XVID_TYPE_SVOP)
type              876 libavcodec/libxvid.c     .type           = AVMEDIA_TYPE_VIDEO,
type              127 libavcodec/libxvid_rc.c             xvid_plg_data.type          = s->last_pict_type;
type              181 libavcodec/libzvbi-teletextdec.c         sub_rect->type = SUBTITLE_ASS;
type              188 libavcodec/libzvbi-teletextdec.c         sub_rect->type = SUBTITLE_NONE;
type              244 libavcodec/libzvbi-teletextdec.c         sub_rect->type = SUBTITLE_NONE;
type              280 libavcodec/libzvbi-teletextdec.c     sub_rect->type = SUBTITLE_BITMAP;
type              460 libavcodec/libzvbi-teletextdec.c         if (ctx->pages->sub_rect->type != SUBTITLE_NONE) {
type              562 libavcodec/libzvbi-teletextdec.c     .type      = AVMEDIA_TYPE_SUBTITLE,
type              323 libavcodec/ljpegenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              328 libavcodec/loco.c     .type           = AVMEDIA_TYPE_VIDEO,
type              290 libavcodec/mace.c     .type           = AVMEDIA_TYPE_AUDIO,
type              303 libavcodec/mace.c     .type           = AVMEDIA_TYPE_AUDIO,
type              259 libavcodec/mdec.c     .type             = AVMEDIA_TYPE_VIDEO,
type              370 libavcodec/me_cmp.c void ff_set_cmp(MECmpContext *c, me_cmp_func *cmp, int type)
type              377 libavcodec/me_cmp.c         switch (type & 0xFF) {
type               91 libavcodec/me_cmp.h void ff_set_cmp(MECmpContext *c, me_cmp_func *cmp, int type);
type              380 libavcodec/metasound.c     .type           = AVMEDIA_TYPE_AUDIO,
type              377 libavcodec/microdvddec.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              476 libavcodec/mimic.c     .type                  = AVMEDIA_TYPE_VIDEO,
type              162 libavcodec/mjpegbdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1682 libavcodec/mjpegdec.c         int flags, layout, type;
type             1691 libavcodec/mjpegdec.c         type   = get_bits(&s->gb, 8);
type             1698 libavcodec/mjpegdec.c         if (type == 0) {
type             1699 libavcodec/mjpegdec.c             s->stereo3d->type = AV_STEREO3D_2D;
type             1700 libavcodec/mjpegdec.c         } else if (type == 1) {
type             1703 libavcodec/mjpegdec.c                 s->stereo3d->type = AV_STEREO3D_LINES;
type             1706 libavcodec/mjpegdec.c                 s->stereo3d->type = AV_STEREO3D_SIDEBYSIDE;
type             1709 libavcodec/mjpegdec.c                 s->stereo3d->type = AV_STEREO3D_TOPBOTTOM;
type             2285 libavcodec/mjpegdec.c             stereo->type  = s->stereo3d->type;
type             2357 libavcodec/mjpegdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             2373 libavcodec/mjpegdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              259 libavcodec/mjpegenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              278 libavcodec/mjpegenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1312 libavcodec/mlpdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1324 libavcodec/mlpdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              195 libavcodec/mmvideo.c     int type, res;
type              199 libavcodec/mmvideo.c     type = AV_RL16(&buf[0]);
type              207 libavcodec/mmvideo.c     switch(type) {
type              244 libavcodec/mmvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              863 libavcodec/motion_est.c static inline int get_penalty_factor(int lambda, int lambda2, int type){
type              864 libavcodec/motion_est.c     switch(type&0xFF){
type             1517 libavcodec/motion_est.c     int type=0;
type             1571 libavcodec/motion_est.c         type = CANDIDATE_MB_TYPE_FORWARD;
type             1575 libavcodec/motion_est.c             type = CANDIDATE_MB_TYPE_DIRECT;
type             1579 libavcodec/motion_est.c             type= CANDIDATE_MB_TYPE_BACKWARD;
type             1583 libavcodec/motion_est.c             type= CANDIDATE_MB_TYPE_BIDIR;
type             1587 libavcodec/motion_est.c             type= CANDIDATE_MB_TYPE_FORWARD_I;
type             1591 libavcodec/motion_est.c             type= CANDIDATE_MB_TYPE_BACKWARD_I;
type             1600 libavcodec/motion_est.c         type= CANDIDATE_MB_TYPE_FORWARD | CANDIDATE_MB_TYPE_BACKWARD | CANDIDATE_MB_TYPE_BIDIR | CANDIDATE_MB_TYPE_DIRECT;
type             1602 libavcodec/motion_est.c             type |= CANDIDATE_MB_TYPE_FORWARD_I;
type             1604 libavcodec/motion_est.c             type |= CANDIDATE_MB_TYPE_BACKWARD_I;
type             1606 libavcodec/motion_est.c             type |= CANDIDATE_MB_TYPE_BIDIR_I;
type             1609 libavcodec/motion_est.c         if(dmin>256*256*16) type&= ~CANDIDATE_MB_TYPE_DIRECT; //do not try direct mode if it is invalid for this MB
type             1610 libavcodec/motion_est.c         if (s->codec_id == AV_CODEC_ID_MPEG4 && type&CANDIDATE_MB_TYPE_DIRECT &&
type             1612 libavcodec/motion_est.c             type |= CANDIDATE_MB_TYPE_DIRECT0;
type             1615 libavcodec/motion_est.c     s->mb_type[mb_y*s->mb_stride + mb_x]= type;
type             1619 libavcodec/motion_est.c int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type)
type             1639 libavcodec/motion_est.c                 if(s->mb_type[xy] & type){
type             1723 libavcodec/motion_est.c                      int16_t (*mv_table)[2], int f_code, int type, int truncate)
type             1741 libavcodec/motion_est.c             if (s->mb_type[xy] & type){    // RAL: "type" test added...
type             1752 libavcodec/motion_est.c                             s->mb_type[xy] &= ~type;
type              348 libavcodec/motionpixels.c     .type           = AVMEDIA_TYPE_VIDEO,
type              109 libavcodec/movtextdec.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              122 libavcodec/movtextenc.c         if (sub->rects[i]->type != SUBTITLE_ASS) {
type              159 libavcodec/movtextenc.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              333 libavcodec/mpc7.c     .type           = AVMEDIA_TYPE_AUDIO,
type              437 libavcodec/mpc8.c     .type           = AVMEDIA_TYPE_AUDIO,
type             2356 libavcodec/mpeg12dec.c                 s1->stereo3d.type = AV_STEREO3D_SIDEBYSIDE;
type             2359 libavcodec/mpeg12dec.c                 s1->stereo3d.type = AV_STEREO3D_TOPBOTTOM;
type             2362 libavcodec/mpeg12dec.c                 s1->stereo3d.type = AV_STEREO3D_2D;
type             2365 libavcodec/mpeg12dec.c                 s1->stereo3d.type = AV_STEREO3D_SIDEBYSIDE_QUINCUNX;
type             2828 libavcodec/mpeg12dec.c     .type                  = AVMEDIA_TYPE_VIDEO,
type             2845 libavcodec/mpeg12dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             2863 libavcodec/mpeg12dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             2896 libavcodec/mpeg12dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             2914 libavcodec/mpeg12dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             2930 libavcodec/mpeg12dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              518 libavcodec/mpeg12enc.c         switch (stereo->type) {
type             1149 libavcodec/mpeg12enc.c     .type                 = AVMEDIA_TYPE_VIDEO,
type             1165 libavcodec/mpeg12enc.c     .type                 = AVMEDIA_TYPE_VIDEO,
type             2767 libavcodec/mpeg4videodec.c     .type                  = AVMEDIA_TYPE_VIDEO,
type             2796 libavcodec/mpeg4videodec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1413 libavcodec/mpeg4videoenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               45 libavcodec/mpegaudiodec_fixed.c     .type           = AVMEDIA_TYPE_AUDIO,
type               61 libavcodec/mpegaudiodec_fixed.c     .type           = AVMEDIA_TYPE_AUDIO,
type               77 libavcodec/mpegaudiodec_fixed.c     .type           = AVMEDIA_TYPE_AUDIO,
type               93 libavcodec/mpegaudiodec_fixed.c     .type           = AVMEDIA_TYPE_AUDIO,
type              109 libavcodec/mpegaudiodec_fixed.c     .type           = AVMEDIA_TYPE_AUDIO,
type               45 libavcodec/mpegaudiodec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type               62 libavcodec/mpegaudiodec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type               79 libavcodec/mpegaudiodec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type               96 libavcodec/mpegaudiodec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type              113 libavcodec/mpegaudiodec_float.c     .type           = AVMEDIA_TYPE_AUDIO,
type               27 libavcodec/mpegaudioenc_fixed.c     .type                  = AVMEDIA_TYPE_AUDIO,
type               28 libavcodec/mpegaudioenc_float.c     .type                  = AVMEDIA_TYPE_AUDIO,
type             2347 libavcodec/mpegvideo.c                     int type;
type             2348 libavcodec/mpegvideo.c                     for (type = 0; type < 3; type++) {
type             2350 libavcodec/mpegvideo.c                         switch (type) {
type              855 libavcodec/mpegvideo.h int ff_get_best_fcode(MpegEncContext * s, int16_t (*mv_table)[2], int type);
type              858 libavcodec/mpegvideo.h                      int16_t (*mv_table)[2], int f_code, int type, int truncate);
type             1479 libavcodec/mpegvideo_enc.c                 int type = s->input_picture[i]->f->pict_type;
type             1480 libavcodec/mpegvideo_enc.c                 if (type && type != AV_PICTURE_TYPE_B)
type             2430 libavcodec/mpegvideo_enc.c static inline void copy_context_before_encode(MpegEncContext *d, MpegEncContext *s, int type){
type             2458 libavcodec/mpegvideo_enc.c static inline void copy_context_after_encode(MpegEncContext *d, MpegEncContext *s, int type){
type             2497 libavcodec/mpegvideo_enc.c static inline void encode_mb_hq(MpegEncContext *s, MpegEncContext *backup, MpegEncContext *best, int type,
type             2504 libavcodec/mpegvideo_enc.c     copy_context_before_encode(s, backup, type);
type             2544 libavcodec/mpegvideo_enc.c         copy_context_after_encode(best, s, type);
type             3616 libavcodec/mpegvideo_enc.c                             int type= dir ? (CANDIDATE_MB_TYPE_BACKWARD_I|CANDIDATE_MB_TYPE_BIDIR_I)
type             3619 libavcodec/mpegvideo_enc.c                                             s->b_field_mv_table[dir][i][j], dir ? s->b_code : s->f_code, type, 1);
type             4573 libavcodec/mpegvideo_enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             4601 libavcodec/mpegvideo_enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             4617 libavcodec/mpegvideo_enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             4632 libavcodec/mpegvideo_enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             4647 libavcodec/mpegvideo_enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              353 libavcodec/mpegvideo_xvmc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              367 libavcodec/mpegvideo_xvmc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               89 libavcodec/mpl2dec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              917 libavcodec/msmpeg4dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              934 libavcodec/msmpeg4dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              951 libavcodec/msmpeg4dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              968 libavcodec/msmpeg4dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              163 libavcodec/msrle.c     .type           = AVMEDIA_TYPE_VIDEO,
type              221 libavcodec/mss1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              845 libavcodec/mss2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              866 libavcodec/mss3.c     .type           = AVMEDIA_TYPE_VIDEO,
type              676 libavcodec/mss4.c     .type           = AVMEDIA_TYPE_VIDEO,
type              343 libavcodec/msvideo1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              298 libavcodec/msvideo1enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              271 libavcodec/mvcdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              285 libavcodec/mvcdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              340 libavcodec/mxpegdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              202 libavcodec/nellymoserdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              415 libavcodec/nellymoserenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              344 libavcodec/nuv.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1213 libavcodec/nvenc.c     .type = AVMEDIA_TYPE_VIDEO,
type              194 libavcodec/on2avc.c                                int dst_size, int type, float band_scale)
type              199 libavcodec/on2avc.c         val = get_vlc2(gb, c->cb_vlc[type].table, 9, 3);
type              220 libavcodec/on2avc.c                                int dst_size, int type, float band_scale)
type              225 libavcodec/on2avc.c         val = get_vlc2(gb, c->cb_vlc[type].table, 9, 3);
type              229 libavcodec/on2avc.c         if (type == ON2AVC_ESC_CB) {
type             1013 libavcodec/on2avc.c     .type           = AVMEDIA_TYPE_AUDIO,
type               97 libavcodec/options.c     s->codec_type = codec ? codec->type : AVMEDIA_TYPE_UNKNOWN;
type              295 libavcodec/options.c {"type", "", SROFFSET(type), AV_OPT_TYPE_INT, {.i64 = 0 }, 0, INT_MAX, 0},
type              373 libavcodec/options.c     .type             = AVMEDIA_TYPE_VIDEO,
type              385 libavcodec/options.c     .type             = AVMEDIA_TYPE_VIDEO,
type              397 libavcodec/options.c     .type             = AVMEDIA_TYPE_VIDEO,
type              408 libavcodec/options.c     .type             = AVMEDIA_TYPE_VIDEO,
type             1271 libavcodec/opus_silk.c         int type = opus_rc_getsymbol(rc, silk_model_frame_type_active);
type             1272 libavcodec/opus_silk.c         qoffset_high = type & 1;
type             1273 libavcodec/opus_silk.c         voiced = type >> 1;
type              679 libavcodec/opusdec.c     .type            = AVMEDIA_TYPE_AUDIO,
type               77 libavcodec/pafaudio.c     .type         = AVMEDIA_TYPE_AUDIO,
type              390 libavcodec/pafvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              151 libavcodec/pamenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              307 libavcodec/pcm-bluray.c     .type           = AVMEDIA_TYPE_AUDIO,
type              308 libavcodec/pcm-dvd.c     .type           = AVMEDIA_TYPE_AUDIO,
type               65 libavcodec/pcm.c #define ENCODE(type, endian, src, dst, n, shift, offset)                \
type               66 libavcodec/pcm.c     samples_ ## type = (const type *) src;                              \
type               68 libavcodec/pcm.c         register type v = (*samples_ ## type++ >> shift) + offset;      \
type               72 libavcodec/pcm.c #define ENCODE_PLANAR(type, endian, dst, n, shift, offset)              \
type               76 libavcodec/pcm.c         samples_ ## type = (const type *) frame->extended_data[c];      \
type               78 libavcodec/pcm.c             register type v = (*samples_ ## type++ >> shift) + offset;  \
type              500 libavcodec/pcm.c     .type         = AVMEDIA_TYPE_AUDIO,                                     \
type              521 libavcodec/pcm.c     .type           = AVMEDIA_TYPE_AUDIO,                                   \
type              239 libavcodec/pcx.c     .type         = AVMEDIA_TYPE_VIDEO,
type              216 libavcodec/pcxenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              533 libavcodec/pgssubdec.c         sub->rects[i]->type = SUBTITLE_BITMAP;
type              692 libavcodec/pgssubdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              262 libavcodec/pictordec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1284 libavcodec/pngdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1300 libavcodec/pngdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              595 libavcodec/pngenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               68 libavcodec/pnm.c     s->type= buf1[1]-'0';
type               70 libavcodec/pnm.c     if (s->type==1 || s->type==4) {
type               72 libavcodec/pnm.c     } else if (s->type==2 || s->type==5) {
type               77 libavcodec/pnm.c     } else if (s->type==3 || s->type==6) {
type               79 libavcodec/pnm.c     } else if (s->type==7) {
type               32 libavcodec/pnm.h     int type;
type              129 libavcodec/pnmdec.c         if(s->type < 4 || (is_mono && s->type==7)){
type              136 libavcodec/pnmdec.c                     if(s->type < 4)
type              264 libavcodec/pnmdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              276 libavcodec/pnmdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              288 libavcodec/pnmdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              300 libavcodec/pnmdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              312 libavcodec/pnmdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              143 libavcodec/pnmenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              158 libavcodec/pnmenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              173 libavcodec/pnmenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              188 libavcodec/pnmenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              682 libavcodec/proresdec2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              777 libavcodec/proresdec_lgpl.c     .type           = AVMEDIA_TYPE_VIDEO,
type              613 libavcodec/proresenc_anatoliy.c     .type           = AVMEDIA_TYPE_VIDEO,
type              627 libavcodec/proresenc_anatoliy.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1344 libavcodec/proresenc_kostya.c     .type           = AVMEDIA_TYPE_VIDEO,
type               88 libavcodec/ptx.c     .type           = AVMEDIA_TYPE_VIDEO,
type              796 libavcodec/qcelpdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type               82 libavcodec/qdm2.c     int type;            ///< subpacket type
type              263 libavcodec/qdm2.c     sub_packet->type = get_bits(gb, 8);
type              265 libavcodec/qdm2.c     if (sub_packet->type == 0) {
type              271 libavcodec/qdm2.c         if (sub_packet->type & 0x80) {
type              274 libavcodec/qdm2.c             sub_packet->type  &= 0x7f;
type              277 libavcodec/qdm2.c         if (sub_packet->type == 0x7f)
type              278 libavcodec/qdm2.c             sub_packet->type |= (get_bits(gb, 8) << 8);
type              285 libavcodec/qdm2.c            sub_packet->type, sub_packet->size, get_bits_count(gb) / 8);
type              296 libavcodec/qdm2.c                                                         int type)
type              299 libavcodec/qdm2.c         if (list->packet->type == type)
type             1130 libavcodec/qdm2.c     if (header.type < 2 || header.type >= 8) {
type             1136 libavcodec/qdm2.c     q->superblocktype_2_3 = (header.type == 2 || header.type == 3);
type             1141 libavcodec/qdm2.c     if (header.type == 2 || header.type == 4 || header.type == 5) {
type             1188 libavcodec/qdm2.c         if (packet->type == 0)
type             1192 libavcodec/qdm2.c             if (packet->type != 10 && packet->type != 11 && packet->type != 12)
type             1203 libavcodec/qdm2.c         if (packet->type == 8) {
type             1206 libavcodec/qdm2.c         } else if (packet->type >= 9 && packet->type <= 12) {
type             1209 libavcodec/qdm2.c         } else if (packet->type == 13) {
type             1212 libavcodec/qdm2.c         } else if (packet->type == 14) {
type             1215 libavcodec/qdm2.c         } else if (packet->type == 15) {
type             1218 libavcodec/qdm2.c         } else if (packet->type >= 16 && packet->type < 48 &&
type             1219 libavcodec/qdm2.c                    !fft_subpackets[packet->type - 16]) {
type             1339 libavcodec/qdm2.c     int i, j, min, max, value, type, unknown_flag;
type             1356 libavcodec/qdm2.c             value = q->sub_packet_list_B[j].packet->type;
type             1370 libavcodec/qdm2.c             (packet->type < 16 || packet->type >= 48 ||
type             1371 libavcodec/qdm2.c              fft_subpackets[packet->type - 16]))
type             1377 libavcodec/qdm2.c         if (packet->type >= 32 && packet->type < 48 && !fft_subpackets[packet->type - 16])
type             1382 libavcodec/qdm2.c         type = packet->type;
type             1384 libavcodec/qdm2.c         if ((type >= 17 && type < 24) || (type >= 33 && type < 40)) {
type             1385 libavcodec/qdm2.c             int duration = q->sub_sampling + 5 - (type & 15);
type             1389 libavcodec/qdm2.c         } else if (type == 31) {
type             1392 libavcodec/qdm2.c         } else if (type == 46) {
type             1885 libavcodec/qdm2.c     .type             = AVMEDIA_TYPE_AUDIO,
type              146 libavcodec/qdrw.c     .type           = AVMEDIA_TYPE_VIDEO,
type              347 libavcodec/qpeg.c     .type           = AVMEDIA_TYPE_VIDEO,
type              282 libavcodec/qsv_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              305 libavcodec/qsv_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              520 libavcodec/qtrle.c     .type           = AVMEDIA_TYPE_VIDEO,
type              403 libavcodec/qtrleenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              102 libavcodec/r210dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              113 libavcodec/r210dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              124 libavcodec/r210dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type               92 libavcodec/r210enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              104 libavcodec/r210enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              116 libavcodec/r210enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              132 libavcodec/ra144dec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              548 libavcodec/ra144enc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              244 libavcodec/ra288.c     .type           = AVMEDIA_TYPE_AUDIO,
type              526 libavcodec/ralf.c     .type           = AVMEDIA_TYPE_AUDIO,
type              368 libavcodec/rawdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type               80 libavcodec/rawenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               81 libavcodec/realtextdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              102 libavcodec/resample2.c static int build_filter(FELEM *filter, double factor, int tap_count, int phase_count, int scale, int type){
type              121 libavcodec/resample2.c             switch(type){
type              134 libavcodec/resample2.c                 y *= bessel(type*sqrt(FFMAX(1-w*w, 0)));
type              219 libavcodec/rl2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              195 libavcodec/roqaudioenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              241 libavcodec/roqvideodec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              612 libavcodec/roqvideoenc.c static void write_typecode(CodingSpool *s, uint8_t type)
type              614 libavcodec/roqvideoenc.c     s->typeSpool |= (type & 3) << (14 - s->typeSpoolLength);
type             1149 libavcodec/roqvideoenc.c     .type                 = AVMEDIA_TYPE_VIDEO,
type              277 libavcodec/rpza.c     .type           = AVMEDIA_TYPE_VIDEO,
type              792 libavcodec/rv10.c     .type           = AVMEDIA_TYPE_VIDEO,
type              809 libavcodec/rv10.c     .type           = AVMEDIA_TYPE_VIDEO,
type               70 libavcodec/rv10enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               65 libavcodec/rv20enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               47 libavcodec/rv30.c     si->type = get_bits(gb, 2);
type               48 libavcodec/rv30.c     if(si->type == 1) si->type = 0;
type              288 libavcodec/rv30.c     .type                  = AVMEDIA_TYPE_VIDEO,
type              342 libavcodec/rv34.c static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
type              346 libavcodec/rv34.c     return type ? &inter_vlcs[rv34_quant_to_vlc_set[1][av_clip(quant, 0, 30)]]
type              560 libavcodec/rv34.c     int type = cur_pic->mb_type[mb_pos];
type              562 libavcodec/rv34.c     if((r->avail_cache[6-1] & type) & mask){
type              567 libavcodec/rv34.c     if((r->avail_cache[6-4] & type) & mask){
type              572 libavcodec/rv34.c     if(r->avail_cache[6-4] && (r->avail_cache[6-2] & type) & mask){
type              576 libavcodec/rv34.c     }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[6-5] & type) & mask){
type             1418 libavcodec/rv34.c     slice_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
type             1448 libavcodec/rv34.c         if(r->si.type)
type             1675 libavcodec/rv34.c         si.type == AV_PICTURE_TYPE_B) {
type             1680 libavcodec/rv34.c     if(   (avctx->skip_frame >= AVDISCARD_NONREF && si.type==AV_PICTURE_TYPE_B)
type             1681 libavcodec/rv34.c        || (avctx->skip_frame >= AVDISCARD_NONKEY && si.type!=AV_PICTURE_TYPE_I)
type             1718 libavcodec/rv34.c         s->pict_type = si.type ? si.type : AV_PICTURE_TYPE_I;
type               74 libavcodec/rv34.h     int type;              ///< slice type (intra, inter)
type               46 libavcodec/rv34_parser.c     int type, pts, hdr;
type               56 libavcodec/rv34_parser.c         type = (hdr >> 27) & 3;
type               59 libavcodec/rv34_parser.c         type = (hdr >> 29) & 3;
type               63 libavcodec/rv34_parser.c     if (type != 3 && s->pts != AV_NOPTS_VALUE) {
type               67 libavcodec/rv34_parser.c         if (type != 3)
type               72 libavcodec/rv34_parser.c     s->pict_type = rv_to_av_frame_type[type];
type              138 libavcodec/rv40.c     si->type = get_bits(gb, 2);
type              139 libavcodec/rv40.c     if(si->type == 1) si->type = 0;
type              146 libavcodec/rv40.c     if(!si->type || !get_bits1(gb))
type              571 libavcodec/rv40.c     .type                  = AVMEDIA_TYPE_VIDEO,
type              157 libavcodec/s302m.c     .type           = AVMEDIA_TYPE_AUDIO,
type              168 libavcodec/s302menc.c     .type                  = AVMEDIA_TYPE_AUDIO,
type              155 libavcodec/samidec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type             1521 libavcodec/sanm.c     .type           = AVMEDIA_TYPE_VIDEO,
type              294 libavcodec/sgidec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              218 libavcodec/sgienc.c     .type      = AVMEDIA_TYPE_VIDEO,
type              153 libavcodec/sgirledec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              672 libavcodec/shorten.c     .type           = AVMEDIA_TYPE_AUDIO,
type              568 libavcodec/sipr.c     .type           = AVMEDIA_TYPE_AUDIO,
type              443 libavcodec/smacker.c         int type, run, mode;
type              446 libavcodec/smacker.c         type = smk_get_code(&gb, smk->type_tbl, smk->type_last);
type              447 libavcodec/smacker.c         run = block_runs[(type >> 2) & 0x3F];
type              448 libavcodec/smacker.c         switch(type & 3){
type              524 libavcodec/smacker.c             mode = type >> 8;
type              810 libavcodec/smacker.c     .type           = AVMEDIA_TYPE_VIDEO,
type              822 libavcodec/smacker.c     .type           = AVMEDIA_TYPE_AUDIO,
type              469 libavcodec/smc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              206 libavcodec/smvjpegdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              328 libavcodec/snow.c     if(block->type & BLOCK_INTRA){
type               55 libavcodec/snow.h     uint8_t type;
type               68 libavcodec/snow.h     .type= 0,
type              247 libavcodec/snow.h static inline void snow_set_blocks(SnowContext *s, int level, int x, int y, int l, int cb, int cr, int mx, int my, int ref, int type){
type              261 libavcodec/snow.h     block.type= type;
type              288 libavcodec/snow.h     if((a->type&BLOCK_INTRA) && (b->type&BLOCK_INTRA)){
type              291 libavcodec/snow.h         return !((a->mx - b->mx) | (a->my - b->my) | (a->ref - b->ref) | ((a->type ^ b->type)&BLOCK_INTRA));
type              479 libavcodec/snow.h static inline void set_blocks(SnowContext *s, int level, int x, int y, int l, int cb, int cr, int mx, int my, int ref, int type){
type              494 libavcodec/snow.h     block.type= type;
type              320 libavcodec/snow_dwt.c                     int stride, int type, int decomposition_count)
type              325 libavcodec/snow_dwt.c         switch (type) {
type              640 libavcodec/snow_dwt.c                                    int height, int stride_line, int type,
type              645 libavcodec/snow_dwt.c         switch (type) {
type              661 libavcodec/snow_dwt.c                                     int type, int decomposition_count, int y)
type              663 libavcodec/snow_dwt.c     const int support = type == 1 ? 3 : 5;
type              665 libavcodec/snow_dwt.c     if (type == 2)
type              670 libavcodec/snow_dwt.c             switch (type) {
type              688 libavcodec/snow_dwt.c                                  int height, int stride, int type,
type              693 libavcodec/snow_dwt.c         switch (type) {
type              708 libavcodec/snow_dwt.c                                   int stride, int type,
type              711 libavcodec/snow_dwt.c     const int support = type == 1 ? 3 : 5;
type              713 libavcodec/snow_dwt.c     if (type == 2)
type              718 libavcodec/snow_dwt.c             switch (type) {
type              732 libavcodec/snow_dwt.c                      int stride, int type, int decomposition_count)
type              736 libavcodec/snow_dwt.c     ff_spatial_idwt_init(cs, buffer, width, height, stride, type,
type              739 libavcodec/snow_dwt.c         ff_spatial_idwt_slice(cs, buffer, temp, width, height, stride, type,
type              744 libavcodec/snow_dwt.c                       int w, int h, int type)
type              790 libavcodec/snow_dwt.c     ff_spatial_dwt(tmp, tmp2, w, h, 32, type, dec_count);
type              804 libavcodec/snow_dwt.c                             scale[type][dec_count - 3][level][ori];
type              113 libavcodec/snow_dwt.h                     int type, int decomposition_count);
type              116 libavcodec/snow_dwt.h                                    int height, int stride_line, int type,
type              121 libavcodec/snow_dwt.h                                     int type, int decomposition_count, int y);
type              123 libavcodec/snow_dwt.h                      int stride, int type, int decomposition_count);
type               98 libavcodec/snowdec.c             if (bn->type)
type              173 libavcodec/snowdec.c         int type, mx, my;
type              182 libavcodec/snowdec.c         type= get_rac(&s->c, &s->block_state[1 + left->type + top->type]) ? BLOCK_INTRA : 0;
type              184 libavcodec/snowdec.c         if(type){
type              202 libavcodec/snowdec.c         set_blocks(s, level, x, y, l, cb, cr, mx, my, ref, type);
type              640 libavcodec/snowdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              180 libavcodec/snowenc.c static inline int get_penalty_factor(int lambda, int lambda2, int type){
type              181 libavcodec/snowenc.c     switch(type&0xFF){
type              354 libavcodec/snowenc.c     put_rac(&pc, &p_state[1 + left->type + top->type], 0);
type              385 libavcodec/snowenc.c     put_rac(&ic, &i_state[1 + left->type + top->type], 1);
type              476 libavcodec/snowenc.c     if(b->type & BLOCK_INTRA){
type              478 libavcodec/snowenc.c         put_rac(&s->c, &s->block_state[1 + (left->type&1) + (top->type&1)], 1);
type              487 libavcodec/snowenc.c         put_rac(&s->c, &s->block_state[1 + (left->type&1) + (top->type&1)], 0);
type              518 libavcodec/snowenc.c     b->type|= BLOCK_INTRA;
type              578 libavcodec/snowenc.c     if(b->type & BLOCK_INTRA){
type              903 libavcodec/snowenc.c         block->type |= BLOCK_INTRA;
type              913 libavcodec/snowenc.c         block->type &= ~BLOCK_INTRA;
type              963 libavcodec/snowenc.c     block->type &= ~BLOCK_INTRA;
type             1020 libavcodec/snowenc.c                 if(pass && (block->type & BLOCK_OPT))
type             1022 libavcodec/snowenc.c                 block->type |= BLOCK_OPT;
type             1087 libavcodec/snowenc.c                 if(pass > 0 && (block->type&BLOCK_INTRA)){
type             1147 libavcodec/snowenc.c                     if(tb ) tb ->type &= ~BLOCK_OPT;
type             1148 libavcodec/snowenc.c                     if(lb ) lb ->type &= ~BLOCK_OPT;
type             1149 libavcodec/snowenc.c                     if(rb ) rb ->type &= ~BLOCK_OPT;
type             1150 libavcodec/snowenc.c                     if(bb ) bb ->type &= ~BLOCK_OPT;
type             1151 libavcodec/snowenc.c                     if(tlb) tlb->type &= ~BLOCK_OPT;
type             1152 libavcodec/snowenc.c                     if(trb) trb->type &= ~BLOCK_OPT;
type             1153 libavcodec/snowenc.c                     if(blb) blb->type &= ~BLOCK_OPT;
type             1154 libavcodec/snowenc.c                     if(brb) brb->type &= ~BLOCK_OPT;
type             1194 libavcodec/snowenc.c                     if(!(b[i]->type&BLOCK_INTRA))
type             1892 libavcodec/snowenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1056 libavcodec/sonic.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1070 libavcodec/sonic.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1085 libavcodec/sonic.c     .type           = AVMEDIA_TYPE_AUDIO,
type              100 libavcodec/sp5xdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              114 libavcodec/sp5xdec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              233 libavcodec/srtdec.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              244 libavcodec/srtdec.c     .type         = AVMEDIA_TYPE_SUBTITLE,
type              235 libavcodec/srtenc.c         if (sub->rects[i]->type != SUBTITLE_ASS) {
type              275 libavcodec/srtenc.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              288 libavcodec/srtenc.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type               72 libavcodec/subviewerdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type               35 libavcodec/sunrast.c     unsigned int w, h, depth, type, maptype, maplength, stride, x, y, len, alen;
type               51 libavcodec/sunrast.c     type      = AV_RB32(buf + 20);
type               56 libavcodec/sunrast.c     if (type == RT_EXPERIMENTAL) {
type               60 libavcodec/sunrast.c     if (type > RT_FORMAT_IFF) {
type               73 libavcodec/sunrast.c     if (type == RT_FORMAT_TIFF || type == RT_FORMAT_IFF) {
type               89 libavcodec/sunrast.c             avctx->pix_fmt = (type == RT_FORMAT_RGB) ? AV_PIX_FMT_RGB24 : AV_PIX_FMT_BGR24;
type               92 libavcodec/sunrast.c             avctx->pix_fmt = (type == RT_FORMAT_RGB) ? AV_PIX_FMT_0RGB : AV_PIX_FMT_0BGR;
type              143 libavcodec/sunrast.c     if (type == RT_BYTE_ENCODED) {
type              211 libavcodec/sunrast.c     .type           = AVMEDIA_TYPE_VIDEO,
type               31 libavcodec/sunrastenc.c     int type;       ///< type of file
type               46 libavcodec/sunrastenc.c     bytestream2_put_be32u(&s->p, s->type);
type               82 libavcodec/sunrastenc.c      if (s->type == RT_BYTE_ENCODED) {
type              141 libavcodec/sunrastenc.c         s->type = RT_BYTE_ENCODED;
type              144 libavcodec/sunrastenc.c         s->type = RT_STANDARD;
type              173 libavcodec/sunrastenc.c                 s->length * (s->type == RT_BYTE_ENCODED ? 2 : 1);
type              193 libavcodec/sunrastenc.c     if (s->type == RT_BYTE_ENCODED)
type              216 libavcodec/sunrastenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              837 libavcodec/svq1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              646 libavcodec/svq1enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              243 libavcodec/svq3.c                                     int index, const int type)
type              250 libavcodec/svq3.c     const int intra           = 3 * type >> 2;
type              251 libavcodec/svq3.c     const uint8_t *const scan = scan_patterns[type];
type              261 libavcodec/svq3.c             if (type == 3) {
type              292 libavcodec/svq3.c         if (type != 2) {
type              726 libavcodec/svq3.c         const int type  = ((h->qscale < 24 && IS_INTRA4x4(mb_type)) ? 2 : 1);
type              736 libavcodec/svq3.c                     if (svq3_decode_block(&h->gb, &h->mb[16 * k], index, type)) {
type             1377 libavcodec/svq3.c     .type           = AVMEDIA_TYPE_VIDEO,
type               31 libavcodec/tableprint.h #define WRITE_1D_FUNC_ARGV(type, linebrk, fmtstr, ...)\
type               32 libavcodec/tableprint.h void write_##type##_array(const type *data, int len)\
type               43 libavcodec/tableprint.h #define WRITE_1D_FUNC(type, fmtstr, linebrk)\
type               44 libavcodec/tableprint.h     WRITE_1D_FUNC_ARGV(type, linebrk, fmtstr, data[i])
type               46 libavcodec/tableprint.h #define WRITE_2D_FUNC(type)\
type               47 libavcodec/tableprint.h void write_##type##_2d_array(const void *arg, int len, int len2)\
type               49 libavcodec/tableprint.h     const type *data = arg;\
type               53 libavcodec/tableprint.h         write_##type##_array(data + i * len2, len2);\
type               84 libavcodec/tableprint.h #define WRITE_ARRAY_ALIGNED(prefix, align, type, name)  \
type               88 libavcodec/tableprint.h                #type", "#name")[%"FMT"] = {\n",         \
type               90 libavcodec/tableprint.h         write_##type##_array(name, array_size);         \
type               94 libavcodec/tableprint.h #define WRITE_ARRAY(prefix, type, name)                 \
type               97 libavcodec/tableprint.h         printf(prefix" "#type" "#name"[%"FMT"] = {\n",  \
type               99 libavcodec/tableprint.h         write_##type##_array(name, array_size);         \
type              103 libavcodec/tableprint.h #define WRITE_2D_ARRAY(prefix, type, name)                              \
type              107 libavcodec/tableprint.h         printf(prefix" "#type" "#name"[%"FMT"][%"FMT"] = {\n",          \
type              109 libavcodec/tableprint.h         write_##type##_2d_array(name, array_size1, array_size2);        \
type               42 libavcodec/tableprint_vlc.h #define REPLACE_DEFINE2(type) write_##type##_array
type               43 libavcodec/tableprint_vlc.h #define REPLACE_DEFINE(type) REPLACE_DEFINE2(type)
type               52 libavcodec/tak.c static int tak_get_nb_samples(int sample_rate, enum TAKFrameSizeType type)
type               56 libavcodec/tak.c     if (type <= TAK_FST_250ms) {
type               57 libavcodec/tak.c         nb_samples     = sample_rate * frame_duration_type_quants[type] >>
type               60 libavcodec/tak.c     } else if (type < FF_ARRAY_ELEMS(frame_duration_type_quants)) {
type               61 libavcodec/tak.c         nb_samples     = frame_duration_type_quants[type];
type              936 libavcodec/takdec.c     .type             = AVMEDIA_TYPE_AUDIO,
type               56 libavcodec/targa.c     int type, count;
type               67 libavcodec/targa.c         type  = bytestream2_get_byteu(&s->gb);
type               68 libavcodec/targa.c         count = (type & 0x7F) + 1;
type               69 libavcodec/targa.c         type &= 0x80;
type               70 libavcodec/targa.c         if (!type) {
type              302 libavcodec/targa.c     .type           = AVMEDIA_TYPE_VIDEO,
type               78 libavcodec/targa_y216dec.c     .type         = AVMEDIA_TYPE_VIDEO,
type              194 libavcodec/targaenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               83 libavcodec/textdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              108 libavcodec/textdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              124 libavcodec/textdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              140 libavcodec/textdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              156 libavcodec/textdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              262 libavcodec/tiertexseqv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              110 libavcodec/tiff.c     RET_GEOKEY(VERT, vert, type);
type              111 libavcodec/tiff.c     RET_GEOKEY(PROJ, proj, type);
type              112 libavcodec/tiff.c     RET_GEOKEY(GEOG, geog, type);
type              113 libavcodec/tiff.c     RET_GEOKEY(CONF, conf, type);
type              226 libavcodec/tiff.c static int add_metadata(int count, int type,
type              229 libavcodec/tiff.c     switch(type) {
type              778 libavcodec/tiff.c     unsigned tag, type, count, off, value = 0, value2 = 0;
type              784 libavcodec/tiff.c     ret = ff_tread_tag(&s->gb, s->le, &tag, &type, &count, &start);
type              791 libavcodec/tiff.c         switch (type) {
type              795 libavcodec/tiff.c             value = ff_tget(&s->gb, type, s->le);
type              828 libavcodec/tiff.c             switch (type) {
type              833 libavcodec/tiff.c                 if (bytestream2_get_bytes_left(&s->gb) < type_sizes[type] * count)
type              836 libavcodec/tiff.c                     s->bpp += ff_tget(&s->gb, type, s->le);
type              897 libavcodec/tiff.c         if (!value || (type == TIFF_LONG && value == UINT_MAX))
type              910 libavcodec/tiff.c         s->sot = type;
type              921 libavcodec/tiff.c         s->sstype = type;
type              975 libavcodec/tiff.c         off = type_sizes[type];
type              984 libavcodec/tiff.c         off = (type_sizes[type] - 1) << 3;
type              987 libavcodec/tiff.c             p |= (ff_tget(&pal_gb[0], type, s->le) >> off) << 16;
type              988 libavcodec/tiff.c             p |= (ff_tget(&pal_gb[1], type, s->le) >> off) << 8;
type              989 libavcodec/tiff.c             p |=  ff_tget(&pal_gb[2], type, s->le) >> off;
type             1004 libavcodec/tiff.c             s->subsampling[i] = ff_tget(&s->gb, type, s->le);
type             1015 libavcodec/tiff.c     if ((ret = add_metadata(count, type, name, sep, s, frame)) < 0) {\
type             1048 libavcodec/tiff.c             s->geotags[i].type   = ff_tget_short(&s->gb, s->le);
type             1051 libavcodec/tiff.c             if (!s->geotags[i].type)
type             1070 libavcodec/tiff.c             if (s->geotags[i].type == TIFF_GEO_DOUBLE_PARAMS) {
type             1090 libavcodec/tiff.c             if (s->geotags[i].type == TIFF_GEO_ASCII_PARAMS) {
type             1215 libavcodec/tiff.c         if (get_geokey_type(s->geotags[i].key) != s->geotags[i].type) {
type             1376 libavcodec/tiff.c     .type           = AVMEDIA_TYPE_VIDEO,
type              176 libavcodec/tiff.h     enum TiffTags type;
type              189 libavcodec/tiff.h     const enum TiffGeoTagType type;
type               62 libavcodec/tiff_common.c unsigned ff_tget(GetByteContext *gb, int type, int le)
type               64 libavcodec/tiff_common.c     switch (type) {
type              286 libavcodec/tiff_common.c int ff_tread_tag(GetByteContext *gb, int le, unsigned *tag, unsigned *type,
type              293 libavcodec/tiff_common.c     *type   = ff_tget_short(gb, le);
type              297 libavcodec/tiff_common.c     valid_type = *type != 0 && *type < FF_ARRAY_ELEMS(type_sizes);
type              308 libavcodec/tiff_common.c     if (ifd_tag || (*count > 4 || !(type_sizes[*type] * (*count) <= 4 || *type == TIFF_STRING))) {
type               80 libavcodec/tiff_common.h unsigned ff_tget(GetByteContext *gb, int type, int le);
type              149 libavcodec/tiff_common.h int ff_tread_tag(GetByteContext *gb, int le, unsigned *tag, unsigned *type,
type              106 libavcodec/tiffenc.c static void tnput(uint8_t **p, int n, const uint8_t *val, enum TiffTypes type,
type              111 libavcodec/tiffenc.c     flip ^= ((int[]) { 0, 0, 0, 1, 3, 3 })[type];
type              113 libavcodec/tiffenc.c     for (i = 0; i < n * type_sizes2[type]; i++)
type              127 libavcodec/tiffenc.c                      enum TiffTypes type, int count, const void *ptr_val)
type              134 libavcodec/tiffenc.c     bytestream_put_le16(&entries_ptr, type);
type              137 libavcodec/tiffenc.c     if (type_sizes[type] * (int64_t)count <= 4) {
type              138 libavcodec/tiffenc.c         tnput(&entries_ptr, count, ptr_val, type, 0);
type              141 libavcodec/tiffenc.c         if (check_size(s, count * (int64_t)type_sizes2[type]))
type              143 libavcodec/tiffenc.c         tnput(s->buf, count, ptr_val, type, 0);
type              151 libavcodec/tiffenc.c                       enum TiffTags tag, enum TiffTypes type, int val)
type              155 libavcodec/tiffenc.c     return add_entry(s, tag, type, 1,
type              156 libavcodec/tiffenc.c                      type == TIFF_SHORT ? (void *)&w : (void *)&dw);
type              228 libavcodec/tiffenc.c #define ADD_ENTRY(s, tag, type, count, ptr_val)         \
type              230 libavcodec/tiffenc.c         ret = add_entry(s, tag, type, count, ptr_val);  \
type              235 libavcodec/tiffenc.c #define ADD_ENTRY1(s, tag, type, val)           \
type              237 libavcodec/tiffenc.c         ret = add_entry1(s, tag, type, val);    \
type              569 libavcodec/tiffenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               92 libavcodec/tmv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              909 libavcodec/truemotion1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              388 libavcodec/truemotion2.c static inline int GET_TOK(TM2Context *ctx,int type)
type              390 libavcodec/truemotion2.c     if (ctx->tok_ptrs[type] >= ctx->tok_lens[type]) {
type              391 libavcodec/truemotion2.c         av_log(ctx->avctx, AV_LOG_ERROR, "Read token from stream %i out of bounds (%i>=%i)\n", type, ctx->tok_ptrs[type], ctx->tok_lens[type]);
type              394 libavcodec/truemotion2.c     if (type <= TM2_MOT) {
type              395 libavcodec/truemotion2.c         if (ctx->tokens[type][ctx->tok_ptrs[type]] >= TM2_DELTAS) {
type              396 libavcodec/truemotion2.c             av_log(ctx->avctx, AV_LOG_ERROR, "token %d is too large\n", ctx->tokens[type][ctx->tok_ptrs[type]]);
type              399 libavcodec/truemotion2.c         return ctx->deltas[type][ctx->tokens[type][ctx->tok_ptrs[type]++]];
type              401 libavcodec/truemotion2.c     return ctx->tokens[type][ctx->tok_ptrs[type]++];
type              754 libavcodec/truemotion2.c     int type;
type              774 libavcodec/truemotion2.c             type = GET_TOK(ctx, TM2_TYPE);
type              775 libavcodec/truemotion2.c             switch(type) {
type              801 libavcodec/truemotion2.c                 av_log(ctx->avctx, AV_LOG_ERROR, "Skipping unknown block type %i\n", type);
type             1019 libavcodec/truemotion2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              360 libavcodec/truespeech.c     .type           = AVMEDIA_TYPE_AUDIO,
type              181 libavcodec/tscc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              381 libavcodec/tscc2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              421 libavcodec/tta.c     .type           = AVMEDIA_TYPE_AUDIO,
type              221 libavcodec/ttaenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              419 libavcodec/twinvqdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              137 libavcodec/txd.c     .type           = AVMEDIA_TYPE_VIDEO,
type              421 libavcodec/ulti.c     .type           = AVMEDIA_TYPE_VIDEO,
type              724 libavcodec/utils.c     frame->type = FF_BUFFER_TYPE_INTERNAL;
type              790 libavcodec/utils.c     switch (avctx->codec->type) {
type             1438 libavcodec/utils.c     if ((avctx->codec_type == AVMEDIA_TYPE_UNKNOWN || avctx->codec_type == codec->type) &&
type             1440 libavcodec/utils.c         avctx->codec_type = codec->type;
type             1443 libavcodec/utils.c     if (avctx->codec_id != codec->id || (avctx->codec_type != codec->type
type             2347 libavcodec/utils.c     if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {
type             2498 libavcodec/utils.c     if (avctx->codec->type != AVMEDIA_TYPE_AUDIO) {
type             2725 libavcodec/utils.c     if (avctx->codec->type != AVMEDIA_TYPE_SUBTITLE) {
type             3738 libavcodec/utils.c         return c->type;
type              556 libavcodec/utvideodec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              640 libavcodec/utvideoenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              178 libavcodec/v210dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              226 libavcodec/v210enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              126 libavcodec/v210x.c     .type           = AVMEDIA_TYPE_VIDEO,
type               78 libavcodec/v308dec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               88 libavcodec/v308enc.c     .type         = AVMEDIA_TYPE_VIDEO,
type               86 libavcodec/v408dec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               97 libavcodec/v408dec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               94 libavcodec/v408enc.c     .type         = AVMEDIA_TYPE_VIDEO,
type              106 libavcodec/v408enc.c     .type         = AVMEDIA_TYPE_VIDEO,
type               93 libavcodec/v410dec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               92 libavcodec/v410enc.c     .type         = AVMEDIA_TYPE_VIDEO,
type              124 libavcodec/vaapi.c static void *alloc_buffer(struct vaapi_context *vactx, int type, unsigned int size, uint32_t *buf_id)
type              130 libavcodec/vaapi.c                        type, size, 1, NULL, buf_id) == VA_STATUS_SUCCESS)
type              356 libavcodec/vaapi_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              138 libavcodec/vaapi_mpeg2.c     .type           = AVMEDIA_TYPE_VIDEO,
type              141 libavcodec/vaapi_mpeg4.c     .type           = AVMEDIA_TYPE_VIDEO,
type              153 libavcodec/vaapi_mpeg4.c     .type           = AVMEDIA_TYPE_VIDEO,
type              339 libavcodec/vaapi_vc1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              350 libavcodec/vaapi_vc1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              276 libavcodec/vb.c     .type           = AVMEDIA_TYPE_VIDEO,
type              207 libavcodec/vble.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1084 libavcodec/vc1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1100 libavcodec/vc1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1117 libavcodec/vc1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1133 libavcodec/vc1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1149 libavcodec/vc1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type             1168 libavcodec/vc1dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              127 libavcodec/vcr1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              287 libavcodec/vda_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              523 libavcodec/vda_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              264 libavcodec/vda_h264_dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type               75 libavcodec/vdpau.c                                     VdpChromaType *type,
type              105 libavcodec/vdpau.c     if (type)
type              106 libavcodec/vdpau.c         *type = t;
type              126 libavcodec/vdpau.c     VdpChromaType type;
type              155 libavcodec/vdpau.c     if (av_vdpau_get_surface_parameters(avctx, &type, &width, &height))
type              159 libavcodec/vdpau.c         type != VDP_CHROMA_TYPE_420)
type              170 libavcodec/vdpau.c     status = surface_query_caps(vdctx->device, type, &supported,
type              189 libavcodec/vdpau.h int av_vdpau_get_surface_parameters(AVCodecContext *avctx, VdpChromaType *type,
type              262 libavcodec/vdpau_h264.c     .type           = AVMEDIA_TYPE_VIDEO,
type              107 libavcodec/vdpau_mpeg12.c     .type           = AVMEDIA_TYPE_VIDEO,
type              141 libavcodec/vdpau_mpeg12.c     .type           = AVMEDIA_TYPE_VIDEO,
type              100 libavcodec/vdpau_mpeg4.c     .type           = AVMEDIA_TYPE_VIDEO,
type              137 libavcodec/vdpau_mpeg4.c     .type           = AVMEDIA_TYPE_VIDEO,
type              140 libavcodec/vdpau_vc1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              155 libavcodec/vdpau_vc1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              213 libavcodec/vima.c     .type         = AVMEDIA_TYPE_AUDIO,
type              224 libavcodec/vima.c     .type         = AVMEDIA_TYPE_AUDIO,
type              229 libavcodec/vmdaudio.c     .type           = AVMEDIA_TYPE_AUDIO,
type              468 libavcodec/vmdvideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              570 libavcodec/vmnc.c     .type           = AVMEDIA_TYPE_VIDEO,
type               96 libavcodec/vorbisdec.c     uint16_t      type;
type              701 libavcodec/vorbisdec.c         res_setup->type = get_bits(gb, 16);
type              703 libavcodec/vorbisdec.c         av_dlog(NULL, " %u. residue type %d\n", i, res_setup->type);
type              713 libavcodec/vorbisdec.c                    res_setup->type, res_setup->begin, res_setup->end,
type             1531 libavcodec/vorbisdec.c     if (vr->type == 2)
type             1533 libavcodec/vorbisdec.c     else if (vr->type == 1)
type             1535 libavcodec/vorbisdec.c     else if (vr->type == 0)
type             1846 libavcodec/vorbisdec.c     .type            = AVMEDIA_TYPE_AUDIO,
type               75 libavcodec/vorbisenc.c     int type;
type              203 libavcodec/vorbisenc.c     av_assert0(rc->type == 2);
type              354 libavcodec/vorbisenc.c     rc->type            = 2;
type              556 libavcodec/vorbisenc.c     put_bits(pb, 16, rc->type);
type              882 libavcodec/vorbisenc.c     int channels   = (rc->type == 2) ? 1 : real_ch;
type              886 libavcodec/vorbisenc.c     av_assert0(rc->type == 2);
type              924 libavcodec/vorbisenc.c                     assert(rc->type == 0 || rc->type == 2);
type              927 libavcodec/vorbisenc.c                     if (rc->type == 0) {
type             1202 libavcodec/vorbisenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type             2006 libavcodec/vp3.c         int type = get_bits(&gb, 7);
type             2013 libavcodec/vp3.c         if (type == 0) {
type             2022 libavcodec/vp3.c         } else if (type == 2) {
type             2539 libavcodec/vp3.c     .type                  = AVMEDIA_TYPE_VIDEO,
type             2556 libavcodec/vp3.c     .type                  = AVMEDIA_TYPE_VIDEO,
type               47 libavcodec/vp3dsp.c                                   int16_t *input, int type)
type              124 libavcodec/vp3dsp.c             if (type == 1) { // HACK
type              142 libavcodec/vp3dsp.c             if (type == 1) {
type              168 libavcodec/vp3dsp.c             if (type == 1) {
type              287 libavcodec/vp5.c     .type           = AVMEDIA_TYPE_VIDEO,
type               57 libavcodec/vp56.c         if (ff_vp56_reference_frame[s->macroblocks[offset].type] != ref_frame)
type               83 libavcodec/vp56.c     int i, ctx, type;
type               93 libavcodec/vp56.c             for (type=0; type<10; type++) {
type              102 libavcodec/vp56.c                         model->mb_types_stats[ctx][type][i] += (delta ^ -sign) + sign;
type              113 libavcodec/vp56.c         for (type=0; type<10; type++)
type              114 libavcodec/vp56.c             p[type] = 100 * model->mb_types_stats[ctx][type][1];
type              116 libavcodec/vp56.c         for (type=0; type<10; type++) {
type              120 libavcodec/vp56.c             model->mb_type[ctx][type][0] = 255 - (255 * model->mb_types_stats[ctx][type][0]) / (1 + model->mb_types_stats[ctx][type][0] + model->mb_types_stats[ctx][type][1]);
type              122 libavcodec/vp56.c             p[type] = 0;    /* same MB type => weight is null */
type              134 libavcodec/vp56.c             model->mb_type[ctx][type][1] = 1 + 255 * p0234/(1+p0234+p156789);
type              135 libavcodec/vp56.c             model->mb_type[ctx][type][2] = 1 + 255 * p02  / (1+p0234);
type              136 libavcodec/vp56.c             model->mb_type[ctx][type][3] = 1 + 255 * p17  / (1+p156789);
type              137 libavcodec/vp56.c             model->mb_type[ctx][type][4] = 1 + 255 * p[0] / (1+p02);
type              138 libavcodec/vp56.c             model->mb_type[ctx][type][5] = 1 + 255 * p[3] / (1+p34);
type              139 libavcodec/vp56.c             model->mb_type[ctx][type][6] = 1 + 255 * p[1] / (1+p17);
type              140 libavcodec/vp56.c             model->mb_type[ctx][type][7] = 1 + 255 * p56  / (1+p5689);
type              141 libavcodec/vp56.c             model->mb_type[ctx][type][8] = 1 + 255 * p[5] / (1+p56);
type              142 libavcodec/vp56.c             model->mb_type[ctx][type][9] = 1 + 255 * p[8] / (1+p89);
type              145 libavcodec/vp56.c             p[type] = 100 * model->mb_types_stats[ctx][type][1];
type              165 libavcodec/vp56.c     int type[4];
type              170 libavcodec/vp56.c         type[b] = vp56_rac_gets(&s->c, 2);
type              171 libavcodec/vp56.c         if (type[b])
type              172 libavcodec/vp56.c             type[b]++;  /* only returns 0, 2, 3 or 4 (all INTER_PF) */
type              177 libavcodec/vp56.c         switch (type[b]) {
type              214 libavcodec/vp56.c     s->macroblocks[row * s->mb_width + col].type = s->mb_type;
type              597 libavcodec/vp56.c             s->macroblocks[block].type = VP56_MB_INTRA;
type              100 libavcodec/vp56.h     uint8_t type;
type              676 libavcodec/vp6.c     .type           = AVMEDIA_TYPE_VIDEO,
type              689 libavcodec/vp6.c     .type           = AVMEDIA_TYPE_VIDEO,
type              702 libavcodec/vp6.c     .type           = AVMEDIA_TYPE_VIDEO,
type             2814 libavcodec/vp8.c     .type                  = AVMEDIA_TYPE_VIDEO,
type             2829 libavcodec/vp8.c     .type                  = AVMEDIA_TYPE_VIDEO,
type              330 libavcodec/vp9.c #define assign(var, type, n) var = (type) p; p += s->sb_cols * (n) * sizeof(*var)
type             4099 libavcodec/vp9.c     .type                  = AVMEDIA_TYPE_VIDEO,
type             1689 libavcodec/vp9dsp.c #define fpel_fn(type, sz) \
type             1690 libavcodec/vp9dsp.c static void type##sz##_c(uint8_t *dst, ptrdiff_t dst_stride, \
type             1694 libavcodec/vp9dsp.c     type##_c(dst, dst_stride, src, src_stride, sz, h); \
type             1858 libavcodec/vp9dsp.c #define filter_fn_1d(sz, dir, dir_m, type, type_idx, avg) \
type             1859 libavcodec/vp9dsp.c static void avg##_8tap_##type##_##sz##dir##_c(uint8_t *dst, ptrdiff_t dst_stride, \
type             1867 libavcodec/vp9dsp.c #define filter_fn_2d(sz, type, type_idx, avg) \
type             1868 libavcodec/vp9dsp.c static void avg##_8tap_##type##_##sz##hv_c(uint8_t *dst, ptrdiff_t dst_stride, \
type             2011 libavcodec/vp9dsp.c #define init_fpel(idx1, idx2, sz, type) \
type             2012 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][0][0] = type##sz##_c; \
type             2013 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][0][0] = type##sz##_c; \
type             2014 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_8TAP_SHARP  ][idx2][0][0] = type##sz##_c; \
type             2015 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_BILINEAR    ][idx2][0][0] = type##sz##_c
type             2030 libavcodec/vp9dsp.c #define init_subpel1(idx1, idx2, idxh, idxv, sz, dir, type) \
type             2031 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = type##_8tap_smooth_##sz##dir##_c; \
type             2032 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = type##_8tap_regular_##sz##dir##_c; \
type             2033 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_8TAP_SHARP  ][idx2][idxh][idxv] = type##_8tap_sharp_##sz##dir##_c; \
type             2034 libavcodec/vp9dsp.c     dsp->mc[idx1][FILTER_BILINEAR    ][idx2][idxh][idxv] = type##_bilin_##sz##dir##_c
type             2036 libavcodec/vp9dsp.c #define init_subpel2(idx, idxh, idxv, dir, type) \
type             2037 libavcodec/vp9dsp.c     init_subpel1(0, idx, idxh, idxv, 64, dir, type); \
type             2038 libavcodec/vp9dsp.c     init_subpel1(1, idx, idxh, idxv, 32, dir, type); \
type             2039 libavcodec/vp9dsp.c     init_subpel1(2, idx, idxh, idxv, 16, dir, type); \
type             2040 libavcodec/vp9dsp.c     init_subpel1(3, idx, idxh, idxv,  8, dir, type); \
type             2041 libavcodec/vp9dsp.c     init_subpel1(4, idx, idxh, idxv,  4, dir, type)
type             2043 libavcodec/vp9dsp.c #define init_subpel3(idx, type) \
type             2044 libavcodec/vp9dsp.c     init_subpel2(idx, 1, 1, hv, type); \
type             2045 libavcodec/vp9dsp.c     init_subpel2(idx, 0, 1, v, type); \
type             2046 libavcodec/vp9dsp.c     init_subpel2(idx, 1, 0, h, type)
type              641 libavcodec/vqavideo.c     .type           = AVMEDIA_TYPE_VIDEO,
type              384 libavcodec/wavpack.c                                    void *dst_l, void *dst_r, const int type)
type              426 libavcodec/wavpack.c                 if (type != AV_SAMPLE_FMT_S16P) {
type              440 libavcodec/wavpack.c                 if (type != AV_SAMPLE_FMT_S16P)
type              446 libavcodec/wavpack.c                 if (type != AV_SAMPLE_FMT_S16P)
type              454 libavcodec/wavpack.c                 if (type != AV_SAMPLE_FMT_S16P)
type              466 libavcodec/wavpack.c                 if (type != AV_SAMPLE_FMT_S16P)
type              480 libavcodec/wavpack.c         if (type == AV_SAMPLE_FMT_FLTP) {
type              483 libavcodec/wavpack.c         } else if (type == AV_SAMPLE_FMT_S32P) {
type              496 libavcodec/wavpack.c         int size = av_get_bytes_per_sample(type);
type              509 libavcodec/wavpack.c                                  void *dst, const int type)
type              540 libavcodec/wavpack.c             if (type != AV_SAMPLE_FMT_S16P)
type              551 libavcodec/wavpack.c         if (type == AV_SAMPLE_FMT_FLTP) {
type              553 libavcodec/wavpack.c         } else if (type == AV_SAMPLE_FMT_S32P) {
type              564 libavcodec/wavpack.c         int size = av_get_bytes_per_sample(type);
type             1108 libavcodec/wavpack.c     .type           = AVMEDIA_TYPE_AUDIO,
type             2624 libavcodec/wavpackenc.c #define WRITE_DECWEIGHT(type) do {            \
type             2625 libavcodec/wavpackenc.c         temp = store_weight(type);    \
type             2627 libavcodec/wavpackenc.c         type = restore_weight(temp);  \
type             2657 libavcodec/wavpackenc.c #define WRITE_DECSAMPLE(type) do {        \
type             2658 libavcodec/wavpackenc.c         temp = log2s(type);               \
type             2659 libavcodec/wavpackenc.c         type = wp_exp2(temp);             \
type             2830 libavcodec/wavpackenc.c #define COPY_SAMPLES(type, offset, shift) do {            \
type             2831 libavcodec/wavpackenc.c         const type *sptr = (const type *)src;             \
type             2982 libavcodec/wavpackenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1537 libavcodec/webp.c     .type           = AVMEDIA_TYPE_VIDEO,
type               98 libavcodec/webvttdec.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              167 libavcodec/webvttenc.c         if (sub->rects[i]->type != SUBTITLE_ASS) {
type              213 libavcodec/webvttenc.c     .type           = AVMEDIA_TYPE_SUBTITLE,
type              973 libavcodec/wmadec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              989 libavcodec/wmadec.c     .type           = AVMEDIA_TYPE_AUDIO,
type              419 libavcodec/wmaenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type              433 libavcodec/wmaenc.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1294 libavcodec/wmalosslessdec.c     .type           = AVMEDIA_TYPE_AUDIO,
type             1663 libavcodec/wmaprodec.c     .type           = AVMEDIA_TYPE_AUDIO,
type             2066 libavcodec/wmavoice.c     .type             = AVMEDIA_TYPE_AUDIO,
type              249 libavcodec/wmv2dec.c     int xy, wrap, diff, type;
type              267 libavcodec/wmv2dec.c         type = get_bits1(&s->gb);
type              269 libavcodec/wmv2dec.c         type = 2;
type              271 libavcodec/wmv2dec.c     if (type == 0) {
type              274 libavcodec/wmv2dec.c     } else if (type == 1) {
type              478 libavcodec/wmv2dec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              221 libavcodec/wmv2enc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              153 libavcodec/wnv1.c     .type           = AVMEDIA_TYPE_VIDEO,
type              176 libavcodec/ws-snd1.c     .type           = AVMEDIA_TYPE_AUDIO,
type              134 libavcodec/x86/dirac_dwt.c void ff_spatial_idwt_init_mmx(DWTContext *d, enum dwt_type type)
type              143 libavcodec/x86/dirac_dwt.c     switch (type) {
type              170 libavcodec/x86/dirac_dwt.c     switch (type) {
type              196 libavcodec/x86/dirac_dwt.c     switch (type) {
type               28 libavcodec/x86/dirac_dwt.h void ff_spatial_idwt_init_mmx(DWTContext *d, enum dwt_type type);
type              105 libavcodec/x86/h264dsp_init.c #define LF_FUNCS(type, depth)                   \
type               37 libavcodec/x86/hevcdsp_init.c #define LFC_FUNCS(type, depth, opt) \
type               41 libavcodec/x86/hevcdsp_init.c #define LFL_FUNCS(type, depth, opt) \
type               52 libavcodec/x86/vp9dsp_init.c #define mc_func(avg, sz, dir, opt, type, f_sz) \
type               55 libavcodec/x86/vp9dsp_init.c                                                  int h, const type (*filter)[f_sz])
type               56 libavcodec/x86/vp9dsp_init.c #define mc_funcs(sz, opt, type, fsz) \
type               57 libavcodec/x86/vp9dsp_init.c mc_func(put, sz, h, opt, type, fsz); \
type               58 libavcodec/x86/vp9dsp_init.c mc_func(avg, sz, h, opt, type, fsz); \
type               59 libavcodec/x86/vp9dsp_init.c mc_func(put, sz, v, opt, type, fsz); \
type               60 libavcodec/x86/vp9dsp_init.c mc_func(avg, sz, v, opt, type, fsz)
type               74 libavcodec/x86/vp9dsp_init.c #define mc_rep_func(avg, sz, hsz, dir, opt, type, f_sz) \
type               78 libavcodec/x86/vp9dsp_init.c                                             int h, const type (*filter)[f_sz]) \
type               86 libavcodec/x86/vp9dsp_init.c #define mc_rep_funcs(sz, hsz, opt, type, fsz) \
type               87 libavcodec/x86/vp9dsp_init.c mc_rep_func(put, sz, hsz, h, opt, type, fsz); \
type               88 libavcodec/x86/vp9dsp_init.c mc_rep_func(avg, sz, hsz, h, opt, type, fsz); \
type               89 libavcodec/x86/vp9dsp_init.c mc_rep_func(put, sz, hsz, v, opt, type, fsz); \
type               90 libavcodec/x86/vp9dsp_init.c mc_rep_func(avg, sz, hsz, v, opt, type, fsz)
type              242 libavcodec/x86/vp9dsp_init.c #define ipred_func(size, type, opt) \
type              243 libavcodec/x86/vp9dsp_init.c void ff_vp9_ipred_##type##_##size##x##size##_##opt(uint8_t *dst, ptrdiff_t stride, \
type              315 libavcodec/x86/vp9dsp_init.c #define init_fpel(idx1, idx2, sz, type, opt) \
type              319 libavcodec/x86/vp9dsp_init.c     dsp->mc[idx1][FILTER_BILINEAR    ][idx2][0][0] = ff_vp9_##type##sz##_##opt
type              321 libavcodec/x86/vp9dsp_init.c #define init_subpel1(idx1, idx2, idxh, idxv, sz, dir, type, opt) \
type              322 libavcodec/x86/vp9dsp_init.c     dsp->mc[idx1][FILTER_8TAP_SMOOTH ][idx2][idxh][idxv] = type##_8tap_smooth_##sz##dir##_##opt; \
type              323 libavcodec/x86/vp9dsp_init.c     dsp->mc[idx1][FILTER_8TAP_REGULAR][idx2][idxh][idxv] = type##_8tap_regular_##sz##dir##_##opt; \
type              324 libavcodec/x86/vp9dsp_init.c     dsp->mc[idx1][FILTER_8TAP_SHARP  ][idx2][idxh][idxv] = type##_8tap_sharp_##sz##dir##_##opt
type              326 libavcodec/x86/vp9dsp_init.c #define init_subpel2(idx1, idx2, sz, type, opt) \
type              327 libavcodec/x86/vp9dsp_init.c     init_subpel1(idx1, idx2, 1, 1, sz, hv, type, opt); \
type              328 libavcodec/x86/vp9dsp_init.c     init_subpel1(idx1, idx2, 0, 1, sz, v,  type, opt); \
type              329 libavcodec/x86/vp9dsp_init.c     init_subpel1(idx1, idx2, 1, 0, sz, h,  type, opt)
type              331 libavcodec/x86/vp9dsp_init.c #define init_subpel3_32_64(idx, type, opt) \
type              332 libavcodec/x86/vp9dsp_init.c     init_subpel2(0, idx, 64, type, opt); \
type              333 libavcodec/x86/vp9dsp_init.c     init_subpel2(1, idx, 32, type, opt)
type              335 libavcodec/x86/vp9dsp_init.c #define init_subpel3_8to64(idx, type, opt) \
type              336 libavcodec/x86/vp9dsp_init.c     init_subpel3_32_64(idx, type, opt); \
type              337 libavcodec/x86/vp9dsp_init.c     init_subpel2(2, idx, 16, type, opt); \
type              338 libavcodec/x86/vp9dsp_init.c     init_subpel2(3, idx,  8, type, opt)
type              340 libavcodec/x86/vp9dsp_init.c #define init_subpel3(idx, type, opt) \
type              341 libavcodec/x86/vp9dsp_init.c     init_subpel3_8to64(idx, type, opt); \
type              342 libavcodec/x86/vp9dsp_init.c     init_subpel2(4, idx,  4, type, opt)
type              641 libavcodec/xan.c     .type           = AVMEDIA_TYPE_VIDEO,
type              133 libavcodec/xbmdec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               61 libavcodec/xbmenc.c     .type         = AVMEDIA_TYPE_VIDEO,
type              182 libavcodec/xfacedec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              234 libavcodec/xfaceenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              133 libavcodec/xl.c     .type         = AVMEDIA_TYPE_VIDEO,
type              106 libavcodec/xsubdec.c     sub->rects[0]->type = SUBTITLE_BITMAP;
type              160 libavcodec/xsubdec.c     .type      = AVMEDIA_TYPE_SUBTITLE,
type              217 libavcodec/xsubenc.c     .type       = AVMEDIA_TYPE_SUBTITLE,
type              249 libavcodec/xwddec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              214 libavcodec/xwdenc.c     .type         = AVMEDIA_TYPE_VIDEO,
type              444 libavcodec/xxan.c     .type           = AVMEDIA_TYPE_VIDEO,
type               87 libavcodec/y41pdec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               95 libavcodec/y41penc.c     .type         = AVMEDIA_TYPE_VIDEO,
type              269 libavcodec/yop.c     .type           = AVMEDIA_TYPE_VIDEO,
type               79 libavcodec/yuv4dec.c     .type         = AVMEDIA_TYPE_VIDEO,
type               85 libavcodec/yuv4enc.c     .type         = AVMEDIA_TYPE_VIDEO,
type              143 libavcodec/zerocodec.c     .type           = AVMEDIA_TYPE_VIDEO,
type              631 libavcodec/zmbv.c     .type           = AVMEDIA_TYPE_VIDEO,
type              339 libavcodec/zmbvenc.c     .type           = AVMEDIA_TYPE_VIDEO,
type              127 libavdevice/avdevice.c int avdevice_app_to_dev_control_message(struct AVFormatContext *s, enum AVAppToDevMessageType type,
type              132 libavdevice/avdevice.c     return s->oformat->control_message(s, type, data, data_size);
type              135 libavdevice/avdevice.c int avdevice_dev_to_app_control_message(struct AVFormatContext *s, enum AVDevToAppMessageType type,
type              140 libavdevice/avdevice.c     return av_format_get_control_message_cb(s)(s, type, data, data_size);
type              306 libavdevice/avdevice.h                                         enum AVAppToDevMessageType type,
type              320 libavdevice/avdevice.h                                         enum AVDevToAppMessageType type,
type              321 libavdevice/dshow.c     AM_MEDIA_TYPE *type = NULL;
type              336 libavdevice/dshow.c         r = IAMStreamConfig_GetStreamCaps(config, i, &type, (void *) caps);
type              340 libavdevice/dshow.c         ff_print_AM_MEDIA_TYPE(type);
type              351 libavdevice/dshow.c             if (IsEqualGUID(&type->formattype, &FORMAT_VideoInfo)) {
type              352 libavdevice/dshow.c                 VIDEOINFOHEADER *v = (void *) type->pbFormat;
type              355 libavdevice/dshow.c             } else if (IsEqualGUID(&type->formattype, &FORMAT_VideoInfo2)) {
type              356 libavdevice/dshow.c                 VIDEOINFOHEADER2 *v = (void *) type->pbFormat;
type              413 libavdevice/dshow.c             if (IsEqualGUID(&type->formattype, &FORMAT_WaveFormatEx)) {
type              414 libavdevice/dshow.c                 fx = (void *) type->pbFormat;
type              443 libavdevice/dshow.c         if (IAMStreamConfig_SetFormat(config, type) != S_OK)
type              447 libavdevice/dshow.c         if (type->pbFormat)
type              448 libavdevice/dshow.c             CoTaskMemFree(type->pbFormat);
type              449 libavdevice/dshow.c         CoTaskMemFree(type);
type              469 libavdevice/dshow.c     AM_MEDIA_TYPE *type = NULL;
type              474 libavdevice/dshow.c     if (IAMStreamConfig_GetFormat(config, &type) != S_OK)
type              476 libavdevice/dshow.c     if (!IsEqualGUID(&type->formattype, &FORMAT_WaveFormatEx))
type              479 libavdevice/dshow.c     props.cbBuffer = (((WAVEFORMATEX *) type->pbFormat)->nAvgBytesPerSec)
type              492 libavdevice/dshow.c     if (type) {
type              493 libavdevice/dshow.c         if (type->pbFormat)
type              494 libavdevice/dshow.c             CoTaskMemFree(type->pbFormat);
type              495 libavdevice/dshow.c         CoTaskMemFree(type);
type              596 libavdevice/dshow.c         AM_MEDIA_TYPE *type;
type              656 libavdevice/dshow.c         while (!device_pin && IEnumMediaTypes_Next(types, 1, &type, NULL) == S_OK) {
type              657 libavdevice/dshow.c             if (IsEqualGUID(&type->majortype, mediatype[devtype])) {
type              662 libavdevice/dshow.c             CoTaskMemFree(type);
type              833 libavdevice/dshow.c     AM_MEDIA_TYPE type;
type              847 libavdevice/dshow.c     libAVPin_ConnectionMediaType(ctx->capture_pin[devtype], &type);
type              854 libavdevice/dshow.c         if (IsEqualGUID(&type.formattype, &FORMAT_VideoInfo)) {
type              855 libavdevice/dshow.c             VIDEOINFOHEADER *v = (void *) type.pbFormat;
type              858 libavdevice/dshow.c         } else if (IsEqualGUID(&type.formattype, &FORMAT_VideoInfo2)) {
type              859 libavdevice/dshow.c             VIDEOINFOHEADER2 *v = (void *) type.pbFormat;
type              901 libavdevice/dshow.c         if (IsEqualGUID(&type.formattype, &FORMAT_WaveFormatEx)) {
type              902 libavdevice/dshow.c             fx = (void *) type.pbFormat;
type              931 libavdevice/dshow.c     char *type;
type              933 libavdevice/dshow.c     while ((type = strtok(tmp, "="))) {
type              937 libavdevice/dshow.c         if        (!strcmp(type, "video")) {
type              939 libavdevice/dshow.c         } else if (!strcmp(type, "audio")) {
type               44 libavdevice/dshow_capture.h void ff_print_AM_MEDIA_TYPE(const AM_MEDIA_TYPE *type);
type              167 libavdevice/dshow_capture.h     AM_MEDIA_TYPE type;
type              234 libavdevice/dshow_capture.h     AM_MEDIA_TYPE type;
type              246 libavdevice/dshow_capture.h libAVEnumMediaTypes *libAVEnumMediaTypes_Create(const AM_MEDIA_TYPE *type);
type              259 libavdevice/dshow_capture.h     enum dshowDeviceType type;
type              263 libavdevice/dshow_capture.h     void (*callback)(void *priv_data, int index, uint8_t *buf, int buf_size, int64_t time, enum dshowDeviceType type);
type               62 libavdevice/dshow_common.c #define dstruct(pctx, sname, var, type) \
type               63 libavdevice/dshow_common.c     dshowdebug("      "#var":\t%"type"\n", sname->var)
type              134 libavdevice/dshow_common.c void ff_print_AM_MEDIA_TYPE(const AM_MEDIA_TYPE *type)
type              138 libavdevice/dshow_common.c     ff_printGUID(&type->majortype);
type              141 libavdevice/dshow_common.c     ff_printGUID(&type->subtype);
type              143 libavdevice/dshow_common.c     dshowdebug("    bFixedSizeSamples\t%d\n", type->bFixedSizeSamples);
type              144 libavdevice/dshow_common.c     dshowdebug("    bTemporalCompression\t%d\n", type->bTemporalCompression);
type              145 libavdevice/dshow_common.c     dshowdebug("    lSampleSize\t%lu\n", type->lSampleSize);
type              147 libavdevice/dshow_common.c     ff_printGUID(&type->formattype);
type              149 libavdevice/dshow_common.c     dshowdebug("    pUnk\t%p\n", type->pUnk);
type              150 libavdevice/dshow_common.c     dshowdebug("    cbFormat\t%lu\n", type->cbFormat);
type              151 libavdevice/dshow_common.c     dshowdebug("    pbFormat\t%p\n", type->pbFormat);
type              153 libavdevice/dshow_common.c     if (IsEqualGUID(&type->formattype, &FORMAT_VideoInfo)) {
type              154 libavdevice/dshow_common.c         VIDEOINFOHEADER *v = (void *) type->pbFormat;
type              163 libavdevice/dshow_common.c     } else if (IsEqualGUID(&type->formattype, &FORMAT_VideoInfo2)) {
type              164 libavdevice/dshow_common.c         VIDEOINFOHEADER2 *v = (void *) type->pbFormat;
type              179 libavdevice/dshow_common.c     } else if (IsEqualGUID(&type->formattype, &FORMAT_WaveFormatEx)) {
type              180 libavdevice/dshow_common.c         WAVEFORMATEX *fx = (void *) type->pbFormat;
type               38 libavdevice/dshow_enummediatypes.c         if (!IsEqualGUID(&this->type.majortype, &GUID_NULL)) {
type               39 libavdevice/dshow_enummediatypes.c             AM_MEDIA_TYPE *type = av_malloc(sizeof(AM_MEDIA_TYPE));
type               40 libavdevice/dshow_enummediatypes.c             ff_copy_dshow_media_type(type, &this->type);
type               41 libavdevice/dshow_enummediatypes.c             *types = type;
type               74 libavdevice/dshow_enummediatypes.c     new = libAVEnumMediaTypes_Create(&this->type);
type               83 libavdevice/dshow_enummediatypes.c libAVEnumMediaTypes_Setup(libAVEnumMediaTypes *this, const AM_MEDIA_TYPE *type)
type               94 libavdevice/dshow_enummediatypes.c     if (!type) {
type               95 libavdevice/dshow_enummediatypes.c         this->type.majortype = GUID_NULL;
type               97 libavdevice/dshow_enummediatypes.c         ff_copy_dshow_media_type(&this->type, type);
type              102 libavdevice/dshow_enummediatypes.c DECLARE_CREATE(libAVEnumMediaTypes, libAVEnumMediaTypes_Setup(this, type), const AM_MEDIA_TYPE *type)
type              167 libavdevice/dshow_filter.c                   enum dshowDeviceType type)
type              190 libavdevice/dshow_filter.c     this->type      = type;
type              200 libavdevice/dshow_filter.c DECLARE_CREATE(libAVFilter, libAVFilter_Setup(this, priv_data, callback, type),
type              201 libavdevice/dshow_filter.c                void *priv_data, void *callback, enum dshowDeviceType type)
type               33 libavdevice/dshow_pin.c libAVPin_Connect(libAVPin *this, IPin *pin, const AM_MEDIA_TYPE *type)
type               35 libavdevice/dshow_pin.c     dshowdebug("libAVPin_Connect(%p, %p, %p)\n", this, pin, type);
type               41 libavdevice/dshow_pin.c                            const AM_MEDIA_TYPE *type)
type               43 libavdevice/dshow_pin.c     enum dshowDeviceType devtype = this->filter->type;
type               51 libavdevice/dshow_pin.c     ff_print_AM_MEDIA_TYPE(type);
type               53 libavdevice/dshow_pin.c         if (!IsEqualGUID(&type->majortype, &MEDIATYPE_Video))
type               56 libavdevice/dshow_pin.c         if (!IsEqualGUID(&type->majortype, &MEDIATYPE_Audio))
type               63 libavdevice/dshow_pin.c     ff_copy_dshow_media_type(&this->type, type);
type               96 libavdevice/dshow_pin.c libAVPin_ConnectionMediaType(libAVPin *this, AM_MEDIA_TYPE *type)
type              100 libavdevice/dshow_pin.c     if (!type)
type              105 libavdevice/dshow_pin.c     return ff_copy_dshow_media_type(type, &this->type);
type              146 libavdevice/dshow_pin.c libAVPin_QueryAccept(libAVPin *this, const AM_MEDIA_TYPE *type)
type              154 libavdevice/dshow_pin.c     const AM_MEDIA_TYPE *type = NULL;
type              160 libavdevice/dshow_pin.c     new = libAVEnumMediaTypes_Create(type);
type              304 libavdevice/dshow_pin.c     enum dshowDeviceType devtype = pin->filter->type;
type               78 libavdevice/iec61883.c     int type;                           ///< Stream type, to distinguish DV/HDV
type              329 libavdevice/iec61883.c     if (dv->type == IEC61883_AUTO) {
type              337 libavdevice/iec61883.c         dv->type = (response == 0x10 || response == 0x90 || response == 0x1A || response == 0x9A) ?
type              353 libavdevice/iec61883.c     if (CONFIG_MPEGTS_DEMUXER && dv->type == IEC61883_HDV) {
type              388 libavdevice/iec61883.c     if (dv->type == IEC61883_HDV)
type              447 libavdevice/iec61883.c     if (CONFIG_MPEGTS_DEMUXER && dv->type == IEC61883_HDV) {
type              472 libavdevice/iec61883.c     { "dvtype", "override autodetection of DV/HDV", offsetof(struct iec61883_data, type), AV_OPT_TYPE_INT, {.i64 = IEC61883_AUTO}, IEC61883_AUTO, IEC61883_HDV, AV_OPT_FLAG_DECODING_PARAM, "dvtype" },
type              123 libavdevice/lavfi.c     enum AVMediaType type;
type              250 libavdevice/lavfi.c         type = inout->filter_ctx->output_pads[inout->pad_idx].type;
type              252 libavdevice/lavfi.c         if (type == AVMEDIA_TYPE_VIDEO && ! buffersink ||
type              253 libavdevice/lavfi.c             type == AVMEDIA_TYPE_AUDIO && ! abuffersink) {
type              258 libavdevice/lavfi.c         if (type == AVMEDIA_TYPE_VIDEO) {
type              266 libavdevice/lavfi.c         } else if (type == AVMEDIA_TYPE_AUDIO) {
type              310 libavdevice/lavfi.c         st->codec->codec_type = link->type;
type              312 libavdevice/lavfi.c         if (link->type == AVMEDIA_TYPE_VIDEO) {
type              324 libavdevice/lavfi.c         } else if (link->type == AVMEDIA_TYPE_AUDIO) {
type              363 libavdevice/lavfi.c         if (frame->side_data[i]->type == AV_FRAME_DATA_A53_CC)
type              105 libavdevice/opengl_enc.c typedef void   (APIENTRY *FF_PFNGLVERTEXATTRIBPOINTERPROC) (GLuint index, GLint size, GLenum type, GLboolean normalized, GLsizei stride, uintptr_t pointer);
type              117 libavdevice/opengl_enc.c typedef GLuint (APIENTRY *FF_PFNGLCREATESHADERPROC) (GLenum type);
type              219 libavdevice/opengl_enc.c     GLenum type;
type              233 libavdevice/opengl_enc.c     GLenum type;
type              328 libavdevice/opengl_enc.c static int opengl_control_message(AVFormatContext *h, int type, void *data, size_t data_size)
type              331 libavdevice/opengl_enc.c     switch(type) {
type              368 libavdevice/opengl_enc.c         switch (event.type) {
type              426 libavdevice/opengl_enc.c #define LOAD_OPENGL_FUN(name, type) \
type              427 libavdevice/opengl_enc.c     procs->name = (type)SDL_GL_GetProcAddress(#name); \
type              513 libavdevice/opengl_enc.c #define LOAD_OPENGL_FUN(name, type) \
type              514 libavdevice/opengl_enc.c     procs->name = (type)SelectedGetProcAddress(#name); \
type              648 libavdevice/opengl_enc.c static int opengl_type_size(GLenum type)
type              650 libavdevice/opengl_enc.c     switch(type) {
type              670 libavdevice/opengl_enc.c             opengl->type = opengl_format_desc[i].type;
type              750 libavdevice/opengl_enc.c static av_cold GLuint opengl_load_shader(OpenGLContext *opengl, GLenum type, const char *source)
type              752 libavdevice/opengl_enc.c     GLuint shader = opengl->glprocs.glCreateShader(type);
type              862 libavdevice/opengl_enc.c                      opengl->format, opengl->type, NULL);
type             1137 libavdevice/opengl_enc.c     int wordsize = opengl_type_size(opengl->type);
type             1172 libavdevice/opengl_enc.c         int bytes_per_pixel = opengl_type_size(opengl->type);                               \
type             1182 libavdevice/opengl_enc.c                             opengl->format, opengl->type, data);                            \
type             1189 libavdevice/opengl_enc.c                                 opengl->format, opengl->type, data);                        \
type             1196 libavdevice/opengl_enc.c                         opengl->format, opengl->type, data);                                \
type              711 libavdevice/pulse_audio_enc.c static int pulse_control_message(AVFormatContext *h, int type,
type              717 libavdevice/pulse_audio_enc.c     switch(type) {
type              196 libavdevice/sdl.c         switch (event.type) {
type              114 libavdevice/v4l.c     if (!(s->video_cap.type & VID_TYPE_CAPTURE)) {
type              190 libavdevice/v4l2.c     struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
type              249 libavdevice/v4l2.c         switch (vfse.type) {
type              269 libavdevice/v4l2.c static void list_formats(AVFormatContext *ctx, int type)
type              272 libavdevice/v4l2.c     struct v4l2_fmtdesc vfd = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
type              281 libavdevice/v4l2.c             type & V4L_RAWFORMATS) {
type              287 libavdevice/v4l2.c                    type & V4L_COMPFORMATS) {
type              336 libavdevice/v4l2.c         .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
type              366 libavdevice/v4l2.c             .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
type              424 libavdevice/v4l2.c     buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
type              497 libavdevice/v4l2.c         .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
type              595 libavdevice/v4l2.c     enum v4l2_buf_type type;
type              600 libavdevice/v4l2.c             .type   = V4L2_BUF_TYPE_VIDEO_CAPTURE,
type              614 libavdevice/v4l2.c     type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
type              615 libavdevice/v4l2.c     if (v4l2_ioctl(s->fd, VIDIOC_STREAMON, &type) < 0) {
type              627 libavdevice/v4l2.c     enum v4l2_buf_type type;
type              630 libavdevice/v4l2.c     type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
type              634 libavdevice/v4l2.c     v4l2_ioctl(s->fd, VIDIOC_STREAMOFF, &type);
type              717 libavdevice/v4l2.c     streamparm.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
type              907 libavdevice/v4l2.c         struct v4l2_format fmt = { .type = V4L2_BUF_TYPE_VIDEO_CAPTURE };
type               33 libavdevice/v4l2enc.c         .type = V4L2_BUF_TYPE_VIDEO_OUTPUT
type               87 libavdevice/vfwcap.c #define dstruct(pctx, sname, var, type) \
type               88 libavdevice/vfwcap.c     av_log(pctx, AV_LOG_DEBUG, #var":\t%"type"\n", sname->var)
type              600 libavdevice/x11grab.c             XEvent evt = { .type = NoEventMask };
type              605 libavdevice/x11grab.c             if (evt.type)
type              309 libavdevice/xv.c             if (event.type == ClientMessage && event.xclient.data.l[0] == xv->wm_delete_message) {
type              339 libavdevice/xv.c static int xv_control_message(AVFormatContext *s, int type, void *data, size_t data_size)
type              341 libavdevice/xv.c     switch(type) {
type              293 libavfilter/aeval.c         .type          = AVMEDIA_TYPE_AUDIO,
type              439 libavfilter/aeval.c         .type           = AVMEDIA_TYPE_AUDIO,
type              448 libavfilter/aeval.c         .type          = AVMEDIA_TYPE_AUDIO,
type               86 libavfilter/af_adelay.c #define DELAY(name, type, fill)                                           \
type               90 libavfilter/af_adelay.c     const type *src = (type *)ssrc;                                       \
type               91 libavfilter/af_adelay.c     type *dst = (type *)ddst;                                             \
type               92 libavfilter/af_adelay.c     type *samples = (type *)d->samples;                                   \
type               98 libavfilter/af_adelay.c             memcpy(&samples[d->delay_index], src, len * sizeof(type));    \
type               99 libavfilter/af_adelay.c             memset(dst, fill, len * sizeof(type));                        \
type              256 libavfilter/af_adelay.c         .type         = AVMEDIA_TYPE_AUDIO,
type              267 libavfilter/af_adelay.c         .type          = AVMEDIA_TYPE_AUDIO,
type              182 libavfilter/af_aecho.c #define ECHO(name, type, min, max)                                          \
type              197 libavfilter/af_aecho.c         const type *s = (type *)src[chan];                                  \
type              198 libavfilter/af_aecho.c         type *d = (type *)dst[chan];                                        \
type              199 libavfilter/af_aecho.c         type *dbuf = (type *)delayptrs[chan];                               \
type              333 libavfilter/af_aecho.c         .type         = AVMEDIA_TYPE_AUDIO,
type              344 libavfilter/af_aecho.c         .type          = AVMEDIA_TYPE_AUDIO,
type               33 libavfilter/af_afade.c     int type;
type               51 libavfilter/af_afade.c     { "type",         "set the fade direction",                      OFFSET(type),         AV_OPT_TYPE_INT,    {.i64 = 0    }, 0, 1, FLAGS, "type" },
type               52 libavfilter/af_afade.c     { "t",            "set the fade direction",                      OFFSET(type),         AV_OPT_TYPE_INT,    {.i64 = 0    }, 0, 1, FLAGS, "type" },
type              159 libavfilter/af_afade.c #define FADE_PLANAR(name, type)                                             \
type              169 libavfilter/af_afade.c             type *d = (type *)dst[c];                                       \
type              170 libavfilter/af_afade.c             const type *s = (type *)src[c];                                 \
type              177 libavfilter/af_afade.c #define FADE(name, type)                                                    \
type              182 libavfilter/af_afade.c     type *d = (type *)dst[0];                                               \
type              183 libavfilter/af_afade.c     const type *s = (type *)src[0];                                         \
type              235 libavfilter/af_afade.c     if ((!s->type && (s->start_sample + s->nb_samples < cur_sample)) ||
type              236 libavfilter/af_afade.c         ( s->type && (cur_sample + s->nb_samples < s->start_sample)))
type              248 libavfilter/af_afade.c     if ((!s->type && (cur_sample + nb_samples < s->start_sample)) ||
type              249 libavfilter/af_afade.c         ( s->type && (s->start_sample + s->nb_samples < cur_sample))) {
type              255 libavfilter/af_afade.c         if (!s->type)
type              262 libavfilter/af_afade.c                         s->type ? -1 : 1, start,
type              275 libavfilter/af_afade.c         .type         = AVMEDIA_TYPE_AUDIO,
type              285 libavfilter/af_afade.c         .type = AVMEDIA_TYPE_AUDIO,
type               60 libavfilter/af_aformat.c #define PARSE_FORMATS(str, type, list, add_to_list, get_fmt, none, desc)    \
type               72 libavfilter/af_aformat.c         type fmt;                                                           \
type              125 libavfilter/af_aformat.c         .type = AVMEDIA_TYPE_AUDIO,
type              133 libavfilter/af_aformat.c         .type = AVMEDIA_TYPE_AUDIO
type              319 libavfilter/af_amerge.c             .type             = AVMEDIA_TYPE_AUDIO,
type              332 libavfilter/af_amerge.c         .type          = AVMEDIA_TYPE_AUDIO,
type              497 libavfilter/af_amix.c         pad.type           = AVMEDIA_TYPE_AUDIO;
type              554 libavfilter/af_amix.c         .type          = AVMEDIA_TYPE_AUDIO,
type               33 libavfilter/af_anull.c         .type = AVMEDIA_TYPE_AUDIO,
type               41 libavfilter/af_anull.c         .type = AVMEDIA_TYPE_AUDIO,
type              137 libavfilter/af_apad.c         .type         = AVMEDIA_TYPE_AUDIO,
type              147 libavfilter/af_apad.c         .type          = AVMEDIA_TYPE_AUDIO,
type               40 libavfilter/af_aphaser.c     int type;
type               64 libavfilter/af_aphaser.c     { "type",     "set modulation type",       OFFSET(type),     AV_OPT_TYPE_INT,    {.i64=WAVE_TRI}, 0, WAVE_NB-1, FLAGS, "type" },
type              118 libavfilter/af_aphaser.c #define PHASER_PLANAR(name, type)                                      \
type              127 libavfilter/af_aphaser.c         type *s = (type *)src[c];                                      \
type              128 libavfilter/af_aphaser.c         type *d = (type *)dst[c];                                      \
type              154 libavfilter/af_aphaser.c #define PHASER(name, type)                                              \
type              160 libavfilter/af_aphaser.c     type *s = (type *)src[0];                                           \
type              161 libavfilter/af_aphaser.c     type *d = (type *)dst[0];                                           \
type              213 libavfilter/af_aphaser.c     ff_generate_wave_table(p->type, AV_SAMPLE_FMT_S32,
type              269 libavfilter/af_aphaser.c         .type         = AVMEDIA_TYPE_AUDIO,
type              278 libavfilter/af_aphaser.c         .type         = AVMEDIA_TYPE_AUDIO,
type              325 libavfilter/af_aresample.c         .type         = AVMEDIA_TYPE_AUDIO,
type              336 libavfilter/af_aresample.c         .type          = AVMEDIA_TYPE_AUDIO,
type              171 libavfilter/af_asetnsamples.c         .type         = AVMEDIA_TYPE_AUDIO,
type              180 libavfilter/af_asetnsamples.c         .type          = AVMEDIA_TYPE_AUDIO,
type               34 libavfilter/af_asetrate.c #define OPT_GENERIC(name, field, def, min, max, descr, type, deffield, ...) \
type               35 libavfilter/af_asetrate.c     { name, descr, offsetof(CONTEXT, field), AV_OPT_TYPE_ ## type,          \
type               95 libavfilter/af_asetrate.c         .type         = AVMEDIA_TYPE_AUDIO,
type              104 libavfilter/af_asetrate.c         .type         = AVMEDIA_TYPE_AUDIO,
type              171 libavfilter/af_ashowinfo.c     av_log(ctx, AV_LOG_INFO, "unknown side data type: %d, size %d bytes", sd->type, sd->size);
type              223 libavfilter/af_ashowinfo.c         switch (sd->type) {
type              240 libavfilter/af_ashowinfo.c         .type         = AVMEDIA_TYPE_AUDIO,
type              249 libavfilter/af_ashowinfo.c         .type = AVMEDIA_TYPE_AUDIO,
type              250 libavfilter/af_astats.c         .type         = AVMEDIA_TYPE_AUDIO,
type              259 libavfilter/af_astats.c         .type         = AVMEDIA_TYPE_AUDIO,
type              204 libavfilter/af_astreamsync.c         .type         = AVMEDIA_TYPE_AUDIO,
type              208 libavfilter/af_astreamsync.c         .type         = AVMEDIA_TYPE_AUDIO,
type              217 libavfilter/af_astreamsync.c         .type          = AVMEDIA_TYPE_AUDIO,
type              222 libavfilter/af_astreamsync.c         .type          = AVMEDIA_TYPE_AUDIO,
type              298 libavfilter/af_asyncts.c         .type          = AVMEDIA_TYPE_AUDIO,
type              307 libavfilter/af_asyncts.c         .type          = AVMEDIA_TYPE_AUDIO,
type             1175 libavfilter/af_atempo.c         .type         = AVMEDIA_TYPE_AUDIO,
type             1186 libavfilter/af_atempo.c         .type          = AVMEDIA_TYPE_AUDIO,
type              164 libavfilter/af_biquads.c #define BIQUAD_FILTER(name, type, min, max, need_clipping)                    \
type              171 libavfilter/af_biquads.c     const type *ibuf = input;                                                 \
type              172 libavfilter/af_biquads.c     type *obuf = output;                                                      \
type              429 libavfilter/af_biquads.c         .type         = AVMEDIA_TYPE_AUDIO,
type              438 libavfilter/af_biquads.c         .type         = AVMEDIA_TYPE_AUDIO,
type              197 libavfilter/af_bs2b.c         .type           = AVMEDIA_TYPE_AUDIO,
type              206 libavfilter/af_bs2b.c         .type           = AVMEDIA_TYPE_AUDIO,
type              395 libavfilter/af_channelmap.c         .type           = AVMEDIA_TYPE_AUDIO,
type              406 libavfilter/af_channelmap.c         .type = AVMEDIA_TYPE_AUDIO
type               71 libavfilter/af_channelsplit.c         pad.type = AVMEDIA_TYPE_AUDIO;
type              133 libavfilter/af_channelsplit.c         .type         = AVMEDIA_TYPE_AUDIO,
type              556 libavfilter/af_compand.c         .type         = AVMEDIA_TYPE_AUDIO,
type              567 libavfilter/af_compand.c         .type          = AVMEDIA_TYPE_AUDIO,
type              140 libavfilter/af_dcshift.c         .type         = AVMEDIA_TYPE_AUDIO,
type              149 libavfilter/af_dcshift.c         .type = AVMEDIA_TYPE_AUDIO,
type              151 libavfilter/af_earwax.c         .type         = AVMEDIA_TYPE_AUDIO,
type              160 libavfilter/af_earwax.c         .type = AVMEDIA_TYPE_AUDIO,
type              216 libavfilter/af_flanger.c         .type         = AVMEDIA_TYPE_AUDIO,
type              226 libavfilter/af_flanger.c         .type          = AVMEDIA_TYPE_AUDIO,
type              215 libavfilter/af_join.c         pad.type           = AVMEDIA_TYPE_AUDIO;
type              502 libavfilter/af_join.c         .type          = AVMEDIA_TYPE_AUDIO,
type              560 libavfilter/af_ladspa.c     pad.type = AVMEDIA_TYPE_AUDIO;
type              686 libavfilter/af_ladspa.c         .type          = AVMEDIA_TYPE_AUDIO,
type              406 libavfilter/af_pan.c         .type         = AVMEDIA_TYPE_AUDIO,
type              416 libavfilter/af_pan.c         .type = AVMEDIA_TYPE_AUDIO,
type              590 libavfilter/af_replaygain.c         .type         = AVMEDIA_TYPE_AUDIO,
type              600 libavfilter/af_replaygain.c         .type = AVMEDIA_TYPE_AUDIO,
type              315 libavfilter/af_resample.c         .type          = AVMEDIA_TYPE_AUDIO,
type              324 libavfilter/af_resample.c         .type          = AVMEDIA_TYPE_AUDIO,
type               96 libavfilter/af_silencedetect.c #define SILENCE_DETECT(name, type)                                               \
type              101 libavfilter/af_silencedetect.c     const type *p = (const type *)insamples->data[0];                            \
type              102 libavfilter/af_silencedetect.c     const type noise = s->noise;                                                 \
type              189 libavfilter/af_silencedetect.c         .type         = AVMEDIA_TYPE_AUDIO,
type              199 libavfilter/af_silencedetect.c         .type = AVMEDIA_TYPE_AUDIO,
type              452 libavfilter/af_silenceremove.c         .type         = AVMEDIA_TYPE_AUDIO,
type              462 libavfilter/af_silenceremove.c         .type          = AVMEDIA_TYPE_AUDIO,
type              462 libavfilter/af_volume.c         .type           = AVMEDIA_TYPE_AUDIO,
type              471 libavfilter/af_volume.c         .type         = AVMEDIA_TYPE_AUDIO,
type              137 libavfilter/af_volumedetect.c         .type         = AVMEDIA_TYPE_AUDIO,
type              146 libavfilter/af_volumedetect.c         .type = AVMEDIA_TYPE_AUDIO,
type               34 libavfilter/asink_anullsink.c         .type           = AVMEDIA_TYPE_AUDIO,
type              130 libavfilter/asrc_anullsrc.c         .type          = AVMEDIA_TYPE_AUDIO,
type              266 libavfilter/asrc_flite.c         .type          = AVMEDIA_TYPE_AUDIO,
type               51 libavfilter/asrc_sine.c #define OPT_GENERIC(name, field, def, min, max, descr, type, deffield, ...) \
type               52 libavfilter/asrc_sine.c     { name, descr, offsetof(CONTEXT, field), AV_OPT_TYPE_ ## type,          \
type              206 libavfilter/asrc_sine.c         .type          = AVMEDIA_TYPE_AUDIO,
type              117 libavfilter/audio.c     samplesref->type   = AVMEDIA_TYPE_AUDIO;
type               72 libavfilter/avcodec.c AVFilterBufferRef *avfilter_get_buffer_ref_from_frame(enum AVMediaType type,
type               76 libavfilter/avcodec.c     switch (type) {
type              102 libavfilter/avcodec.c     switch (src->type) {
type               64 libavfilter/avcodec.h AVFilterBufferRef *avfilter_get_buffer_ref_from_frame(enum AVMediaType type,
type              249 libavfilter/avf_avectorscope.c         .type         = AVMEDIA_TYPE_AUDIO,
type              259 libavfilter/avf_avectorscope.c         .type         = AVMEDIA_TYPE_VIDEO,
type               80 libavfilter/avf_concat.c     unsigned type, nb_str, idx0 = 0, idx, str, seg;
type               84 libavfilter/avf_concat.c     for (type = 0; type < TYPE_ALL; type++) {
type               85 libavfilter/avf_concat.c         nb_str = cat->nb_streams[type];
type               90 libavfilter/avf_concat.c             formats = ff_all_formats(type);
type               94 libavfilter/avf_concat.c             if (type == AVMEDIA_TYPE_AUDIO) {
type              108 libavfilter/avf_concat.c                 if (type == AVMEDIA_TYPE_AUDIO) {
type              364 libavfilter/avf_concat.c     unsigned seg, type, str;
type              368 libavfilter/avf_concat.c         for (type = 0; type < TYPE_ALL; type++) {
type              369 libavfilter/avf_concat.c             for (str = 0; str < cat->nb_streams[type]; str++) {
type              371 libavfilter/avf_concat.c                     .type             = type,
type              376 libavfilter/avf_concat.c                 pad.name = av_asprintf("in%d:%c%d", seg, "va"[type], str);
type              382 libavfilter/avf_concat.c     for (type = 0; type < TYPE_ALL; type++) {
type              383 libavfilter/avf_concat.c         for (str = 0; str < cat->nb_streams[type]; str++) {
type              385 libavfilter/avf_concat.c                 .type          = type,
type              389 libavfilter/avf_concat.c             pad.name = av_asprintf("out:%c%d", "va"[type], str);
type              785 libavfilter/avf_showcqt.c         .type         = AVMEDIA_TYPE_AUDIO,
type              794 libavfilter/avf_showcqt.c         .type          = AVMEDIA_TYPE_VIDEO,
type              507 libavfilter/avf_showspectrum.c         .type         = AVMEDIA_TYPE_AUDIO,
type              516 libavfilter/avf_showspectrum.c         .type          = AVMEDIA_TYPE_VIDEO,
type              305 libavfilter/avf_showwaves.c         .type         = AVMEDIA_TYPE_AUDIO,
type              314 libavfilter/avf_showwaves.c         .type          = AVMEDIA_TYPE_VIDEO,
type              140 libavfilter/avfilter.c     if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
type              143 libavfilter/avfilter.c                src->name, srcpad, (char *)av_x_if_null(av_get_media_type_string(src->output_pads[srcpad].type), "?"),
type              144 libavfilter/avfilter.c                dst->name, dstpad, (char *)av_x_if_null(av_get_media_type_string(dst-> input_pads[dstpad].type), "?"));
type              158 libavfilter/avfilter.c     link->type    = src->output_pads[srcpad].type;
type              269 libavfilter/avfilter.c             switch (link->type) {
type              321 libavfilter/avfilter.c     if (link->type == AVMEDIA_TYPE_VIDEO) {
type              778 libavfilter/avfilter.c             if (o->type == AV_OPT_TYPE_CONST || o->offset == offset)
type              997 libavfilter/avfilter.c     return pads[pad_idx].type;
type             1028 libavfilter/avfilter.c         switch (link->type) {
type             1048 libavfilter/avfilter.c         switch (link->type) {
type             1150 libavfilter/avfilter.c     if (link->type == AVMEDIA_TYPE_VIDEO) {
type             1165 libavfilter/avfilter.c     if (link->type == AVMEDIA_TYPE_AUDIO &&
type              193 libavfilter/avfilter.h     enum AVMediaType type;      ///< media type of buffer data
type              267 libavfilter/avfilter.h     enum AVMediaType type;
type              703 libavfilter/avfilter.h     enum AVMediaType type;      ///< filter media type
type              242 libavfilter/avfiltergraph.c                        pad->name, av_get_media_type_string(pad->type), filt->name, filt->filter->name);
type              252 libavfilter/avfiltergraph.c                        pad->name, av_get_media_type_string(pad->type), filt->name, filt->filter->name);
type              315 libavfilter/avfiltergraph.c     enum AVMediaType type = ctx->inputs  && ctx->inputs [0] ? ctx->inputs [0]->type :
type              316 libavfilter/avfiltergraph.c                             ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
type              331 libavfilter/avfiltergraph.c     formats = ff_all_formats(type);
type              335 libavfilter/avfiltergraph.c     if (type == AVMEDIA_TYPE_AUDIO) {
type              355 libavfilter/avfiltergraph.c         if (f->inputs[i]->type == AVMEDIA_TYPE_AUDIO &&
type              363 libavfilter/avfiltergraph.c         if (f->outputs[i]->type == AVMEDIA_TYPE_AUDIO &&
type              386 libavfilter/avfiltergraph.c                              enum AVMediaType type,
type              410 libavfilter/avfiltergraph.c         ret = ff_merge_formats(a, b, type);
type              473 libavfilter/avfiltergraph.c                                       link->type, 0))
type              475 libavfilter/avfiltergraph.c             if (link->type == AVMEDIA_TYPE_AUDIO) {
type              494 libavfilter/avfiltergraph.c             if (link->type == AVMEDIA_TYPE_AUDIO) {
type              508 libavfilter/avfiltergraph.c                                       link->type))
type              521 libavfilter/avfiltergraph.c                 switch (link->type) {
type              571 libavfilter/avfiltergraph.c                 if (outlink->type == AVMEDIA_TYPE_AUDIO) {
type              581 libavfilter/avfiltergraph.c                 if (!ff_merge_formats( inlink->in_formats,  inlink->out_formats,  inlink->type) ||
type              582 libavfilter/avfiltergraph.c                     !ff_merge_formats(outlink->in_formats, outlink->out_formats, outlink->type))
type              584 libavfilter/avfiltergraph.c                 if (inlink->type == AVMEDIA_TYPE_AUDIO &&
type              590 libavfilter/avfiltergraph.c                 if (outlink->type == AVMEDIA_TYPE_AUDIO &&
type              639 libavfilter/avfiltergraph.c     if (link->type == AVMEDIA_TYPE_VIDEO) {
type              640 libavfilter/avfiltergraph.c         if(ref && ref->type == AVMEDIA_TYPE_VIDEO){
type              658 libavfilter/avfiltergraph.c     if (link->type == AVMEDIA_TYPE_AUDIO) {
type              710 libavfilter/avfiltergraph.c             if (link->type != out_link->type ||                        \
type              756 libavfilter/avfiltergraph.c             if (inlink->type != outlink->type || fmts->nb_channel_layouts == 1)
type              802 libavfilter/avfiltergraph.c         if (link->type == AVMEDIA_TYPE_AUDIO &&
type              815 libavfilter/avfiltergraph.c         if (outlink->type != AVMEDIA_TYPE_AUDIO ||
type              882 libavfilter/avfiltergraph.c         if (link->type == AVMEDIA_TYPE_AUDIO &&
type              893 libavfilter/avfiltergraph.c         if (outlink->type != AVMEDIA_TYPE_AUDIO ||
type              980 libavfilter/avfiltergraph.c         if (link->type == AVMEDIA_TYPE_AUDIO &&
type              994 libavfilter/avfiltergraph.c         if (outlink->type != AVMEDIA_TYPE_AUDIO ||
type             1182 libavfilter/avfiltergraph.c             fifo = f->inputs[j]->type == AVMEDIA_TYPE_VIDEO ?
type               70 libavfilter/buffer.c     if (ref->type == AVMEDIA_TYPE_VIDEO) {
type               78 libavfilter/buffer.c     } else if (ref->type == AVMEDIA_TYPE_AUDIO) {
type              138 libavfilter/buffer.c     switch (dst->type) {
type              165 libavfilter/buffer.c     switch (src->type) {
type              299 libavfilter/buffersink.c     if (ctx->inputs[0]->type == AVMEDIA_TYPE_VIDEO) {
type              525 libavfilter/buffersink.c         .type      = AVMEDIA_TYPE_VIDEO,
type              547 libavfilter/buffersink.c         .type           = AVMEDIA_TYPE_AUDIO,
type              569 libavfilter/buffersink.c         .type         = AVMEDIA_TYPE_VIDEO,
type              591 libavfilter/buffersink.c         .type         = AVMEDIA_TYPE_AUDIO,
type              137 libavfilter/buffersrc.c     switch (ctx->outputs[0]->type) {
type              251 libavfilter/buffersrc.c     if (ctx->outputs[0]->type  == AVMEDIA_TYPE_VIDEO) {
type              439 libavfilter/buffersrc.c     switch (ctx->outputs[0]->type) {
type              467 libavfilter/buffersrc.c     switch (link->type) {
type              514 libavfilter/buffersrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              539 libavfilter/buffersrc.c         .type          = AVMEDIA_TYPE_AUDIO,
type              491 libavfilter/f_ebur128.c             .type         = AVMEDIA_TYPE_VIDEO,
type              500 libavfilter/f_ebur128.c         .type         = AVMEDIA_TYPE_AUDIO,
type              915 libavfilter/f_ebur128.c         .type         = AVMEDIA_TYPE_AUDIO,
type              121 libavfilter/f_interleave.c         inpad.type         = outpad->type;
type              124 libavfilter/f_interleave.c         switch (outpad->type) {
type              156 libavfilter/f_interleave.c     if (outlink->type == AVMEDIA_TYPE_VIDEO) {
type              213 libavfilter/f_interleave.c         .type          = AVMEDIA_TYPE_VIDEO,
type              241 libavfilter/f_interleave.c         .type          = AVMEDIA_TYPE_AUDIO,
type              122 libavfilter/f_perms.c         .type         = AVMEDIA_TYPE_AUDIO,
type              131 libavfilter/f_perms.c         .type = AVMEDIA_TYPE_AUDIO,
type              155 libavfilter/f_perms.c         .type         = AVMEDIA_TYPE_VIDEO,
type              164 libavfilter/f_perms.c         .type = AVMEDIA_TYPE_VIDEO,
type              183 libavfilter/f_select.c         pad.type = ctx->filter->inputs[0].type;
type              235 libavfilter/f_select.c         inlink->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
type              301 libavfilter/f_select.c     switch (inlink->type) {
type              329 libavfilter/f_select.c     switch (inlink->type) {
type              359 libavfilter/f_select.c         if (inlink->type == AVMEDIA_TYPE_AUDIO)
type              452 libavfilter/f_select.c         .type         = AVMEDIA_TYPE_AUDIO,
type              489 libavfilter/f_select.c         .type         = AVMEDIA_TYPE_VIDEO,
type              504 libavfilter/f_sendcmd.c     switch (inlink->type) {
type              521 libavfilter/f_sendcmd.c         .type         = AVMEDIA_TYPE_VIDEO,
type              530 libavfilter/f_sendcmd.c         .type = AVMEDIA_TYPE_VIDEO,
type              556 libavfilter/f_sendcmd.c         .type         = AVMEDIA_TYPE_AUDIO,
type              565 libavfilter/f_sendcmd.c         .type = AVMEDIA_TYPE_AUDIO,
type              215 libavfilter/f_zmq.c         .type         = AVMEDIA_TYPE_VIDEO,
type              224 libavfilter/f_zmq.c         .type = AVMEDIA_TYPE_VIDEO,
type              250 libavfilter/f_zmq.c         .type         = AVMEDIA_TYPE_AUDIO,
type              259 libavfilter/f_zmq.c         .type = AVMEDIA_TYPE_AUDIO,
type              256 libavfilter/fifo.c         .type             = AVMEDIA_TYPE_VIDEO,
type              265 libavfilter/fifo.c         .type          = AVMEDIA_TYPE_VIDEO,
type              287 libavfilter/fifo.c         .type             = AVMEDIA_TYPE_AUDIO,
type              296 libavfilter/fifo.c         .type          = AVMEDIA_TYPE_AUDIO,
type               37 libavfilter/filtfmts.c         if (filter_ctx->inout##puts[i]->type == AVMEDIA_TYPE_VIDEO) {   \
type               45 libavfilter/filtfmts.c         } else if (filter_ctx->inout##puts[i]->type == AVMEDIA_TYPE_AUDIO) { \
type              118 libavfilter/filtfmts.c         link->type = avfilter_pad_get_type(filter_ctx->input_pads, i);
type              123 libavfilter/filtfmts.c         link->type = avfilter_pad_get_type(filter_ctx->output_pads, i);
type               37 libavfilter/formats.c #define MERGE_REF(ret, a, fmts, type, fail)                                \
type               39 libavfilter/formats.c     type ***tmp;                                                           \
type               61 libavfilter/formats.c #define MERGE_FORMATS(ret, a, b, fmts, nb, type, fail)                          \
type               88 libavfilter/formats.c     MERGE_REF(ret, a, fmts, type, fail);                                        \
type               89 libavfilter/formats.c     MERGE_REF(ret, b, fmts, type, fail);                                        \
type               93 libavfilter/formats.c                                   enum AVMediaType type)
type              110 libavfilter/formats.c     if (type == AVMEDIA_TYPE_VIDEO)
type              265 libavfilter/formats.c #define COPY_INT_LIST(list_copy, list, type) {                          \
type              270 libavfilter/formats.c     list_copy = av_calloc(count+1, sizeof(type));                       \
type              272 libavfilter/formats.c         memcpy(list_copy, list, sizeof(type) * count);                  \
type              277 libavfilter/formats.c #define MAKE_FORMAT_LIST(type, field, count_field)                      \
type              278 libavfilter/formats.c     type *formats;                                                      \
type              314 libavfilter/formats.c #define ADD_FORMAT(f, fmt, type, list, nb)                  \
type              316 libavfilter/formats.c     type *fmts;                                             \
type              347 libavfilter/formats.c AVFilterFormats *ff_all_formats(enum AVMediaType type)
type              351 libavfilter/formats.c     if (type == AVMEDIA_TYPE_VIDEO) {
type              357 libavfilter/formats.c     } else if (type == AVMEDIA_TYPE_AUDIO) {
type              548 libavfilter/formats.c     enum AVMediaType type = ctx->inputs  && ctx->inputs [0] ? ctx->inputs [0]->type :
type              549 libavfilter/formats.c                             ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
type              552 libavfilter/formats.c     ff_set_common_formats(ctx, ff_all_formats(type));
type              553 libavfilter/formats.c     if (type == AVMEDIA_TYPE_AUDIO) {
type              206 libavfilter/formats.h AVFilterFormats *ff_all_formats(enum AVMediaType type);
type              222 libavfilter/formats.h                                   enum AVMediaType type);
type               38 libavfilter/graphdump.c     switch (link->type) {
type               72 libavfilter/internal.h     enum AVMediaType type;
type              383 libavfilter/internal.h static inline int ff_norm_qscale(int qscale, int type)
type              385 libavfilter/internal.h     switch (type) {
type               92 libavfilter/setpts.c     enum AVMediaType type;
type              122 libavfilter/setpts.c     setpts->type = inlink->type;
type              128 libavfilter/setpts.c         setpts->type == AVMEDIA_TYPE_AUDIO ? inlink->sample_rate : NAN;
type              170 libavfilter/setpts.c     if (inlink->type == AVMEDIA_TYPE_VIDEO) {
type              172 libavfilter/setpts.c     } else if (inlink->type == AVMEDIA_TYPE_AUDIO) {
type              186 libavfilter/setpts.c     switch (inlink->type) {
type              199 libavfilter/setpts.c     if (inlink->type == AVMEDIA_TYPE_VIDEO) {
type              209 libavfilter/setpts.c     if (setpts->type == AVMEDIA_TYPE_AUDIO) {
type              236 libavfilter/setpts.c         .type         = AVMEDIA_TYPE_VIDEO,
type              246 libavfilter/setpts.c         .type = AVMEDIA_TYPE_VIDEO,
type              273 libavfilter/setpts.c         .type         = AVMEDIA_TYPE_AUDIO,
type              283 libavfilter/setpts.c         .type = AVMEDIA_TYPE_AUDIO,
type              131 libavfilter/settb.c         .type         = AVMEDIA_TYPE_VIDEO,
type              140 libavfilter/settb.c         .type         = AVMEDIA_TYPE_VIDEO,
type              164 libavfilter/settb.c         .type         = AVMEDIA_TYPE_AUDIO,
type              173 libavfilter/settb.c         .type         = AVMEDIA_TYPE_AUDIO,
type               53 libavfilter/split.c         pad.type = ctx->filter->inputs[0].type;
type              112 libavfilter/split.c         .type         = AVMEDIA_TYPE_VIDEO,
type              133 libavfilter/split.c         .type         = AVMEDIA_TYPE_AUDIO,
type               97 libavfilter/src_movie.c     enum AVMediaType type;
type              101 libavfilter/src_movie.c         type = type_char[0] == 'v' ? AVMEDIA_TYPE_VIDEO : AVMEDIA_TYPE_AUDIO;
type              102 libavfilter/src_movie.c         ret = av_find_best_stream(avf, type, stream_id, -1, NULL, 0);
type              105 libavfilter/src_movie.c                    av_get_media_type_string(type), stream_id);
type              290 libavfilter/src_movie.c         pad.type          = movie->st[i].st->codec->codec_type;
type              300 libavfilter/src_movie.c         if ( movie->st[i].st->codec->codec->type == AVMEDIA_TYPE_AUDIO &&
type               91 libavfilter/trim.c     AVRational tb = (inlink->type == AVMEDIA_TYPE_VIDEO) ?
type              215 libavfilter/trim.c         .type         = AVMEDIA_TYPE_VIDEO,
type              225 libavfilter/trim.c         .type         = AVMEDIA_TYPE_VIDEO,
type              370 libavfilter/trim.c         .type         = AVMEDIA_TYPE_AUDIO,
type              380 libavfilter/trim.c         .type         = AVMEDIA_TYPE_AUDIO,
type              176 libavfilter/vf_alphamerge.c         .type             = AVMEDIA_TYPE_VIDEO,
type              182 libavfilter/vf_alphamerge.c         .type             = AVMEDIA_TYPE_VIDEO,
type              191 libavfilter/vf_alphamerge.c         .type          = AVMEDIA_TYPE_VIDEO,
type              206 libavfilter/vf_aspect.c         .type         = AVMEDIA_TYPE_VIDEO,
type              216 libavfilter/vf_aspect.c         .type = AVMEDIA_TYPE_VIDEO,
type              278 libavfilter/vf_aspect.c         .type         = AVMEDIA_TYPE_VIDEO,
type              288 libavfilter/vf_aspect.c         .type = AVMEDIA_TYPE_VIDEO,
type              109 libavfilter/vf_bbox.c         .type         = AVMEDIA_TYPE_VIDEO,
type              118 libavfilter/vf_bbox.c         .type = AVMEDIA_TYPE_VIDEO,
type              185 libavfilter/vf_blackdetect.c         .type          = AVMEDIA_TYPE_VIDEO,
type              195 libavfilter/vf_blackdetect.c         .type          = AVMEDIA_TYPE_VIDEO,
type              119 libavfilter/vf_blackframe.c         .type         = AVMEDIA_TYPE_VIDEO,
type              128 libavfilter/vf_blackframe.c         .type = AVMEDIA_TYPE_VIDEO
type              450 libavfilter/vf_blend.c         .type          = AVMEDIA_TYPE_VIDEO,
type              454 libavfilter/vf_blend.c         .type          = AVMEDIA_TYPE_VIDEO,
type              463 libavfilter/vf_blend.c         .type          = AVMEDIA_TYPE_VIDEO,
type              527 libavfilter/vf_blend.c         .type          = AVMEDIA_TYPE_VIDEO,
type              536 libavfilter/vf_blend.c         .type          = AVMEDIA_TYPE_VIDEO,
type              409 libavfilter/vf_boxblur.c         .type         = AVMEDIA_TYPE_VIDEO,
type              419 libavfilter/vf_boxblur.c         .type = AVMEDIA_TYPE_VIDEO,
type              220 libavfilter/vf_codecview.c         .type           = AVMEDIA_TYPE_VIDEO,
type              230 libavfilter/vf_codecview.c          .type = AVMEDIA_TYPE_VIDEO,
type              189 libavfilter/vf_colorbalance.c         .type         = AVMEDIA_TYPE_VIDEO,
type              198 libavfilter/vf_colorbalance.c         .type         = AVMEDIA_TYPE_VIDEO,
type              335 libavfilter/vf_colorchannelmixer.c         .type         = AVMEDIA_TYPE_VIDEO,
type              344 libavfilter/vf_colorchannelmixer.c         .type         = AVMEDIA_TYPE_VIDEO,
type              230 libavfilter/vf_colorlevels.c         .type         = AVMEDIA_TYPE_VIDEO,
type              240 libavfilter/vf_colorlevels.c         .type = AVMEDIA_TYPE_VIDEO,
type              389 libavfilter/vf_colormatrix.c         .type         = AVMEDIA_TYPE_VIDEO,
type              399 libavfilter/vf_colormatrix.c         .type = AVMEDIA_TYPE_VIDEO,
type               48 libavfilter/vf_copy.c         .type         = AVMEDIA_TYPE_VIDEO,
type               57 libavfilter/vf_copy.c         .type = AVMEDIA_TYPE_VIDEO,
type              319 libavfilter/vf_crop.c         .type         = AVMEDIA_TYPE_VIDEO,
type              329 libavfilter/vf_crop.c         .type         = AVMEDIA_TYPE_VIDEO,
type              258 libavfilter/vf_cropdetect.c         .type         = AVMEDIA_TYPE_VIDEO,
type              268 libavfilter/vf_cropdetect.c         .type = AVMEDIA_TYPE_VIDEO
type              545 libavfilter/vf_curves.c         .type         = AVMEDIA_TYPE_VIDEO,
type              555 libavfilter/vf_curves.c         .type = AVMEDIA_TYPE_VIDEO,
type              750 libavfilter/vf_dctdnoiz.c         .type         = AVMEDIA_TYPE_VIDEO,
type              760 libavfilter/vf_dctdnoiz.c         .type = AVMEDIA_TYPE_VIDEO,
type              269 libavfilter/vf_decimate.c         .type         = AVMEDIA_TYPE_VIDEO,
type              386 libavfilter/vf_decimate.c         .type          = AVMEDIA_TYPE_VIDEO,
type              163 libavfilter/vf_dejudder.c         .type         = AVMEDIA_TYPE_VIDEO,
type              172 libavfilter/vf_dejudder.c         .type = AVMEDIA_TYPE_VIDEO,
type              266 libavfilter/vf_delogo.c         .type         = AVMEDIA_TYPE_VIDEO,
type              275 libavfilter/vf_delogo.c         .type = AVMEDIA_TYPE_VIDEO,
type              550 libavfilter/vf_deshake.c         .type         = AVMEDIA_TYPE_VIDEO,
type              560 libavfilter/vf_deshake.c         .type = AVMEDIA_TYPE_VIDEO,
type              265 libavfilter/vf_drawbox.c         .type           = AVMEDIA_TYPE_VIDEO,
type              276 libavfilter/vf_drawbox.c         .type = AVMEDIA_TYPE_VIDEO,
type              371 libavfilter/vf_drawbox.c         .type           = AVMEDIA_TYPE_VIDEO,
type              382 libavfilter/vf_drawbox.c         .type = AVMEDIA_TYPE_VIDEO,
type             1305 libavfilter/vf_drawtext.c         .type           = AVMEDIA_TYPE_VIDEO,
type             1316 libavfilter/vf_drawtext.c         .type = AVMEDIA_TYPE_VIDEO,
type              368 libavfilter/vf_edgedetect.c         .type         = AVMEDIA_TYPE_VIDEO,
type              378 libavfilter/vf_edgedetect.c         .type = AVMEDIA_TYPE_VIDEO,
type              186 libavfilter/vf_elbg.c         .type           = AVMEDIA_TYPE_VIDEO,
type              197 libavfilter/vf_elbg.c         .type = AVMEDIA_TYPE_VIDEO,
type              332 libavfilter/vf_eq.c         .type = AVMEDIA_TYPE_VIDEO,
type              341 libavfilter/vf_eq.c         .type = AVMEDIA_TYPE_VIDEO,
type              272 libavfilter/vf_extractplanes.c         pad.type = AVMEDIA_TYPE_VIDEO;
type              292 libavfilter/vf_extractplanes.c         .type         = AVMEDIA_TYPE_VIDEO,
type               54 libavfilter/vf_fade.c     int type;
type               84 libavfilter/vf_fade.c                s->type == FADE_IN ? "in" : "out", s->start_frame,
type               90 libavfilter/vf_fade.c                s->type == FADE_IN ? "in" : "out", (s->start_time / (double)AV_TIME_BASE),
type              322 libavfilter/vf_fade.c     if (s->type == FADE_OUT) {
type              354 libavfilter/vf_fade.c     { "type", "'in' or 'out' for fade-in/fade-out", OFFSET(type), AV_OPT_TYPE_INT, { .i64 = FADE_IN }, FADE_IN, FADE_OUT, FLAGS, "type" },
type              355 libavfilter/vf_fade.c     { "t",    "'in' or 'out' for fade-in/fade-out", OFFSET(type), AV_OPT_TYPE_INT, { .i64 = FADE_IN }, FADE_IN, FADE_OUT, FLAGS, "type" },
type              385 libavfilter/vf_fade.c         .type           = AVMEDIA_TYPE_VIDEO,
type              396 libavfilter/vf_fade.c         .type = AVMEDIA_TYPE_VIDEO,
type               36 libavfilter/vf_field.c     enum FieldType type;
type               44 libavfilter/vf_field.c     {"type", "set field type (top or bottom)", OFFSET(type), AV_OPT_TYPE_INT, {.i64=FIELD_TYPE_TOP}, 0, 1, FLAGS, "field_type" },
type               61 libavfilter/vf_field.c     outlink->h = (inlink->h + (field->type == FIELD_TYPE_TOP)) / 2;
type               64 libavfilter/vf_field.c            inlink->w, inlink->h, field->type == FIELD_TYPE_BOTTOM ? "bottom" : "top",
type               79 libavfilter/vf_field.c         if (field->type == FIELD_TYPE_BOTTOM)
type               89 libavfilter/vf_field.c         .type         = AVMEDIA_TYPE_VIDEO,
type               98 libavfilter/vf_field.c         .type         = AVMEDIA_TYPE_VIDEO,
type              898 libavfilter/vf_fieldmatch.c         .type         = AVMEDIA_TYPE_VIDEO,
type              966 libavfilter/vf_fieldmatch.c         .type          = AVMEDIA_TYPE_VIDEO,
type              173 libavfilter/vf_fieldorder.c         .type         = AVMEDIA_TYPE_VIDEO,
type              183 libavfilter/vf_fieldorder.c         .type = AVMEDIA_TYPE_VIDEO,
type              156 libavfilter/vf_format.c         .type             = AVMEDIA_TYPE_VIDEO,
type              165 libavfilter/vf_format.c         .type = AVMEDIA_TYPE_VIDEO
type              195 libavfilter/vf_format.c         .type             = AVMEDIA_TYPE_VIDEO,
type              204 libavfilter/vf_format.c         .type = AVMEDIA_TYPE_VIDEO
type              272 libavfilter/vf_fps.c         .type         = AVMEDIA_TYPE_VIDEO,
type              281 libavfilter/vf_fps.c         .type          = AVMEDIA_TYPE_VIDEO,
type              276 libavfilter/vf_framepack.c             stereo->type = s->format;
type              308 libavfilter/vf_framepack.c         stereo->type = s->format;
type              342 libavfilter/vf_framepack.c         .type         = AVMEDIA_TYPE_VIDEO,
type              348 libavfilter/vf_framepack.c         .type         = AVMEDIA_TYPE_VIDEO,
type              358 libavfilter/vf_framepack.c         .type          = AVMEDIA_TYPE_VIDEO,
type               78 libavfilter/vf_framestep.c         .type         = AVMEDIA_TYPE_VIDEO,
type               87 libavfilter/vf_framestep.c         .type         = AVMEDIA_TYPE_VIDEO,
type               99 libavfilter/vf_frei0r.c     switch (info.type) {
type              166 libavfilter/vf_frei0r.c                info.type == F0R_PARAM_BOOL     ? "bool"     :
type              167 libavfilter/vf_frei0r.c                info.type == F0R_PARAM_DOUBLE   ? "double"   :
type              168 libavfilter/vf_frei0r.c                info.type == F0R_PARAM_COLOR    ? "color"    :
type              169 libavfilter/vf_frei0r.c                info.type == F0R_PARAM_POSITION ? "position" :
type              170 libavfilter/vf_frei0r.c                info.type == F0R_PARAM_STRING   ? "string"   : "unknown",
type              175 libavfilter/vf_frei0r.c         switch (info.type) {
type              227 libavfilter/vf_frei0r.c                                const char *dl_name, int type)
type              313 libavfilter/vf_frei0r.c     if (pi->plugin_type != type) {
type              427 libavfilter/vf_frei0r.c         .type         = AVMEDIA_TYPE_VIDEO,
type              437 libavfilter/vf_frei0r.c         .type = AVMEDIA_TYPE_VIDEO,
type              521 libavfilter/vf_frei0r.c         .type          = AVMEDIA_TYPE_VIDEO,
type              665 libavfilter/vf_fspp.c         .type         = AVMEDIA_TYPE_VIDEO,
type              675 libavfilter/vf_fspp.c         .type = AVMEDIA_TYPE_VIDEO,
type              254 libavfilter/vf_geq.c         .type         = AVMEDIA_TYPE_VIDEO,
type              264 libavfilter/vf_geq.c         .type = AVMEDIA_TYPE_VIDEO,
type              239 libavfilter/vf_gradfun.c         .type         = AVMEDIA_TYPE_VIDEO,
type              249 libavfilter/vf_gradfun.c         .type = AVMEDIA_TYPE_VIDEO,
type              178 libavfilter/vf_hflip.c         .type         = AVMEDIA_TYPE_VIDEO,
type              188 libavfilter/vf_hflip.c         .type = AVMEDIA_TYPE_VIDEO,
type              256 libavfilter/vf_histeq.c         .type         = AVMEDIA_TYPE_VIDEO,
type              266 libavfilter/vf_histeq.c         .type = AVMEDIA_TYPE_VIDEO,
type              352 libavfilter/vf_histogram.c         .type         = AVMEDIA_TYPE_VIDEO,
type              362 libavfilter/vf_histogram.c         .type         = AVMEDIA_TYPE_VIDEO,
type              347 libavfilter/vf_hqdn3d.c         .type         = AVMEDIA_TYPE_VIDEO,
type              358 libavfilter/vf_hqdn3d.c         .type = AVMEDIA_TYPE_VIDEO
type              537 libavfilter/vf_hqx.c         .type         = AVMEDIA_TYPE_VIDEO,
type              546 libavfilter/vf_hqx.c         .type         = AVMEDIA_TYPE_VIDEO,
type              426 libavfilter/vf_hue.c         .type         = AVMEDIA_TYPE_VIDEO,
type              436 libavfilter/vf_hue.c         .type = AVMEDIA_TYPE_VIDEO,
type               43 libavfilter/vf_idet.c static const char *type2str(Type type)
type               45 libavfilter/vf_idet.c     switch(type) {
type              120 libavfilter/vf_idet.c     Type type, best_type;
type              147 libavfilter/vf_idet.c         type = TFF;
type              149 libavfilter/vf_idet.c         type = BFF;
type              151 libavfilter/vf_idet.c         type = PROGRESSIVE;
type              153 libavfilter/vf_idet.c         type = UNDETERMINED;
type              165 libavfilter/vf_idet.c     idet->history[0] = type;
type              207 libavfilter/vf_idet.c     idet->total_prestat [           type] ++;
type              208 libavfilter/vf_idet.c     idet->prestat       [           type] += PRECISION;
type              214 libavfilter/vf_idet.c            rep2str(repeat), type2str(type), type2str(idet->last_type));
type              221 libavfilter/vf_idet.c     av_dict_set    (metadata, "lavfi.idet.single.current_frame",   type2str(type), 0);
type              438 libavfilter/vf_idet.c         .type         = AVMEDIA_TYPE_VIDEO,
type              447 libavfilter/vf_idet.c         .type         = AVMEDIA_TYPE_VIDEO,
type              188 libavfilter/vf_il.c         .type         = AVMEDIA_TYPE_VIDEO,
type              198 libavfilter/vf_il.c         .type = AVMEDIA_TYPE_VIDEO,
type              227 libavfilter/vf_interlace.c         .type         = AVMEDIA_TYPE_VIDEO,
type              236 libavfilter/vf_interlace.c         .type         = AVMEDIA_TYPE_VIDEO,
type              293 libavfilter/vf_kerndeint.c         .type         = AVMEDIA_TYPE_VIDEO,
type              303 libavfilter/vf_kerndeint.c         .type = AVMEDIA_TYPE_VIDEO,
type              205 libavfilter/vf_lenscorrection.c         .type         = AVMEDIA_TYPE_VIDEO,
type              214 libavfilter/vf_lenscorrection.c         .type         = AVMEDIA_TYPE_VIDEO,
type               82 libavfilter/vf_libopencv.c     int type;
type              101 libavfilter/vf_libopencv.c     if      (!strcmp(type_str, "blur"         )) smooth->type = CV_BLUR;
type              102 libavfilter/vf_libopencv.c     else if (!strcmp(type_str, "blur_no_scale")) smooth->type = CV_BLUR_NO_SCALE;
type              103 libavfilter/vf_libopencv.c     else if (!strcmp(type_str, "median"       )) smooth->type = CV_MEDIAN;
type              104 libavfilter/vf_libopencv.c     else if (!strcmp(type_str, "gaussian"     )) smooth->type = CV_GAUSSIAN;
type              105 libavfilter/vf_libopencv.c     else if (!strcmp(type_str, "bilateral"    )) smooth->type = CV_BILATERAL;
type              117 libavfilter/vf_libopencv.c     if ((smooth->type == CV_BLUR || smooth->type == CV_BLUR_NO_SCALE || smooth->type == CV_GAUSSIAN) &&
type              134 libavfilter/vf_libopencv.c     cvSmooth(inimg, outimg, smooth->type, smooth->param1, smooth->param2, smooth->param3, smooth->param4);
type              403 libavfilter/vf_libopencv.c         .type         = AVMEDIA_TYPE_VIDEO,
type              412 libavfilter/vf_libopencv.c         .type = AVMEDIA_TYPE_VIDEO,
type              359 libavfilter/vf_lut.c       .type         = AVMEDIA_TYPE_VIDEO,
type              367 libavfilter/vf_lut.c       .type = AVMEDIA_TYPE_VIDEO,
type              610 libavfilter/vf_lut3d.c         .type         = AVMEDIA_TYPE_VIDEO,
type              620 libavfilter/vf_lut3d.c          .type = AVMEDIA_TYPE_VIDEO,
type              781 libavfilter/vf_lut3d.c         .type         = AVMEDIA_TYPE_VIDEO,
type              786 libavfilter/vf_lut3d.c         .type         = AVMEDIA_TYPE_VIDEO,
type              796 libavfilter/vf_lut3d.c         .type          = AVMEDIA_TYPE_VIDEO,
type              290 libavfilter/vf_mcdeint.c         .type         = AVMEDIA_TYPE_VIDEO,
type              300 libavfilter/vf_mcdeint.c         .type = AVMEDIA_TYPE_VIDEO,
type              101 libavfilter/vf_mergeplanes.c         pad.type = AVMEDIA_TYPE_VIDEO;
type              295 libavfilter/vf_mergeplanes.c         .type          = AVMEDIA_TYPE_VIDEO,
type              223 libavfilter/vf_mpdecimate.c         .type         = AVMEDIA_TYPE_VIDEO,
type              233 libavfilter/vf_mpdecimate.c         .type          = AVMEDIA_TYPE_VIDEO,
type              325 libavfilter/vf_noise.c         .type         = AVMEDIA_TYPE_VIDEO,
type              335 libavfilter/vf_noise.c         .type = AVMEDIA_TYPE_VIDEO,
type               32 libavfilter/vf_null.c         .type = AVMEDIA_TYPE_VIDEO,
type               40 libavfilter/vf_null.c         .type = AVMEDIA_TYPE_VIDEO,
type              643 libavfilter/vf_overlay.c         .type         = AVMEDIA_TYPE_VIDEO,
type              650 libavfilter/vf_overlay.c         .type         = AVMEDIA_TYPE_VIDEO,
type              660 libavfilter/vf_overlay.c         .type          = AVMEDIA_TYPE_VIDEO,
type              308 libavfilter/vf_owdenoise.c         .type         = AVMEDIA_TYPE_VIDEO,
type              318 libavfilter/vf_owdenoise.c          .type = AVMEDIA_TYPE_VIDEO,
type              377 libavfilter/vf_pad.c         .type             = AVMEDIA_TYPE_VIDEO,
type              388 libavfilter/vf_pad.c         .type         = AVMEDIA_TYPE_VIDEO,
type              540 libavfilter/vf_palettegen.c         .type         = AVMEDIA_TYPE_VIDEO,
type              549 libavfilter/vf_palettegen.c         .type          = AVMEDIA_TYPE_VIDEO,
type             1039 libavfilter/vf_paletteuse.c         .type           = AVMEDIA_TYPE_VIDEO,
type             1044 libavfilter/vf_paletteuse.c         .type           = AVMEDIA_TYPE_VIDEO,
type             1054 libavfilter/vf_paletteuse.c         .type          = AVMEDIA_TYPE_VIDEO,
type              460 libavfilter/vf_perspective.c         .type         = AVMEDIA_TYPE_VIDEO,
type              470 libavfilter/vf_perspective.c         .type = AVMEDIA_TYPE_VIDEO,
type              304 libavfilter/vf_phase.c         .type         = AVMEDIA_TYPE_VIDEO,
type              314 libavfilter/vf_phase.c         .type = AVMEDIA_TYPE_VIDEO,
type              113 libavfilter/vf_pixdesctest.c         .type         = AVMEDIA_TYPE_VIDEO,
type              123 libavfilter/vf_pixdesctest.c         .type = AVMEDIA_TYPE_VIDEO,
type              166 libavfilter/vf_pp.c         .type         = AVMEDIA_TYPE_VIDEO,
type              176 libavfilter/vf_pp.c         .type = AVMEDIA_TYPE_VIDEO,
type              385 libavfilter/vf_pp7.c         .type         = AVMEDIA_TYPE_VIDEO,
type              395 libavfilter/vf_pp7.c         .type = AVMEDIA_TYPE_VIDEO,
type              355 libavfilter/vf_psnr.c         .type         = AVMEDIA_TYPE_VIDEO,
type              359 libavfilter/vf_psnr.c         .type         = AVMEDIA_TYPE_VIDEO,
type              369 libavfilter/vf_psnr.c         .type          = AVMEDIA_TYPE_VIDEO,
type              755 libavfilter/vf_pullup.c         .type         = AVMEDIA_TYPE_VIDEO,
type              765 libavfilter/vf_pullup.c         .type         = AVMEDIA_TYPE_VIDEO,
type               85 libavfilter/vf_qp.c     int type, stride, ret;
type              103 libavfilter/vf_qp.c     in_qp_table = av_frame_get_qp_table(in, &stride, &type);
type              104 libavfilter/vf_qp.c     av_frame_set_qp_table(out, out_qp_table_buf, s->qstride, type);
type              130 libavfilter/vf_qp.c         .type         = AVMEDIA_TYPE_VIDEO,
type              140 libavfilter/vf_qp.c         .type = AVMEDIA_TYPE_VIDEO,
type              559 libavfilter/vf_removelogo.c         .type         = AVMEDIA_TYPE_VIDEO,
type              569 libavfilter/vf_removelogo.c         .type = AVMEDIA_TYPE_VIDEO,
type              168 libavfilter/vf_repeatfields.c         .type         = AVMEDIA_TYPE_VIDEO,
type              178 libavfilter/vf_repeatfields.c         .type = AVMEDIA_TYPE_VIDEO,
type              540 libavfilter/vf_rotate.c         .type         = AVMEDIA_TYPE_VIDEO,
type              549 libavfilter/vf_rotate.c         .type         = AVMEDIA_TYPE_VIDEO,
type              310 libavfilter/vf_sab.c         .type         = AVMEDIA_TYPE_VIDEO,
type              320 libavfilter/vf_sab.c         .type = AVMEDIA_TYPE_VIDEO,
type              594 libavfilter/vf_scale.c         .type         = AVMEDIA_TYPE_VIDEO,
type              603 libavfilter/vf_scale.c         .type         = AVMEDIA_TYPE_VIDEO,
type               53 libavfilter/vf_separatefields.c static void extract_field(AVFrame *frame, int nb_planes, int type)
type               58 libavfilter/vf_separatefields.c         if (type)
type              124 libavfilter/vf_separatefields.c         .type         = AVMEDIA_TYPE_VIDEO,
type              133 libavfilter/vf_separatefields.c         .type          = AVMEDIA_TYPE_VIDEO,
type               73 libavfilter/vf_setfield.c         .type         = AVMEDIA_TYPE_VIDEO,
type               82 libavfilter/vf_setfield.c         .type = AVMEDIA_TYPE_VIDEO,
type               52 libavfilter/vf_showinfo.c     switch (stereo->type) {
type              136 libavfilter/vf_showinfo.c         switch (sd->type) {
type              155 libavfilter/vf_showinfo.c                    sd->type, sd->size);
type              192 libavfilter/vf_showinfo.c         .type         = AVMEDIA_TYPE_VIDEO,
type              202 libavfilter/vf_showinfo.c         .type = AVMEDIA_TYPE_VIDEO,
type              106 libavfilter/vf_showpalette.c         .type         = AVMEDIA_TYPE_VIDEO,
type              115 libavfilter/vf_showpalette.c         .type         = AVMEDIA_TYPE_VIDEO,
type              147 libavfilter/vf_shuffleplanes.c         .type             = AVMEDIA_TYPE_VIDEO,
type              158 libavfilter/vf_shuffleplanes.c         .type = AVMEDIA_TYPE_VIDEO,
type              567 libavfilter/vf_signalstats.c         .type           = AVMEDIA_TYPE_VIDEO,
type              577 libavfilter/vf_signalstats.c         .type           = AVMEDIA_TYPE_VIDEO,
type              278 libavfilter/vf_smartblur.c         .type         = AVMEDIA_TYPE_VIDEO,
type              288 libavfilter/vf_smartblur.c         .type = AVMEDIA_TYPE_VIDEO,
type              499 libavfilter/vf_spp.c         .type         = AVMEDIA_TYPE_VIDEO,
type              509 libavfilter/vf_spp.c         .type = AVMEDIA_TYPE_VIDEO,
type              640 libavfilter/vf_stereo3d.c         .type         = AVMEDIA_TYPE_VIDEO,
type              649 libavfilter/vf_stereo3d.c         .type         = AVMEDIA_TYPE_VIDEO,
type              194 libavfilter/vf_subtitles.c         .type             = AVMEDIA_TYPE_VIDEO,
type              205 libavfilter/vf_subtitles.c         .type = AVMEDIA_TYPE_VIDEO,
type              329 libavfilter/vf_super2xsai.c         .type         = AVMEDIA_TYPE_VIDEO,
type              339 libavfilter/vf_super2xsai.c         .type         = AVMEDIA_TYPE_VIDEO,
type               89 libavfilter/vf_swapuv.c         .type             = AVMEDIA_TYPE_VIDEO,
type               99 libavfilter/vf_swapuv.c         .type = AVMEDIA_TYPE_VIDEO,
type              259 libavfilter/vf_telecine.c         .type          = AVMEDIA_TYPE_VIDEO,
type              269 libavfilter/vf_telecine.c         .type          = AVMEDIA_TYPE_VIDEO,
type              213 libavfilter/vf_thumbnail.c         .type         = AVMEDIA_TYPE_VIDEO,
type              223 libavfilter/vf_thumbnail.c         .type          = AVMEDIA_TYPE_VIDEO,
type              220 libavfilter/vf_tile.c         .type         = AVMEDIA_TYPE_VIDEO,
type              229 libavfilter/vf_tile.c         .type          = AVMEDIA_TYPE_VIDEO,
type              389 libavfilter/vf_tinterlace.c         .type         = AVMEDIA_TYPE_VIDEO,
type              398 libavfilter/vf_tinterlace.c         .type         = AVMEDIA_TYPE_VIDEO,
type              282 libavfilter/vf_transpose.c         .type         = AVMEDIA_TYPE_VIDEO,
type              293 libavfilter/vf_transpose.c         .type         = AVMEDIA_TYPE_VIDEO,
type              287 libavfilter/vf_unsharp.c         .type         = AVMEDIA_TYPE_VIDEO,
type              297 libavfilter/vf_unsharp.c         .type = AVMEDIA_TYPE_VIDEO,
type              475 libavfilter/vf_uspp.c         .type         = AVMEDIA_TYPE_VIDEO,
type              485 libavfilter/vf_uspp.c         .type = AVMEDIA_TYPE_VIDEO,
type               89 libavfilter/vf_vflip.c         .type             = AVMEDIA_TYPE_VIDEO,
type              100 libavfilter/vf_vflip.c         .type = AVMEDIA_TYPE_VIDEO,
type              192 libavfilter/vf_vidstabdetect.c         .type         = AVMEDIA_TYPE_VIDEO,
type              202 libavfilter/vf_vidstabdetect.c         .type = AVMEDIA_TYPE_VIDEO,
type              293 libavfilter/vf_vidstabtransform.c         .type         = AVMEDIA_TYPE_VIDEO,
type              303 libavfilter/vf_vidstabtransform.c         .type = AVMEDIA_TYPE_VIDEO,
type              320 libavfilter/vf_vignette.c         .type         = AVMEDIA_TYPE_VIDEO,
type              330 libavfilter/vf_vignette.c          .type = AVMEDIA_TYPE_VIDEO,
type              367 libavfilter/vf_w3fdif.c         .type          = AVMEDIA_TYPE_VIDEO,
type              377 libavfilter/vf_w3fdif.c         .type          = AVMEDIA_TYPE_VIDEO,
type              406 libavfilter/vf_xbr.c         .type         = AVMEDIA_TYPE_VIDEO,
type              415 libavfilter/vf_xbr.c         .type         = AVMEDIA_TYPE_VIDEO,
type              532 libavfilter/vf_yadif.c         .type          = AVMEDIA_TYPE_VIDEO,
type              541 libavfilter/vf_yadif.c         .type          = AVMEDIA_TYPE_VIDEO,
type              283 libavfilter/vf_zoompan.c         .type         = AVMEDIA_TYPE_VIDEO,
type              292 libavfilter/vf_zoompan.c         .type          = AVMEDIA_TYPE_VIDEO,
type               85 libavfilter/video.c     picref->type = AVMEDIA_TYPE_VIDEO;
type               50 libavfilter/vidstabutils.c static int vs2av_log(int type, const char *tag, const char *format, ...)
type               63 libavfilter/vidstabutils.c     av_vlog(&ctx, type, format, ap);
type               32 libavfilter/vsink_nullsink.c         .type        = AVMEDIA_TYPE_VIDEO,
type              320 libavfilter/vsrc_cellauto.c         .type          = AVMEDIA_TYPE_VIDEO,
type              433 libavfilter/vsrc_life.c         .type          = AVMEDIA_TYPE_VIDEO,
type              413 libavfilter/vsrc_mandelbrot.c         .type          = AVMEDIA_TYPE_VIDEO,
type              345 libavfilter/vsrc_mptestsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              254 libavfilter/vsrc_testsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              385 libavfilter/vsrc_testsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              423 libavfilter/vsrc_testsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              656 libavfilter/vsrc_testsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              772 libavfilter/vsrc_testsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type              893 libavfilter/vsrc_testsrc.c         .type          = AVMEDIA_TYPE_VIDEO,
type               32 libavformat/asf.h     uint8_t type;
type              165 libavformat/asfdec.c static int get_value(AVIOContext *pb, int type, int type2_size)
type              167 libavformat/asfdec.c     switch (type) {
type              191 libavformat/asfdec.c     int ret, type, picsize, desc_len;
type              200 libavformat/asfdec.c     type = avio_r8(s->pb);
type              202 libavformat/asfdec.c     if (type >= FF_ARRAY_ELEMS(ff_id3v2_picture_types) || type < 0) {
type              203 libavformat/asfdec.c         av_log(s, AV_LOG_WARNING, "Unknown attached picture type: %d.\n", type);
type              204 libavformat/asfdec.c         type = 0;
type              260 libavformat/asfdec.c     av_dict_set(&st->metadata, "comment", ff_id3v2_picture_types[type], 0);
type              280 libavformat/asfdec.c static void get_tag(AVFormatContext *s, const char *key, int type, int len, int type2_size)
type              297 libavformat/asfdec.c     if (type == 0) {         // UTF16-LE
type              299 libavformat/asfdec.c     } else if (type == -1) { // ASCII
type              302 libavformat/asfdec.c     } else if (type == 1) {  // byte array
type              311 libavformat/asfdec.c     } else if (type > 1 && type <= 5) {  // boolean or DWORD or QWORD or WORD
type              312 libavformat/asfdec.c         uint64_t num = get_value(s->pb, type, type2_size);
type              314 libavformat/asfdec.c     } else if (type == 6) { // (don't) handle GUID
type              319 libavformat/asfdec.c                "Unsupported value type %d in tag %s.\n", type, key);
type              361 libavformat/asfdec.c     enum AVMediaType type;
type              391 libavformat/asfdec.c         type = AVMEDIA_TYPE_AUDIO;
type              393 libavformat/asfdec.c         type = AVMEDIA_TYPE_VIDEO;
type              395 libavformat/asfdec.c         type                = AVMEDIA_TYPE_VIDEO;
type              398 libavformat/asfdec.c         type = AVMEDIA_TYPE_DATA;
type              401 libavformat/asfdec.c         type                      = AVMEDIA_TYPE_UNKNOWN;
type              419 libavformat/asfdec.c             type            = AVMEDIA_TYPE_AUDIO;
type              430 libavformat/asfdec.c     st->codec->codec_type = type;
type              431 libavformat/asfdec.c     if (type == AVMEDIA_TYPE_AUDIO) {
type              460 libavformat/asfdec.c     } else if (type == AVMEDIA_TYPE_VIDEO &&
type              569 libavformat/asfdec.c             p->type = g[0];
type             1051 libavformat/asfdec.c             switch (p->type) {
type              260 libavformat/asfenc.c static void put_chunk(AVFormatContext *s, int type,
type              268 libavformat/asfenc.c     avio_wl16(pb, type);
type               83 libavformat/astdec.c     uint32_t type, size;
type               91 libavformat/astdec.c     type = avio_rl32(s->pb);
type              100 libavformat/astdec.c     if (type == MKTAG('B','L','C','K')) {
type              105 libavformat/astdec.c         av_log(s, AV_LOG_ERROR, "unknown chunk %x\n", type);
type               38 libavformat/astenc.c #define CHECK_LOOP(type) \
type               39 libavformat/astenc.c     if (ast->loop ## type > 0) { \
type               40 libavformat/astenc.c         ast->loop ## type = av_rescale_rnd(ast->loop ## type, enc->sample_rate, 1000, AV_ROUND_DOWN); \
type               41 libavformat/astenc.c         if (ast->loop ## type < 0 || ast->loop ## type > UINT_MAX) { \
type               42 libavformat/astenc.c             av_log(s, AV_LOG_ERROR, "Invalid loop" #type " value\n"); \
type              530 libavformat/avformat.h     int (*control_message)(struct AVFormatContext *s, int type,
type             1181 libavformat/avformat.h typedef int (*av_format_control_message)(struct AVFormatContext *s, int type,
type             1880 libavformat/avformat.h                                  enum AVPacketSideDataType type, int *size);
type             2061 libavformat/avformat.h                         enum AVMediaType type,
type             2342 libavformat/avformat.h                             enum AVMediaType type);
type              107 libavformat/avienc.c static char *avi_stream2fourcc(char *tag, int index, enum AVMediaType type)
type              111 libavformat/avienc.c     if (type == AVMEDIA_TYPE_VIDEO) {
type              114 libavformat/avienc.c     } else if (type == AVMEDIA_TYPE_SUBTITLE) {
type              373 libavformat/aviobuf.c #define PUT_STR16(type, big_endian)                          \
type              374 libavformat/aviobuf.c int avio_put_str16 ## type(AVIOContext *s, const char *str)  \
type              722 libavformat/aviobuf.c #define GET_STR16(type, read) \
type              723 libavformat/aviobuf.c     int avio_get_str16 ##type(AVIOContext *pb, int maxlen, char *buf, int buflen)\
type               87 libavformat/avs.c                       AvsBlockType type, int sub_type, int size,
type              106 libavformat/avs.c     pkt->data[palette_size + 1] = type;
type              148 libavformat/avs.c     AvsBlockType type = AVS_NONE;
type              166 libavformat/avs.c             type = avio_r8(s->pb);
type              172 libavformat/avs.c             switch (type) {
type              198 libavformat/avs.c                 return avs_read_video_packet(s, pkt, type, sub_type, size,
type               74 libavformat/bmv.c     int type, err;
type               79 libavformat/bmv.c         type = avio_r8(s->pb);
type               80 libavformat/bmv.c         if (type == BMV_NOP)
type               82 libavformat/bmv.c         if (type == BMV_END)
type               89 libavformat/bmv.c         c->packet[0] = type;
type               92 libavformat/bmv.c         if (type & BMV_AUDIO) {
type              260 libavformat/dump.c     switch (stereo->type) {
type              305 libavformat/dump.c         switch (sd.type) {
type              333 libavformat/dump.c                    "unknown side data type %d (%d bytes)", sd.type, sd.size);
type               32 libavformat/dvbsub.c     int type, len;
type               43 libavformat/dvbsub.c                 type    = ptr[1];
type               46 libavformat/dvbsub.c                 if (type == 0x80) {
type               48 libavformat/dvbsub.c                 } else if (type >= 0x10 && type <= 0x14) {
type               49 libavformat/dvbsub.c                     histogram[type - 0x10] ++;
type               98 libavformat/ffmenc.c static int ffm_write_header_codec_private_ctx(AVFormatContext *s, AVCodecContext *ctx, int type)
type              111 libavformat/ffmenc.c         if ((ret = av_opt_serialize(ctx->priv_data, AV_OPT_FLAG_ENCODING_PARAM | type,
type              127 libavformat/ffmenc.c static int ffm_write_header_codec_ctx(AVIOContext *pb, AVCodecContext *ctx, unsigned tag, int type)
type              139 libavformat/ffmenc.c     if ((ret = av_opt_serialize(ctx, ENC | type, SKIP_DEFAULTS, &buf, '=', ',')) < 0)
type               38 libavformat/flac_picture.c     unsigned int type;
type               45 libavformat/flac_picture.c     type = avio_rb32(pb);
type               46 libavformat/flac_picture.c     if (type >= FF_ARRAY_ELEMS(ff_id3v2_picture_types)) {
type               47 libavformat/flac_picture.c         av_log(s, AV_LOG_ERROR, "Invalid picture type: %d.\n", type);
type               51 libavformat/flac_picture.c         type = 0;
type              139 libavformat/flac_picture.c     av_dict_set(&st->metadata, "comment", ff_id3v2_picture_types[type], 0);
type              553 libavformat/flvdec.c     AMFDataType type;
type              568 libavformat/flvdec.c     type = avio_r8(ioc);
type              569 libavformat/flvdec.c     if (type != AMF_DATA_TYPE_STRING ||
type              671 libavformat/flvdec.c static int amf_skip_tag(AVIOContext *pb, AMFDataType type)
type              675 libavformat/flvdec.c     switch (type) {
type              690 libavformat/flvdec.c         while(!pb->eof_reached && (nb-- > 0 || type != AMF_DATA_TYPE_ARRAY)) {
type              731 libavformat/flvdec.c         AMFDataType type = avio_r8(pb);
type              732 libavformat/flvdec.c         if (type == AMF_DATA_TYPE_STRING && !strcmp(buf, "text")) {
type              740 libavformat/flvdec.c             if ((ret = amf_skip_tag(pb, type)) < 0)
type              779 libavformat/flvdec.c     int ret, i, type, size, flags;
type              790 libavformat/flvdec.c         type = (avio_r8(s->pb) & 0x1F);
type              794 libavformat/flvdec.c         av_dlog(s, "type:%d, size:%d, dts:%"PRId64" pos:%"PRId64"\n", type, size, dts, avio_tell(s->pb));
type              821 libavformat/flvdec.c         if (type == FLV_TAG_TYPE_AUDIO) {
type              825 libavformat/flvdec.c         } else if (type == FLV_TAG_TYPE_VIDEO) {
type              831 libavformat/flvdec.c         } else if (type == FLV_TAG_TYPE_META) {
type              843 libavformat/flvdec.c                    type, size, flags);
type              958 libavformat/flvdec.c         int type = avio_r8(s->pb);
type              975 libavformat/flvdec.c         if (type == 0 && (!st->codec->extradata || st->codec->codec_id == AV_CODEC_ID_AAC ||
type              329 libavformat/flvenc.c                              const char* type, int codec_id)
type              334 libavformat/flvenc.c             type,
type              131 libavformat/format.c                               enum AVMediaType type)
type              139 libavformat/format.c     if (type == AVMEDIA_TYPE_VIDEO) {
type              150 libavformat/format.c     } else if (type == AVMEDIA_TYPE_AUDIO)
type              152 libavformat/format.c     else if (type == AVMEDIA_TYPE_SUBTITLE)
type              154 libavformat/format.c     else if (type == AVMEDIA_TYPE_DATA)
type               60 libavformat/framecrcenc.c             if (HAVE_BIGENDIAN && AV_PKT_DATA_PALETTE == pkt->side_data[i].type) {
type               67 libavformat/gxf.c static int parse_packet_header(AVIOContext *pb, GXFPktType *type, int *length) {
type               72 libavformat/gxf.c     *type = avio_r8(pb);
type              465 libavformat/gxf.c     GXFPktType type;
type              476 libavformat/gxf.c     if (!parse_packet_header(pb, &type, &len) || type != PKT_MEDIA) {
type              170 libavformat/gxfenc.c static void gxf_write_packet_header(AVIOContext *pb, GXFPktType type)
type              174 libavformat/gxfenc.c     avio_w8(pb, type); /* map packet */
type               35 libavformat/h264dec.c             int type    = code & 0x1F;
type               46 libavformat/h264dec.c             if (ref_zero[type] == 1 && ref_idc)
type               48 libavformat/h264dec.c             if (ref_zero[type] == -1 && !ref_idc)
type               50 libavformat/h264dec.c             if (ref_zero[type] == 2)
type               53 libavformat/h264dec.c             switch (type) {
type               87 libavformat/hdsenc.c         int type = buf[0];
type               91 libavformat/hdsenc.c         if (type == 8 || type == 9) {
type              100 libavformat/hdsenc.c         } else if (type == 0x12) {
type             1038 libavformat/hevc.c         uint8_t type = (buf[4] >> 1) & 0x3f;
type             1042 libavformat/hevc.c         switch (type) {
type             1113 libavformat/hevc.c         uint8_t type = (buf[4] >> 1) & 0x3f;
type             1117 libavformat/hevc.c         switch (type) {
type               37 libavformat/hevcdec.c             int type = (code & 0x7E) >> 1;
type               45 libavformat/hevcdec.c             switch (type) {
type              103 libavformat/hls.c     enum PlaylistType type;
type              147 libavformat/hls.c     enum AVMediaType type;
type              353 libavformat/hls.c     char type[16];
type              368 libavformat/hls.c     enum AVMediaType type = AVMEDIA_TYPE_UNKNOWN;
type              373 libavformat/hls.c     if (!strcmp(info->type, "AUDIO"))
type              374 libavformat/hls.c         type = AVMEDIA_TYPE_AUDIO;
type              375 libavformat/hls.c     else if (!strcmp(info->type, "VIDEO"))
type              376 libavformat/hls.c         type = AVMEDIA_TYPE_VIDEO;
type              377 libavformat/hls.c     else if (!strcmp(info->type, "SUBTITLES"))
type              378 libavformat/hls.c         type = AVMEDIA_TYPE_SUBTITLE;
type              379 libavformat/hls.c     else if (!strcmp(info->type, "CLOSED-CAPTIONS"))
type              384 libavformat/hls.c     if (type == AVMEDIA_TYPE_UNKNOWN)
type              388 libavformat/hls.c     if (type == AVMEDIA_TYPE_SUBTITLE && !info->uri[0])
type              392 libavformat/hls.c     if (type == AVMEDIA_TYPE_SUBTITLE)
type              401 libavformat/hls.c     rend->type = type;
type              445 libavformat/hls.c         *dest     =        info->type;
type              446 libavformat/hls.c         *dest_len = sizeof(info->type);
type              543 libavformat/hls.c         pls->type = PLS_TYPE_UNSPECIFIED;
type              587 libavformat/hls.c                 pls->type = PLS_TYPE_EVENT;
type              589 libavformat/hls.c                 pls->type = PLS_TYPE_VOD;
type             1132 libavformat/hls.c                                       enum AVMediaType type, const char *group_id)
type             1139 libavformat/hls.c         if (rend->type == type && !strcmp(rend->group_id, group_id)) {
type             1156 libavformat/hls.c                                          enum AVMediaType type)
type             1164 libavformat/hls.c         if (st->codec->codec_type != type)
type             1170 libavformat/hls.c             if (rend->type != type)
type             1633 libavformat/hls.c         !(c->variants[0]->playlists[0]->finished || c->variants[0]->playlists[0]->type == PLS_TYPE_EVENT))
type              592 libavformat/id3v2.c     apic->type = ff_id3v2_picture_types[pic_type];
type              887 libavformat/id3v2.c             const char *type;
type              889 libavformat/id3v2.c                 type = "encrypted";
type              891 libavformat/id3v2.c                 type = "compressed";
type              893 libavformat/id3v2.c                 type = "encrypted and compressed";
type              895 libavformat/id3v2.c             av_log(s, AV_LOG_WARNING, "Skipping %s ID3v2 frame %s.\n", type, tag);
type             1086 libavformat/id3v2.c         av_dict_set(&st->metadata, "comment", apic->type, 0);
type               71 libavformat/id3v2.h     const char  *type;
type              267 libavformat/id3v2enc.c     int i, len, type = 0;
type              287 libavformat/id3v2enc.c             type = i;
type              306 libavformat/id3v2enc.c     avio_w8(dyn_buf, type);
type              574 libavformat/iff.c                 int year, mon, day, hour, min, type, ref;
type              587 libavformat/iff.c                 type = avio_rb16(pb);
type              589 libavformat/iff.c                 switch (type) {
type              439 libavformat/internal.h uint8_t *ff_stream_new_side_data(AVStream *st, enum AVPacketSideDataType type,
type               63 libavformat/isom.h     uint32_t type;
type               72 libavformat/isom.h     uint32_t type;
type               59 libavformat/iv8.c     int ret, size, pts, type, flags;
type               65 libavformat/iv8.c         type  = avio_rb16(s->pb); // 257 or 258
type               78 libavformat/iv8.c         if (type == 258) {
type               83 libavformat/libnut.c         s[i].type = codec->codec_type == AVMEDIA_TYPE_VIDEO ? NUT_VIDEO_CLASS : NUT_AUDIO_CLASS;
type              121 libavformat/libnut.c     s[avf->nb_streams].type = -1;
type              150 libavformat/libnut.c     for(i = 0; priv->s[i].type != -1; i++ ) av_freep(&priv->s[i].fourcc);
type              222 libavformat/libnut.c     for (i = 0; s[i].type != -1 && i < 2; i++) {
type              249 libavformat/libnut.c         switch(s[i].type) {
type               83 libavformat/libssh.c             int type;
type               84 libavformat/libssh.c             if (!ssh_try_publickey_from_file(libssh->session, libssh->priv_key, &pub_key, &type)) {
type               85 libavformat/libssh.c                 priv_key = privatekey_from_file(libssh->session, libssh->priv_key, type, password);
type              164 libavformat/matroska.c     sd->type = AV_PKT_DATA_STEREO3D;
type              171 libavformat/matroska.c         stereo->type = AV_STEREO3D_2D;
type              176 libavformat/matroska.c         stereo->type = AV_STEREO3D_SIDEBYSIDE;
type              181 libavformat/matroska.c         stereo->type = AV_STEREO3D_TOPBOTTOM;
type              186 libavformat/matroska.c         stereo->type = AV_STEREO3D_CHECKERBOARD;
type              191 libavformat/matroska.c         stereo->type = AV_STEREO3D_LINES;
type              196 libavformat/matroska.c         stereo->type = AV_STEREO3D_COLUMNS;
type              201 libavformat/matroska.c         stereo->type = AV_STEREO3D_FRAMESEQUENCE;
type               83 libavformat/matroskadec.c     EbmlType type;
type              125 libavformat/matroskadec.c     uint64_t type;
type              160 libavformat/matroskadec.c     uint64_t type;
type              170 libavformat/matroskadec.c     uint64_t type;
type              229 libavformat/matroskadec.c     char    *type;
type              394 libavformat/matroskadec.c     { MATROSKA_ID_ENCODINGTYPE,        EBML_UINT, 0, offsetof(MatroskaTrackEncoding, type),        { .u = 0 } },
type              408 libavformat/matroskadec.c     { MATROSKA_ID_TRACKPLANETYPE, EBML_UINT, 0, offsetof(MatroskaTrackPlane,type) },
type              426 libavformat/matroskadec.c     { MATROSKA_ID_TRACKTYPE,             EBML_UINT,  0, offsetof(MatroskaTrack, type) },
type              534 libavformat/matroskadec.c     { MATROSKA_ID_TAGTARGETS_TYPE,       EBML_STR,  0, offsetof(MatroskaTagTarget, type) },
type              965 libavformat/matroskadec.c         switch (syntax[i].type) {
type             1058 libavformat/matroskadec.c     if (syntax->type != EBML_PASS && syntax->type != EBML_STOP) {
type             1062 libavformat/matroskadec.c         if (max_lengths[syntax->type] && length > max_lengths[syntax->type]) {
type             1065 libavformat/matroskadec.c                    length, max_lengths[syntax->type], syntax->type);
type             1070 libavformat/matroskadec.c     switch (syntax->type) {
type             1095 libavformat/matroskadec.c         if (syntax->type == EBML_LEVEL1 &&
type             1123 libavformat/matroskadec.c         switch (syntax[i].type) {
type             1411 libavformat/matroskadec.c                                  tags[i].target.type);
type             1655 libavformat/matroskadec.c         if (track->type != MATROSKA_TRACK_TYPE_VIDEO &&
type             1656 libavformat/matroskadec.c             track->type != MATROSKA_TRACK_TYPE_AUDIO &&
type             1657 libavformat/matroskadec.c             track->type != MATROSKA_TRACK_TYPE_SUBTITLE &&
type             1658 libavformat/matroskadec.c             track->type != MATROSKA_TRACK_TYPE_METADATA) {
type             1661 libavformat/matroskadec.c                    track->type);
type             1667 libavformat/matroskadec.c         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
type             1676 libavformat/matroskadec.c         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
type             1684 libavformat/matroskadec.c             if (encodings[0].type) {
type             1964 libavformat/matroskadec.c         if (track->type == MATROSKA_TRACK_TYPE_VIDEO) {
type             2002 libavformat/matroskadec.c                 if (planes[j].type >= MATROSKA_VIDEO_STEREO_PLANE_COUNT)
type             2005 libavformat/matroskadec.c                          ff_matroska_video_stereo_plane[planes[j].type], i);
type             2020 libavformat/matroskadec.c         } else if (track->type == MATROSKA_TRACK_TYPE_AUDIO) {
type             2049 libavformat/matroskadec.c         } else if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE) {
type             2233 libavformat/matroskadec.c                                 int *buf_size, int type,
type             2240 libavformat/matroskadec.c     if (!type) {
type             2258 libavformat/matroskadec.c     switch (type) {
type             2627 libavformat/matroskadec.c     if (encodings && !encodings->type && encodings->scope & 1) {
type             2719 libavformat/matroskadec.c     if (track->type != MATROSKA_TRACK_TYPE_SUBTITLE ||
type             2787 libavformat/matroskadec.c         if (track->type == MATROSKA_TRACK_TYPE_SUBTITLE &&
type             2796 libavformat/matroskadec.c         track->type != MATROSKA_TRACK_TYPE_SUBTITLE) {
type             3018 libavformat/matroskadec.c         if (tracks[i].type == MATROSKA_TRACK_TYPE_SUBTITLE &&
type             3066 libavformat/matroskadec.c         if (tracks[n].type == MATROSKA_TRACK_TYPE_AUDIO)
type              733 libavformat/matroskaenc.c         if (sd.type == AV_PKT_DATA_STEREO3D) {
type              736 libavformat/matroskaenc.c             switch (stereo->type) {
type             1964 libavformat/matroskaenc.c         enum AVMediaType type = avcodec_get_type(codec_id);
type             1966 libavformat/matroskaenc.c         if (type == AVMEDIA_TYPE_VIDEO || type == AVMEDIA_TYPE_AUDIO)
type              122 libavformat/mlvdec.c         int type;
type              124 libavformat/mlvdec.c         type = avio_rl32(pb);
type              130 libavformat/mlvdec.c         if (vst && type == MKTAG('R','A','W','I') && size >= 164) {
type              144 libavformat/mlvdec.c         } else if (ast && type == MKTAG('W', 'A', 'V', 'I') && size >= 16) {
type              149 libavformat/mlvdec.c         } else if (type == MKTAG('I','N','F','O')) {
type              153 libavformat/mlvdec.c         } else if (type == MKTAG('I','D','N','T') && size >= 36) {
type              161 libavformat/mlvdec.c         } else if (type == MKTAG('L','E','N','S') && size >= 48) {
type              175 libavformat/mlvdec.c         } else if (vst && type == MKTAG('V', 'I', 'D', 'F') && size >= 4) {
type              180 libavformat/mlvdec.c         } else if (ast && type == MKTAG('A', 'U', 'D', 'F') && size >= 4) {
type              185 libavformat/mlvdec.c         } else if (vst && type == MKTAG('W','B','A','L') && size >= 28) {
type              194 libavformat/mlvdec.c         } else if (type == MKTAG('R','T','C','I') && size >= 20) {
type              210 libavformat/mlvdec.c         } else if (type == MKTAG('E','X','P','O') && size >= 16) {
type              220 libavformat/mlvdec.c         } else if (type == MKTAG('S','T','Y','L') && size >= 36) {
type              228 libavformat/mlvdec.c         } else if (type == MKTAG('M','A','R','K')) {
type              229 libavformat/mlvdec.c         } else if (type == MKTAG('N','U','L','L')) {
type              230 libavformat/mlvdec.c         } else if (type == MKTAG('M','L','V','I')) { /* occurs when MLV and Mnn files are concatenated */
type              232 libavformat/mlvdec.c             av_log(avctx, AV_LOG_INFO, "unsupported tag %c%c%c%c, size %u\n", type&0xFF, (type>>8)&0xFF, (type>>16)&0xFF, (type>>24)&0xFF, size);
type               63 libavformat/mm.c     int len, type, fps, w, h;
type               77 libavformat/mm.c     type = AV_RL16(&p->buf[len]);
type               78 libavformat/mm.c     if (!type || type > 0x31)
type               91 libavformat/mm.c     unsigned int type, length;
type               94 libavformat/mm.c     type = avio_rl16(pb);
type               97 libavformat/mm.c     if (type != MM_TYPE_HEADER)
type              144 libavformat/mm.c     unsigned int type, length;
type              152 libavformat/mm.c         type = AV_RL16(&preamble[0]);
type              155 libavformat/mm.c         switch(type) {
type              172 libavformat/mm.c             if (type!=MM_TYPE_PALETTE)
type              184 libavformat/mm.c             av_log(s, AV_LOG_INFO, "unknown chunk type 0x%x\n", type);
type              383 libavformat/mmst.c     MMSSCPacketType type;
type              392 libavformat/mmst.c     if ((type = get_tcp_server_response(mmst)) != expect_type) {
type              395 libavformat/mmst.c                type, expect_type);
type               61 libavformat/mov.c     uint32_t type;
type              164 libavformat/mov.c static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
type              172 libavformat/mov.c     switch (type) {
type              177 libavformat/mov.c         av_log(c->fc, AV_LOG_WARNING, "Unknown cover type: 0x%x.\n", type);
type              255 libavformat/mov.c     switch (atom.type) {
type              351 libavformat/mov.c             if (atom.type == MKTAG('c', 'o', 'v', 'r')) {
type              374 libavformat/mov.c         snprintf(tmp_key, 5, "%.4s", (char*)&atom.type);
type              411 libavformat/mov.c             key, str, (char*)&atom.type, str_size_alloc, atom.size);
type              481 libavformat/mov.c         dref->type = avio_rl32(pb);
type              483 libavformat/mov.c         av_dlog(c->fc, "type %.4s size %d\n", (char*)&dref->type, size);
type              485 libavformat/mov.c         if (dref->type == MKTAG('a','l','i','s') && size > 150) {
type              488 libavformat/mov.c             int16_t type;
type              516 libavformat/mov.c             for (type = 0; type != -1 && avio_tell(pb) < next; ) {
type              519 libavformat/mov.c                 type = avio_rb16(pb);
type              521 libavformat/mov.c                 av_log(c->fc, AV_LOG_DEBUG, "type %d, len %d\n", type, len);
type              524 libavformat/mov.c                 if (type == 2) { // absolute path
type              539 libavformat/mov.c                 } else if (type == 0) { // directory name
type              563 libavformat/mov.c     uint32_t type;
type              578 libavformat/mov.c     type = avio_rl32(pb); /* component subtype */
type              581 libavformat/mov.c     av_dlog(c->fc, "stype= %.4s\n", (char*)&type);
type              583 libavformat/mov.c     if     (type == MKTAG('v','i','d','e'))
type              585 libavformat/mov.c     else if (type == MKTAG('s','o','u','n'))
type              587 libavformat/mov.c     else if (type == MKTAG('m','1','a',' '))
type              589 libavformat/mov.c     else if ((type == MKTAG('s','u','b','p')) || (type == MKTAG('c','l','c','p')))
type              780 libavformat/mov.c     uint8_t type[5] = {0};
type              782 libavformat/mov.c     avio_read(pb, type, 4);
type              783 libavformat/mov.c     if (strcmp(type, "qt  "))
type              785 libavformat/mov.c     av_log(c->fc, AV_LOG_DEBUG, "ISO: File Type Major Brand: %.4s\n",(char *)&type);
type              786 libavformat/mov.c     av_dict_set(&c->fc->metadata, "major_brand", type, 0);
type             1104 libavformat/mov.c     AV_WL32(buf + 4, atom.type);
type             1297 libavformat/mov.c         unsigned type = avio_rl32(pb);
type             1299 libavformat/mov.c         if (type == MKTAG('f','i','e','l') && size == atom.size)
type             1391 libavformat/mov.c     if      (atom.type == MKTAG('s','t','c','o'))
type             1394 libavformat/mov.c     else if (atom.type == MKTAG('c','o','6','4'))
type             2108 libavformat/mov.c     if (atom.type == MKTAG('s','t','s','z')) {
type             3253 libavformat/mov.c     atom.type = avio_rl32(pb);
type             3255 libavformat/mov.c     if (atom.type != MKTAG('m','d','a','t')) {
type             3298 libavformat/mov.c     atom.type = MKTAG('m','o','o','v');
type             3545 libavformat/mov.c         a.type=0;
type             3548 libavformat/mov.c             a.type = avio_rl32(pb);
type             3549 libavformat/mov.c             if (a.type == MKTAG('f','r','e','e') &&
type             3553 libavformat/mov.c                 uint32_t *type = (uint32_t *)buf + 1;
type             3556 libavformat/mov.c                 if (*type == MKTAG('m','v','h','d') ||
type             3557 libavformat/mov.c                     *type == MKTAG('c','m','o','v')) {
type             3559 libavformat/mov.c                     a.type = MKTAG('m','o','o','v');
type             3562 libavformat/mov.c             if (atom.type != MKTAG('r','o','o','t') &&
type             3563 libavformat/mov.c                 atom.type != MKTAG('m','o','o','v'))
type             3565 libavformat/mov.c                 if (a.type == MKTAG('t','r','a','k') || a.type == MKTAG('m','d','a','t'))
type             3580 libavformat/mov.c                 a.type, (char*)&a.type, (char*)&atom.type, a.size, total_size, atom.size);
type             3589 libavformat/mov.c         for (i = 0; mov_default_parse_table[i].type; i++)
type             3590 libavformat/mov.c             if (mov_default_parse_table[i].type == a.type) {
type             3596 libavformat/mov.c         if (!parse && (atom.type == MKTAG('u','d','t','a') ||
type             3597 libavformat/mov.c                        atom.type == MKTAG('i','l','s','t')))
type             3624 libavformat/mov.c                        (char*)&a.type, -left);
type             4165 libavformat/mov.c                 sd->type = AV_PKT_DATA_DISPLAYMATRIX;
type             3085 libavformat/movenc.c                                    const char *str, const char *lang, int type)
type             3091 libavformat/movenc.c     avio_wb32(pb, type);                /* type */
type             3267 libavformat/movenc.c         const char *type;
type             3273 libavformat/movenc.c             type = "video";
type             3275 libavformat/movenc.c             type = "audio";
type             3279 libavformat/movenc.c         avio_printf(pb, "<%s systemBitrate=\"%d\">\n", type,
type             3320 libavformat/movenc.c         avio_printf(pb, "</%s>\n", type);
type              217 libavformat/mpeg.c         unsigned char type      = avio_r8(pb);
type              222 libavformat/mpeg.c         m->psm_es_type[es_id] = type;
type              474 libavformat/mpeg.c     enum AVMediaType type;
type              507 libavformat/mpeg.c             type     = AVMEDIA_TYPE_VIDEO;
type              510 libavformat/mpeg.c             type     = AVMEDIA_TYPE_VIDEO;
type              514 libavformat/mpeg.c             type     = AVMEDIA_TYPE_AUDIO;
type              517 libavformat/mpeg.c             type     = AVMEDIA_TYPE_AUDIO;
type              520 libavformat/mpeg.c             type     = AVMEDIA_TYPE_VIDEO;
type              523 libavformat/mpeg.c             type     = AVMEDIA_TYPE_VIDEO;
type              526 libavformat/mpeg.c             type     = AVMEDIA_TYPE_AUDIO;
type              529 libavformat/mpeg.c             type     = AVMEDIA_TYPE_AUDIO;
type              540 libavformat/mpeg.c         type = AVMEDIA_TYPE_VIDEO;
type              542 libavformat/mpeg.c         type = AVMEDIA_TYPE_DATA;
type              545 libavformat/mpeg.c         type     = AVMEDIA_TYPE_AUDIO;
type              554 libavformat/mpeg.c         type     = AVMEDIA_TYPE_AUDIO;
type              559 libavformat/mpeg.c         type     = AVMEDIA_TYPE_AUDIO;
type              562 libavformat/mpeg.c         type     = AVMEDIA_TYPE_AUDIO;
type              569 libavformat/mpeg.c         type     = AVMEDIA_TYPE_AUDIO;
type              573 libavformat/mpeg.c         type     = AVMEDIA_TYPE_AUDIO;
type              576 libavformat/mpeg.c         type     = AVMEDIA_TYPE_SUBTITLE;
type              579 libavformat/mpeg.c         type     = AVMEDIA_TYPE_VIDEO;
type              592 libavformat/mpeg.c     st->codec->codec_type = type;
type               90 libavformat/mpegts.c     enum MpegTSFilterType type;
type              434 libavformat/mpegts.c                                         enum MpegTSFilterType type)
type              447 libavformat/mpegts.c     filter->type    = type;
type              505 libavformat/mpegts.c     if (filter->type == MPEGTS_SECTION)
type              507 libavformat/mpegts.c     else if (filter->type == MPEGTS_PES) {
type             1119 libavformat/mpegts.c                                 if (f->type == MPEGTS_PES) {
type             1123 libavformat/mpegts.c                                 } else if (f->type == MPEGTS_PCR) {
type             1480 libavformat/mpegts.c             if (ts->pids[pid]->type != MPEGTS_PES) {
type             1882 libavformat/mpegts.c         if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
type             2002 libavformat/mpegts.c                 if (   fil->type != MPEGTS_SECTION
type             2154 libavformat/mpegts.c         if (tss->type == MPEGTS_PES) {
type             2180 libavformat/mpegts.c     if (tss->type == MPEGTS_SECTION) {
type             2230 libavformat/mpegts.c         if (tss->type == MPEGTS_PES) {
type             2347 libavformat/mpegts.c                 if (ts->pids[i]->type == MPEGTS_PES) {
type             2613 libavformat/mpegts.c             if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
type               81 libavformat/mxfdec.c     MXFPartitionType type;
type               97 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              103 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              113 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              123 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              132 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              138 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              146 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              159 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              186 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              201 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              213 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              266 libavformat/mxfdec.c     enum MXFMetadataSetType type;
type              291 libavformat/mxfdec.c     switch ((*ctx)->type) {
type              524 libavformat/mxfdec.c         partition->type = Header;
type              527 libavformat/mxfdec.c         partition->type = BodyPartition;
type              530 libavformat/mxfdec.c         partition->type = Footer;
type              538 libavformat/mxfdec.c     partition->closed = partition->type == Footer || !(uid[14] & 1);
type             1039 libavformat/mxfdec.c static void *mxf_resolve_strong_ref(MXFContext *mxf, UID *strong_ref, enum MXFMetadataSetType type)
type             1047 libavformat/mxfdec.c             (type == AnyType || mxf->metadata_sets[i]->type == type)) {
type             1103 libavformat/mxfdec.c         if (mxf->metadata_sets[i]->type == IndexTableSegment)
type             1117 libavformat/mxfdec.c         if (mxf->metadata_sets[i]->type == IndexTableSegment)
type             1534 libavformat/mxfdec.c     switch (component->type) {
type             1570 libavformat/mxfdec.c     if (descriptor->type == MultipleDescriptor) {
type             1582 libavformat/mxfdec.c     } else if (descriptor->type == Descriptor)
type             1622 libavformat/mxfdec.c     switch (component->type) {
type             1857 libavformat/mxfdec.c                 if (metadata->type == CryptoContext) {
type             2158 libavformat/mxfdec.c static int mxf_metadataset_init(MXFMetadataSet *ctx, enum MXFMetadataSetType type)
type             2160 libavformat/mxfdec.c     switch (type){
type             2172 libavformat/mxfdec.c static int mxf_read_local_tags(MXFContext *mxf, KLVPacket *klv, MXFMetadataReadFunc *read_child, int ctx_size, enum MXFMetadataSetType type)
type             2180 libavformat/mxfdec.c     mxf_metadataset_init(ctx, type);
type             2215 libavformat/mxfdec.c                 ctx->type = type;
type             2226 libavformat/mxfdec.c     if (ctx_size) ctx->type = type;
type             2249 libavformat/mxfdec.c                                      int ctx_size, enum MXFMetadataSetType type)
type             2254 libavformat/mxfdec.c         res = mxf_read_local_tags(mxf, &klv, read, ctx_size, type);
type             2476 libavformat/mxfdec.c         if (mxf->metadata_sets[i]->type == IndexTableSegment)
type             2503 libavformat/mxfdec.c     segment->type = IndexTableSegment;
type             2649 libavformat/mxfdec.c                 if ((ret = mxf_parse_klv(mxf, klv, metadata->read, metadata->ctx_size, metadata->type)) < 0)
type              431 libavformat/mxfenc.c static void mxf_write_uuid(AVIOContext *pb, enum MXFMetadataSetType type, int value)
type              434 libavformat/mxfenc.c     avio_wb16(pb, type);
type              438 libavformat/mxfenc.c static void mxf_write_umid(AVFormatContext *s, int type)
type              444 libavformat/mxfenc.c     avio_w8(s->pb, type);
type              547 libavformat/mxfenc.c static const MXFCodecUL *mxf_get_data_definition_ul(int type)
type              551 libavformat/mxfenc.c         if (type == uls->id)
type              701 libavformat/mxfenc.c static void mxf_write_track(AVFormatContext *s, AVStream *st, enum MXFMetadataSetType type)
type              713 libavformat/mxfenc.c     mxf_write_uuid(pb, type == MaterialPackage ? Track : Track + TypeBottom, st->index);
type              722 libavformat/mxfenc.c     if (type == MaterialPackage)
type              737 libavformat/mxfenc.c     mxf_write_uuid(pb, type == MaterialPackage ? Sequence: Sequence + TypeBottom, st->index);
type              761 libavformat/mxfenc.c static void mxf_write_sequence(AVFormatContext *s, AVStream *st, enum MXFMetadataSetType type)
type              772 libavformat/mxfenc.c     mxf_write_uuid(pb, type == MaterialPackage ? Sequence: Sequence + TypeBottom, st->index);
type              784 libavformat/mxfenc.c     if (type == SourcePackage)
type              789 libavformat/mxfenc.c static void mxf_write_timecode_component(AVFormatContext *s, AVStream *st, enum MXFMetadataSetType type)
type              799 libavformat/mxfenc.c     mxf_write_uuid(pb, type == MaterialPackage ? TimecodeComponent :
type              817 libavformat/mxfenc.c static void mxf_write_structural_component(AVFormatContext *s, AVStream *st, enum MXFMetadataSetType type)
type              828 libavformat/mxfenc.c     mxf_write_uuid(pb, type == MaterialPackage ? SourceClip: SourceClip + TypeBottom, st->index);
type              839 libavformat/mxfenc.c     if (type == SourcePackage) {
type              847 libavformat/mxfenc.c     if (type == SourcePackage)
type             1095 libavformat/mxfenc.c static void mxf_write_package(AVFormatContext *s, enum MXFMetadataSetType type)
type             1101 libavformat/mxfenc.c     if (type == MaterialPackage) {
type             1113 libavformat/mxfenc.c     mxf_write_uuid(pb, type, 0);
type             1114 libavformat/mxfenc.c     av_log(s,AV_LOG_DEBUG, "package type:%d\n", type);
type             1119 libavformat/mxfenc.c     mxf_write_umid(s, type == SourcePackage);
type             1133 libavformat/mxfenc.c     mxf_write_uuid(pb, type == MaterialPackage ? Track :
type             1136 libavformat/mxfenc.c         mxf_write_uuid(pb, type == MaterialPackage ? Track : Track + TypeBottom, i);
type             1139 libavformat/mxfenc.c     if (type == SourcePackage) {
type             1149 libavformat/mxfenc.c     mxf_write_track(s, mxf->timecode_track, type);
type             1150 libavformat/mxfenc.c     mxf_write_sequence(s, mxf->timecode_track, type);
type             1151 libavformat/mxfenc.c     mxf_write_timecode_component(s, mxf->timecode_track, type);
type             1155 libavformat/mxfenc.c         mxf_write_track(s, st, type);
type             1156 libavformat/mxfenc.c         mxf_write_sequence(s, st, type);
type             1157 libavformat/mxfenc.c         mxf_write_structural_component(s, st, type);
type             1159 libavformat/mxfenc.c         if (type == SourcePackage) {
type               45 libavformat/network.c static void openssl_lock(int mode, int type, const char *file, int line)
type               48 libavformat/network.c         pthread_mutex_lock(&openssl_mutexes[type]);
type               50 libavformat/network.c         pthread_mutex_unlock(&openssl_mutexes[type]);
type              241 libavformat/network.c int ff_socket(int af, int type, int proto)
type              246 libavformat/network.c     fd = socket(af, type | SOCK_CLOEXEC, proto);
type              250 libavformat/network.c         fd = socket(af, type, proto);
type              278 libavformat/network.h int ff_socket(int domain, int type, int protocol);
type              486 libavformat/nutdec.c     const char *type;
type              524 libavformat/nutdec.c             type = "UTF-8";
type              528 libavformat/nutdec.c             type = type_str;
type              531 libavformat/nutdec.c             type  = "s";
type              534 libavformat/nutdec.c             type  = "t";
type              537 libavformat/nutdec.c             type = "r";
type              540 libavformat/nutdec.c             type = "v";
type              548 libavformat/nutdec.c         if (!strcmp(type, "UTF-8")) {
type              686 libavformat/nutdec.c             int type   = x & 1;
type              689 libavformat/nutdec.c             if (type) {
type              473 libavformat/nutenc.c static int add_info(AVIOContext *bc, const char *type, const char *value)
type              475 libavformat/nutenc.c     put_str(bc, type);
type              848 libavformat/nutenc.c             if (   pkt->side_data[i].type == AV_PKT_DATA_METADATA_UPDATE
type              849 libavformat/nutenc.c                 || pkt->side_data[i].type == AV_PKT_DATA_STRINGS_METADATA) {
type              870 libavformat/nutenc.c             switch (pkt->side_data[i].type) {
type              875 libavformat/nutenc.c                 if (pkt->side_data[i].type == AV_PKT_DATA_PALETTE) {
type              877 libavformat/nutenc.c                 } else if(pkt->side_data[i].type == AV_PKT_DATA_NEW_EXTRADATA) {
type              879 libavformat/nutenc.c                 } else if(pkt->side_data[i].type == AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL) {
type              885 libavformat/nutenc.c                             pkt->side_data[i].type);
type              714 libavformat/rmdec.c     int type;
type              718 libavformat/rmdec.c     type = hdr >> 6;
type              720 libavformat/rmdec.c     if(type != 3){  // not frame as a part of packet
type              723 libavformat/rmdec.c     if(type != 1){  // not whole frame
type              733 libavformat/rmdec.c     if(type&1){     // frame, not slice
type              734 libavformat/rmdec.c         if(type == 3){  // frame as a part of packet
type              774 libavformat/rmdec.c     if(type == 2)
type              794 libavformat/rmdec.c     if (type == 2 || vst->videobufpos == vst->videobufsize) {
type              146 libavformat/rtmpcrypt.c                                 const uint8_t *clientdata, int type)
type              153 libavformat/rtmpcrypt.c     if (type) {
type              208 libavformat/rtmpcrypt.c                           int type)
type              213 libavformat/rtmpcrypt.c         if (type == 8) {
type              216 libavformat/rtmpcrypt.c         } else if (type == 9) {
type               48 libavformat/rtmpcrypt.h                                 const uint8_t *clientdata, int type);
type               59 libavformat/rtmpcrypt.h                           const uint8_t *digest, int type);
type              180 libavformat/rtmppkt.c     enum RTMPPacketType type;
type              200 libavformat/rtmppkt.c     type  = prev_pkt[channel_id].type;
type              219 libavformat/rtmppkt.c             type = buf[0];
type              239 libavformat/rtmppkt.c         if ((ret = ff_rtmp_packet_create(p, channel_id, type, timestamp,
type              252 libavformat/rtmppkt.c         p->type          = prev->type;
type              263 libavformat/rtmppkt.c     prev_pkt[channel_id].type       = type;
type              339 libavformat/rtmppkt.c         if (pkt->type == prev_pkt[pkt->channel_id].type &&
type              362 libavformat/rtmppkt.c             bytestream_put_byte(&p, pkt->type);
type              371 libavformat/rtmppkt.c     prev_pkt[pkt->channel_id].type       = pkt->type;
type              402 libavformat/rtmppkt.c int ff_rtmp_packet_create(RTMPPacket *pkt, int channel_id, RTMPPacketType type,
type              412 libavformat/rtmppkt.c     pkt->type       = type;
type              431 libavformat/rtmppkt.c     AMFDataType type;
type              437 libavformat/rtmppkt.c     switch ((type = *data++)) {
type              448 libavformat/rtmppkt.c         while (nb-- > 0 || type != AMF_DATA_TYPE_ARRAY) {
type              518 libavformat/rtmppkt.c static const char* rtmp_packet_type(int type)
type              520 libavformat/rtmppkt.c     switch (type) {
type              544 libavformat/rtmppkt.c     AMFDataType type;
type              549 libavformat/rtmppkt.c     switch ((type = *data++)) {
type              558 libavformat/rtmppkt.c         if (type == AMF_DATA_TYPE_STRING) {
type              577 libavformat/rtmppkt.c         while (nb-- > 0 || type != AMF_DATA_TYPE_ARRAY) {
type              612 libavformat/rtmppkt.c            rtmp_packet_type(p->type), p->type, p->channel_id, p->timestamp, p->extra, p->size);
type              613 libavformat/rtmppkt.c     if (p->type == RTMP_PT_INVOKE || p->type == RTMP_PT_NOTIFY) {
type              623 libavformat/rtmppkt.c     } else if (p->type == RTMP_PT_SERVER_BW){
type              625 libavformat/rtmppkt.c     } else if (p->type == RTMP_PT_CLIENT_BW){
type              627 libavformat/rtmppkt.c     } else if (p->type != RTMP_PT_AUDIO && p->type != RTMP_PT_VIDEO && p->type != RTMP_PT_METADATA) {
type              638 libavformat/rtmppkt.c     int amf_len, type;
type              643 libavformat/rtmppkt.c     type = *data++;
type              645 libavformat/rtmppkt.c     if (type != AMF_DATA_TYPE_LONG_STRING &&
type              646 libavformat/rtmppkt.c         type != AMF_DATA_TYPE_STRING)
type              649 libavformat/rtmppkt.c     if (type == AMF_DATA_TYPE_LONG_STRING) {
type               79 libavformat/rtmppkt.h     RTMPPacketType type;       ///< packet payload type
type               99 libavformat/rtmppkt.h int ff_rtmp_packet_create(RTMPPacket *pkt, int channel_id, RTMPPacketType type,
type              230 libavformat/rtmpproto.c     if (pkt->type == RTMP_PT_INVOKE && track) {
type              257 libavformat/rtmpproto.c     char type;
type              267 libavformat/rtmpproto.c         type = param[0];
type              270 libavformat/rtmpproto.c         type = param[1];
type              283 libavformat/rtmpproto.c     switch (type) {
type              418 libavformat/rtmpproto.c     if (pkt.type == RTMP_PT_CHUNK_SIZE) {
type             1230 libavformat/rtmpproto.c     int ret, type = 0;
type             1287 libavformat/rtmpproto.c             type = 1;
type             1321 libavformat/rtmpproto.c                                                    tosend + 1, type)) < 0)
type             2220 libavformat/rtmpproto.c     if (pkt->type == RTMP_PT_AUDIO) {
type             2222 libavformat/rtmpproto.c     } else if (pkt->type == RTMP_PT_VIDEO) {
type             2234 libavformat/rtmpproto.c     bytestream2_put_byte(&pbc, pkt->type);
type             2316 libavformat/rtmpproto.c     switch (pkt->type) {
type             2347 libavformat/rtmpproto.c         av_log(s, AV_LOG_VERBOSE, "Unknown packet type received 0x%02X\n", pkt->type);
type             2355 libavformat/rtmpproto.c     int ret, old_flv_size, type;
type             2375 libavformat/rtmpproto.c         type = bytestream_get_byte(&next);
type             2385 libavformat/rtmpproto.c         bytestream_put_byte(&p, type);
type             2479 libavformat/rtmpproto.c         if (rpkt.type == RTMP_PT_VIDEO || rpkt.type == RTMP_PT_AUDIO) {
type             2483 libavformat/rtmpproto.c         } else if (rpkt.type == RTMP_PT_NOTIFY) {
type             2487 libavformat/rtmpproto.c         } else if (rpkt.type == RTMP_PT_METADATA) {
type             3021 libavformat/rtmpproto.c             if (rt->out_pkt.type == RTMP_PT_NOTIFY) {
type              314 libavformat/rtpdec_h264.c     uint8_t type;
type              322 libavformat/rtpdec_h264.c     type = nal & 0x1f;
type              326 libavformat/rtpdec_h264.c     if (type >= 1 && type <= 23)
type              327 libavformat/rtpdec_h264.c         type = 1;
type              328 libavformat/rtpdec_h264.c     switch (type) {
type              352 libavformat/rtpdec_h264.c                type);
type              364 libavformat/rtpdec_h264.c         av_log(ctx, AV_LOG_ERROR, "Undefined type (%d)\n", type);
type               93 libavformat/rtpdec_jpeg.c static int jpeg_create_header(uint8_t *buf, int size, uint32_t type, uint32_t w,
type              164 libavformat/rtpdec_jpeg.c     bytestream2_put_byte(&pbc, (2 << 4) | (type ? 2 : 1)); /* hsample/vsample */
type              217 libavformat/rtpdec_jpeg.c     uint8_t type, q, width, height;
type              230 libavformat/rtpdec_jpeg.c     type   = AV_RB8(buf + 4);   /* id of jpeg decoder params */
type              237 libavformat/rtpdec_jpeg.c     if (type & 0x40) {
type              245 libavformat/rtpdec_jpeg.c         type &= ~0x40;
type              248 libavformat/rtpdec_jpeg.c     if (type > 63) {
type              253 libavformat/rtpdec_jpeg.c     if (type > 1) {
type              254 libavformat/rtpdec_jpeg.c         av_log(ctx, AV_LOG_ERROR, "Unimplemented RTP/JPEG type %d\n", type);
type              335 libavformat/rtpdec_jpeg.c         jpeg->hdr_size = jpeg_create_header(hdr, sizeof(hdr), type, width,
type               71 libavformat/rtpdec_mpeg4.c     uint16_t    type;
type              291 libavformat/rtpdec_mpeg4.c                 if (attr_names[i].type == ATTR_NAME_TYPE_INT) {
type              294 libavformat/rtpdec_mpeg4.c                 } else if (attr_names[i].type == ATTR_NAME_TYPE_STR)
type              156 libavformat/rtpdec_qdm2.c     unsigned int id, len, type, to_copy;
type              160 libavformat/rtpdec_qdm2.c     type     = *p++;
type              161 libavformat/rtpdec_qdm2.c     if (type & 0x80) {
type              164 libavformat/rtpdec_qdm2.c         type &= 0x7F;
type              168 libavformat/rtpdec_qdm2.c     if (end - p < len + (type == 0x7F) || id >= 0x80)
type              170 libavformat/rtpdec_qdm2.c     if (type == 0x7F)
type              171 libavformat/rtpdec_qdm2.c         type |= *p++ << 8;
type              112 libavformat/rtpenc_h264_hevc.c             uint8_t type = buf[0] & 0x1F;
type              117 libavformat/rtpenc_h264_hevc.c             s->buf[1] = type;
type               32 libavformat/rtpenc_jpeg.c     uint8_t type;
type               50 libavformat/rtpenc_jpeg.c         type = 0;
type               54 libavformat/rtpenc_jpeg.c         type = 1;
type              116 libavformat/rtpenc_jpeg.c         bytestream_put_byte(&p, type);
type               93 libavformat/rtpproto.c                                          int type, int family, int flags)
type              100 libavformat/rtpproto.c     hints.ai_socktype = type;
type               71 libavformat/sbgdec.c     char type; /* 0 for relative, 'N' for now, 'T' for absolute */
type               78 libavformat/sbgdec.c     char type; /* 'S' or 'B' */
type               85 libavformat/sbgdec.c     enum sbg_synth_type type;
type              145 libavformat/sbgdec.c     enum ws_interval_type type;
type              463 libavformat/sbgdec.c     char type = 0;
type              467 libavformat/sbgdec.c         type = 'N';
type              472 libavformat/sbgdec.c             type = 'T';
type              483 libavformat/sbgdec.c         rts->type = type;
type              528 libavformat/sbgdec.c     if (ts.type) {
type              531 libavformat/sbgdec.c         p->current_time.type = ts.type;
type              533 libavformat/sbgdec.c     } else if(!inblock && !p->current_time.type) {
type              538 libavformat/sbgdec.c     ts.type = p->current_time.type;
type              595 libavformat/sbgdec.c     def->type        = 'B';
type              630 libavformat/sbgdec.c     synth->type    = SBG_TYPE_SINE;
type              645 libavformat/sbgdec.c     synth->type    = SBG_TYPE_NOISE;
type              663 libavformat/sbgdec.c     synth->type    = SBG_TYPE_BELL;
type              677 libavformat/sbgdec.c     synth->type    = SBG_TYPE_MIX;
type              698 libavformat/sbgdec.c     synth->type    = SBG_TYPE_SPIN;
type              749 libavformat/sbgdec.c     def->type        = 'S';
type              893 libavformat/sbgdec.c         nb_rel += s->tseq[i].ts.type == 'N';
type              923 libavformat/sbgdec.c             if (s->tseq[i].ts.type == 'N') {
type              925 libavformat/sbgdec.c                 s->tseq[i].ts.type = 'T'; /* not necessary */
type              966 libavformat/sbgdec.c     if (def->type == 'B') {
type             1005 libavformat/sbgdec.c                         enum ws_interval_type type, uint32_t channels, int ref,
type             1014 libavformat/sbgdec.c         if (ri->type == type && ri->channels == channels &&
type             1028 libavformat/sbgdec.c     i->type     = type;
type             1077 libavformat/sbgdec.c     switch (s1->type) {
type             1139 libavformat/sbgdec.c                    "Type %d is not implemented\n", s1->type);
type             1182 libavformat/sbgdec.c     enum sbg_fade_type type = ev1->fade.slide | (ev1->fade.out & ev2->fade.in);
type             1203 libavformat/sbgdec.c                 if (s1mod.type == SBG_TYPE_NONE) {
type             1206 libavformat/sbgdec.c                 } else if (s2mod.type == SBG_TYPE_NONE) {
type             1211 libavformat/sbgdec.c             if (s1mod.type == s2mod.type &&
type             1212 libavformat/sbgdec.c                 s1mod.type != SBG_TYPE_BELL &&
type             1213 libavformat/sbgdec.c                 (type == SBG_FADE_ADAPT ||
type             1332 libavformat/sbgdec.c         edata_size += inter->inter[i].type == WS_SINE  ? 44 :
type             1333 libavformat/sbgdec.c                       inter->inter[i].type == WS_NOISE ? 32 : 0;
type             1347 libavformat/sbgdec.c         ADD_EDATA32(inter->inter[i].type);
type             1349 libavformat/sbgdec.c         switch (inter->inter[i].type) {
type               89 libavformat/sdp.c static int resolve_destination(char *dest_addr, int size, char *type,
type               95 libavformat/sdp.c     av_strlcpy(type, "IP4", type_size);
type              108 libavformat/sdp.c         av_strlcpy(type, "IP6", type_size);
type              115 libavformat/sdp.c static int resolve_destination(char *dest_addr, int size, char *type,
type              728 libavformat/sdp.c     const char *type;
type              734 libavformat/sdp.c         case AVMEDIA_TYPE_VIDEO   : type = "video"      ; break;
type              735 libavformat/sdp.c         case AVMEDIA_TYPE_AUDIO   : type = "audio"      ; break;
type              736 libavformat/sdp.c         case AVMEDIA_TYPE_SUBTITLE: type = "text"       ; break;
type              737 libavformat/sdp.c         default                 : type = "application"; break;
type              740 libavformat/sdp.c     av_strlcatf(buff, size, "m=%s %d RTP/AVP %d\r\n", type, port, payload_type);
type              536 libavformat/segment.c         enum AVMediaType type;
type              543 libavformat/segment.c             type = s->streams[i]->codec->codec_type;
type              544 libavformat/segment.c             if ((unsigned)type < AVMEDIA_TYPE_NB && type_index_map[type] == -1
type              547 libavformat/segment.c                 type_index_map[type] = i;
type              551 libavformat/segment.c             type = type_priority_list[i];
type              552 libavformat/segment.c             if ((seg->reference_stream_index = type_index_map[type]) >= 0)
type              204 libavformat/sierravmd.c             int type;
type              213 libavformat/sierravmd.c             type = chunk[0];
type              220 libavformat/sierravmd.c             if(!size && type != 1)
type              222 libavformat/sierravmd.c             switch(type) {
type               51 libavformat/sol.c static enum AVCodecID sol_codec_id(int magic, int type)
type               53 libavformat/sol.c     if (type & SOL_DPCM)
type               59 libavformat/sol.c     if (type & SOL_16BIT)
type               65 libavformat/sol.c static int sol_codec_type(int magic, int type)
type               68 libavformat/sol.c     if (type & SOL_DPCM)
type               70 libavformat/sol.c         if (type & SOL_16BIT) return 3;//SOL_DPCM_NEW16;
type               77 libavformat/sol.c static int sol_channels(int magic, int type)
type               79 libavformat/sol.c     if (magic == 0x0B8D || !(type & SOL_STEREO)) return 1;
type               87 libavformat/sol.c     unsigned int id, channels, rate, type;
type               97 libavformat/sol.c     type = avio_r8(pb);
type              102 libavformat/sol.c     codec = sol_codec_id(magic, type);
type              103 libavformat/sol.c     channels = sol_channels(magic, type);
type              106 libavformat/sol.c         id = sol_codec_type(magic, type);
type               32 libavformat/subtitles.c     r->type = FF_UTF_8;
type               36 libavformat/subtitles.c         r->type = FF_UTF16LE;
type               39 libavformat/subtitles.c         r->type = FF_UTF16BE;
type               48 libavformat/subtitles.c     if (s && (r->type == FF_UTF16LE || r->type == FF_UTF16BE))
type               71 libavformat/subtitles.c     if (r->type == FF_UTF16LE) {
type               73 libavformat/subtitles.c     } else if (r->type == FF_UTF16BE) {
type              374 libavformat/subtitles.c     tr.type = 0;
type               41 libavformat/subtitles.h     int type;
type               72 libavformat/takdec.c         enum TAKMetaDataType type;
type               75 libavformat/takdec.c         type = avio_r8(pb) & 0x7f;
type               78 libavformat/takdec.c         switch (type) {
type               96 libavformat/takdec.c                 av_log(s, AV_LOG_ERROR, "%d metadata block CRC error.\n", type);
type              142 libavformat/takdec.c         if (type == TAK_METADATA_STREAMINFO) {
type              158 libavformat/takdec.c         } else if (type == TAK_METADATA_LAST_FRAME) {
type              165 libavformat/takdec.c         } else if (type == TAK_METADATA_ENCODER) {
type              235 libavformat/udp.c                                          int type, int family, int flags)
type              249 libavformat/udp.c     hints.ai_socktype = type;
type               30 libavformat/uncodedframecrcenc.c #define DEFINE_CKSUM_LINE(name, type, conv) \
type               33 libavformat/uncodedframecrcenc.c     type *p = data; \
type              127 libavformat/uncodedframecrcenc.c     enum AVMediaType type;
type              136 libavformat/uncodedframecrcenc.c     type = s->streams[stream_index]->codec->codec_type;
type              137 libavformat/uncodedframecrcenc.c     type_name = av_get_media_type_string(type);
type              139 libavformat/uncodedframecrcenc.c     switch (type) {
type               41 libavformat/unix.c     int type;
type               50 libavformat/unix.c     { "type",      "Socket type",                           OFFSET(type),    AV_OPT_TYPE_INT,   { .i64 = SOCK_STREAM },    INT_MIN, INT_MAX, ED, "type" },
type               73 libavformat/unix.c     if ((fd = ff_socket(AF_UNIX, s->type, 0)) < 0)
type              270 libavformat/utils.c         enum AVMediaType type;
type              297 libavformat/utils.c                 st->codec->codec_type = fmt_id_type[i].type;
type             1428 libavformat/utils.c                 if (av_packet_get_side_data(pkt, src_sd->type, NULL))
type             1431 libavformat/utils.c                 dst_data = av_packet_new_side_data(pkt, src_sd->type, src_sd->size);
type             3480 libavformat/utils.c int av_find_best_stream(AVFormatContext *ic, enum AVMediaType type,
type             3500 libavformat/utils.c         if (avctx->codec_type != type)
type             3508 libavformat/utils.c         if (type == AVMEDIA_TYPE_AUDIO && !avctx->channels)
type             4221 libavformat/utils.c         enum AVMediaType type;
type             4224 libavformat/utils.c         case 'v': type = AVMEDIA_TYPE_VIDEO;      break;
type             4225 libavformat/utils.c         case 'a': type = AVMEDIA_TYPE_AUDIO;      break;
type             4226 libavformat/utils.c         case 's': type = AVMEDIA_TYPE_SUBTITLE;   break;
type             4227 libavformat/utils.c         case 'd': type = AVMEDIA_TYPE_DATA;       break;
type             4228 libavformat/utils.c         case 't': type = AVMEDIA_TYPE_ATTACHMENT; break;
type             4231 libavformat/utils.c         if (type != st->codec->codec_type)
type             4236 libavformat/utils.c                 if (s->streams[i]->codec->codec_type == type && index-- == 0)
type             4436 libavformat/utils.c uint8_t *av_stream_get_side_data(AVStream *st, enum AVPacketSideDataType type,
type             4442 libavformat/utils.c         if (st->side_data[i].type == type) {
type             4451 libavformat/utils.c uint8_t *ff_stream_new_side_data(AVStream *st, enum AVPacketSideDataType type,
type             4464 libavformat/utils.c         if (sd->type == type) {
type             4482 libavformat/utils.c     sd->type = type;
type               36 libavformat/vivo.c     int type;
type               87 libavformat/vivo.c     vivo->type     = c >> 4;
type               90 libavformat/vivo.c     switch (vivo->type) {
type               97 libavformat/vivo.c         av_log(s, AV_LOG_ERROR, "unknown packet type %d\n", vivo->type);
type              141 libavformat/vivo.c         if (vivo->sequence || vivo->type)
type              248 libavformat/vivo.c     unsigned old_sequence = vivo->sequence, old_type = vivo->type;
type              256 libavformat/vivo.c     switch (vivo->type) {
type              271 libavformat/vivo.c         av_log(s, AV_LOG_ERROR, "unknown packet type %d\n", vivo->type);
type              283 libavformat/vivo.c            (((vivo->type - 1) >> 1) == ((old_type - 1) >> 1))) {
type               70 libavformat/vocdec.c     VocType type;
type               85 libavformat/vocdec.c         type = avio_r8(pb);
type               86 libavformat/vocdec.c         if (type == VOC_TYPE_EOF)
type               96 libavformat/vocdec.c         switch (type) {
type              149 libavformat/webvttdec.c #define SET_SIDE_DATA(name, type) do {                                  \
type              151 libavformat/webvttdec.c         uint8_t *buf = av_packet_new_side_data(sub, type, name##_len);  \
type              467 libavformat/wtvdec.c static void get_tag(AVFormatContext *s, AVIOContext *pb, const char *key, int type, int length)
type              482 libavformat/wtvdec.c     if (type == 0 && length == 4) {
type              484 libavformat/wtvdec.c     } else if (type == 1) {
type              490 libavformat/wtvdec.c     } else if (type == 3 && length == 4) {
type              492 libavformat/wtvdec.c     } else if (type == 4 && length == 8) {
type              515 libavformat/wtvdec.c     } else if (type == 5 && length == 2) {
type              517 libavformat/wtvdec.c     } else if (type == 6 && length == 16) {
type              521 libavformat/wtvdec.c     } else if (type == 2 && !strcmp(key, "WM/Picture")) {
type              527 libavformat/wtvdec.c         av_log(s, AV_LOG_WARNING, "unsupported metadata entry; key:%s, type:%d, length:0x%x\n", key, type, length);
type              542 libavformat/wtvdec.c     int length, type;
type              546 libavformat/wtvdec.c         type   = avio_rl32(pb);
type              556 libavformat/wtvdec.c         get_tag(s, pb, key, type, length);
type              639 libavformat/wtvenc.c static void write_metadata_header(AVIOContext *pb, int type, const char *key, int value_size)
type              642 libavformat/wtvenc.c     avio_wl32(pb, type);
type              675 libavresample/audio_mix.c #define CONVERT_MATRIX(type, expr)                                          \
type              676 libavresample/audio_mix.c     am->matrix_## type[0] = av_mallocz(am->out_matrix_channels *            \
type              678 libavresample/audio_mix.c                                        sizeof(*am->matrix_## type[0]));     \
type              679 libavresample/audio_mix.c     if (!am->matrix_## type[0])                                             \
type              685 libavresample/audio_mix.c             am->matrix_## type[o0] = am->matrix_## type[o0 - 1] +           \
type              692 libavresample/audio_mix.c             am->matrix_## type[o0][i0] = expr;                              \
type              697 libavresample/audio_mix.c     am->matrix = (void **)am->matrix_## type;
type               40 libavresample/avresample-test.c #define PUT_FUNC(name, fmt, type, expr)                                     \
type               45 libavresample/avresample-test.c     type v = expr;                                                          \
type               46 libavresample/avresample-test.c     type **out = (type **)data;                                             \
type               69 libavutil/common.h #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
type              337 libavutil/cpu.c static void print_cpu_flags(int cpu_flags, const char *type)
type              341 libavutil/cpu.c     printf("cpu_flags(%s) = 0x%08X\n", type, cpu_flags);
type              342 libavutil/cpu.c     printf("cpu_flags_str(%s) =", type);
type              152 libavutil/eval.c     } type;
type              171 libavutil/eval.c     switch (e->type) {
type              285 libavutil/eval.c             switch (e->type) {
type              334 libavutil/eval.c         d->type = e_value;
type              345 libavutil/eval.c             d->type = e_const;
type              354 libavutil/eval.c             d->type = e_value;
type              401 libavutil/eval.c     d->type = e_func0;
type              415 libavutil/eval.c     else if (strmatch(next, "squish")) d->type = e_squish;
type              416 libavutil/eval.c     else if (strmatch(next, "gauss" )) d->type = e_gauss;
type              417 libavutil/eval.c     else if (strmatch(next, "mod"   )) d->type = e_mod;
type              418 libavutil/eval.c     else if (strmatch(next, "max"   )) d->type = e_max;
type              419 libavutil/eval.c     else if (strmatch(next, "min"   )) d->type = e_min;
type              420 libavutil/eval.c     else if (strmatch(next, "eq"    )) d->type = e_eq;
type              421 libavutil/eval.c     else if (strmatch(next, "gte"   )) d->type = e_gte;
type              422 libavutil/eval.c     else if (strmatch(next, "gt"    )) d->type = e_gt;
type              423 libavutil/eval.c     else if (strmatch(next, "lte"   )) d->type = e_lte;
type              424 libavutil/eval.c     else if (strmatch(next, "lt"    )) d->type = e_lt;
type              425 libavutil/eval.c     else if (strmatch(next, "ld"    )) d->type = e_ld;
type              426 libavutil/eval.c     else if (strmatch(next, "isnan" )) d->type = e_isnan;
type              427 libavutil/eval.c     else if (strmatch(next, "isinf" )) d->type = e_isinf;
type              428 libavutil/eval.c     else if (strmatch(next, "st"    )) d->type = e_st;
type              429 libavutil/eval.c     else if (strmatch(next, "while" )) d->type = e_while;
type              430 libavutil/eval.c     else if (strmatch(next, "taylor")) d->type = e_taylor;
type              431 libavutil/eval.c     else if (strmatch(next, "root"  )) d->type = e_root;
type              432 libavutil/eval.c     else if (strmatch(next, "floor" )) d->type = e_floor;
type              433 libavutil/eval.c     else if (strmatch(next, "ceil"  )) d->type = e_ceil;
type              434 libavutil/eval.c     else if (strmatch(next, "trunc" )) d->type = e_trunc;
type              435 libavutil/eval.c     else if (strmatch(next, "sqrt"  )) d->type = e_sqrt;
type              436 libavutil/eval.c     else if (strmatch(next, "not"   )) d->type = e_not;
type              437 libavutil/eval.c     else if (strmatch(next, "pow"   )) d->type = e_pow;
type              438 libavutil/eval.c     else if (strmatch(next, "print" )) d->type = e_print;
type              439 libavutil/eval.c     else if (strmatch(next, "random")) d->type = e_random;
type              440 libavutil/eval.c     else if (strmatch(next, "hypot" )) d->type = e_hypot;
type              441 libavutil/eval.c     else if (strmatch(next, "gcd"   )) d->type = e_gcd;
type              442 libavutil/eval.c     else if (strmatch(next, "if"    )) d->type = e_if;
type              443 libavutil/eval.c     else if (strmatch(next, "ifnot" )) d->type = e_ifnot;
type              444 libavutil/eval.c     else if (strmatch(next, "bitand")) d->type = e_bitand;
type              445 libavutil/eval.c     else if (strmatch(next, "bitor" )) d->type = e_bitor;
type              446 libavutil/eval.c     else if (strmatch(next, "between"))d->type = e_between;
type              447 libavutil/eval.c     else if (strmatch(next, "clip"  )) d->type = e_clip;
type              452 libavutil/eval.c                 d->type = e_func1;
type              461 libavutil/eval.c                 d->type = e_func2;
type              476 libavutil/eval.c static AVExpr *make_eval_expr(int type, int value, AVExpr *p0, AVExpr *p1)
type              481 libavutil/eval.c     e->type     =type   ;
type              618 libavutil/eval.c     switch (e->type) {
type               62 libavutil/frame.c int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type)
type               65 libavutil/frame.c     *type   = f->qscale_type;
type              478 libavutil/frame.c     dst->type                   = src->type;
type              505 libavutil/frame.c         if (   sd_src->type == AV_FRAME_DATA_PANSCAN
type              508 libavutil/frame.c         sd_dst = av_frame_new_side_data(dst, sd_src->type,
type              565 libavutil/frame.c                                         enum AVFrameSideDataType type,
type              590 libavutil/frame.c     ret->type = type;
type              598 libavutil/frame.c                                         enum AVFrameSideDataType type)
type              603 libavutil/frame.c         if (frame->side_data[i]->type == type)
type              668 libavutil/frame.c void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type)
type              674 libavutil/frame.c         if (sd->type == type) {
type              682 libavutil/frame.c const char *av_frame_side_data_name(enum AVFrameSideDataType type)
type              684 libavutil/frame.c     switch(type) {
type              128 libavutil/frame.h     enum AVFrameSideDataType type;
type              347 libavutil/frame.h     int type;
type              599 libavutil/frame.h int8_t *av_frame_get_qp_table(AVFrame *f, int *stride, int *type);
type              600 libavutil/frame.h int av_frame_set_qp_table(AVFrame *f, AVBufferRef *buf, int stride, int type);
type              754 libavutil/frame.h                                         enum AVFrameSideDataType type,
type              762 libavutil/frame.h                                         enum AVFrameSideDataType type);
type              768 libavutil/frame.h void av_frame_remove_side_data(AVFrame *frame, enum AVFrameSideDataType type);
type              773 libavutil/frame.h const char *av_frame_side_data_name(enum AVFrameSideDataType type);
type               58 libavutil/hash.c     enum hashtype type;
type               92 libavutil/hash.c     return hashdesc[ctx->type].name;
type               97 libavutil/hash.c     return hashdesc[ctx->type].size;
type              111 libavutil/hash.c     res->type = i;
type              139 libavutil/hash.c     switch (ctx->type) {
type              160 libavutil/hash.c     switch (ctx->type) {
type              181 libavutil/hash.c     switch (ctx->type) {
type               61 libavutil/hmac.c AVHMAC *av_hmac_alloc(enum AVHMACType type)
type               66 libavutil/hmac.c     switch (type) {
type               47 libavutil/hmac.h AVHMAC *av_hmac_alloc(enum AVHMACType type);
type               86 libavutil/internal.h #define MAKE_ACCESSORS(str, name, type, field) \
type               87 libavutil/internal.h     type av_##name##_get_##field(const str *s) { return s->field; } \
type               88 libavutil/internal.h     void av_##name##_set_##field(str *s, type v) { s->field = v; }
type              201 libavutil/internal.h #   define FF_SYMVER(type, name, args, ver)                     \
type              202 libavutil/internal.h     type ff_##name args __asm__ (EXTERN_PREFIX #name "@" ver);  \
type              203 libavutil/internal.h     type ff_##name args
type              205 libavutil/internal.h #   define FF_SYMVER(type, name, args, ver)                             \
type              207 libavutil/internal.h     type ff_##name args;                                                \
type              208 libavutil/internal.h     type ff_##name args
type              240 libavutil/log.c                         AVBPrint part[4], int *print_prefix, int type[2])
type              248 libavutil/log.c     if(type) type[0] = type[1] = AV_CLASS_CATEGORY_NA + 16;
type              256 libavutil/log.c                 if(type) type[0] = get_category(parent);
type              261 libavutil/log.c         if(type) type[1] = get_category(avcl);
type              292 libavutil/log.c     int type[2];
type              306 libavutil/log.c     format_line(ptr, level, fmt, vl, part, &print_prefix, type);
type              327 libavutil/log.c     colored_fputs(type[0], 0, part[0].str);
type              329 libavutil/log.c     colored_fputs(type[1], 0, part[1].str);
type               66 libavutil/opt.c     switch (o->type) {
type               86 libavutil/opt.c     if (o->type != AV_OPT_TYPE_FLAGS &&
type               92 libavutil/opt.c     if (o->type == AV_OPT_TYPE_FLAGS) {
type              102 libavutil/opt.c     switch (o->type) {
type              170 libavutil/opt.c #define DEFAULT_NUMVAL(opt) ((opt->type == AV_OPT_TYPE_INT64 || \
type              171 libavutil/opt.c                               opt->type == AV_OPT_TYPE_CONST || \
type              172 libavutil/opt.c                               opt->type == AV_OPT_TYPE_FLAGS || \
type              173 libavutil/opt.c                               opt->type == AV_OPT_TYPE_INT) ? \
type              195 libavutil/opt.c         if (o->type == AV_OPT_TYPE_FLAGS) {
type              209 libavutil/opt.c             if (o_named && o_named->type == AV_OPT_TYPE_CONST)
type              214 libavutil/opt.c                         if (o_named->type == AV_OPT_TYPE_CONST &&
type              247 libavutil/opt.c         if (o->type == AV_OPT_TYPE_FLAGS) {
type              375 libavutil/opt.c     if (!val && (o->type != AV_OPT_TYPE_STRING &&
type              376 libavutil/opt.c                  o->type != AV_OPT_TYPE_PIXEL_FMT && o->type != AV_OPT_TYPE_SAMPLE_FMT &&
type              377 libavutil/opt.c                  o->type != AV_OPT_TYPE_IMAGE_SIZE && o->type != AV_OPT_TYPE_VIDEO_RATE &&
type              378 libavutil/opt.c                  o->type != AV_OPT_TYPE_DURATION && o->type != AV_OPT_TYPE_COLOR &&
type              379 libavutil/opt.c                  o->type != AV_OPT_TYPE_CHANNEL_LAYOUT))
type              386 libavutil/opt.c     switch (o->type) {
type              436 libavutil/opt.c         if (!o || o->type != opttype || o->flags & AV_OPT_FLAG_READONLY)\
type              516 libavutil/opt.c     if (o->type != AV_OPT_TYPE_BINARY || o->flags & AV_OPT_FLAG_READONLY)
type              542 libavutil/opt.c     if (o->type != AV_OPT_TYPE_IMAGE_SIZE) {
type              564 libavutil/opt.c     if (o->type != AV_OPT_TYPE_VIDEO_RATE) {
type              575 libavutil/opt.c                       enum AVOptionType type, const char *desc, int nb_fmts)
type              584 libavutil/opt.c     if (o->type != type) {
type              620 libavutil/opt.c     if (o->type != AV_OPT_TYPE_CHANNEL_LAYOUT) {
type              643 libavutil/opt.c     if (o->type != AV_OPT_TYPE_STRING && (!buf || !buf_len))
type              649 libavutil/opt.c     switch (o->type) {
type              696 libavutil/opt.c     if (!o || !target_obj || (o->offset<=0 && o->type != AV_OPT_TYPE_CONST))
type              702 libavutil/opt.c     switch (o->type) {
type              868 libavutil/opt.c     if (o->type != AV_OPT_TYPE_IMAGE_SIZE) {
type              897 libavutil/opt.c                       enum AVOptionType type, const char *desc)
type              903 libavutil/opt.c     if (o->type != type) {
type              930 libavutil/opt.c     if (o->type != AV_OPT_TYPE_CHANNEL_LAYOUT) {
type              949 libavutil/opt.c     if (o->type != AV_OPT_TYPE_DICT)
type              965 libavutil/opt.c     if (!field || !flag || flag->type != AV_OPT_TYPE_CONST ||
type             1019 libavutil/opt.c         if (!unit && opt->type==AV_OPT_TYPE_CONST)
type             1021 libavutil/opt.c         else if (unit && opt->type!=AV_OPT_TYPE_CONST)
type             1023 libavutil/opt.c         else if (unit && opt->type==AV_OPT_TYPE_CONST && strcmp(unit, opt->unit))
type             1025 libavutil/opt.c         else if (unit && opt->type == AV_OPT_TYPE_CONST)
type             1032 libavutil/opt.c         switch (opt->type) {
type             1096 libavutil/opt.c             switch (opt->type) {
type             1114 libavutil/opt.c         if (opt->type != AV_OPT_TYPE_CONST  &&
type             1115 libavutil/opt.c             opt->type != AV_OPT_TYPE_BINARY &&
type             1116 libavutil/opt.c                 !((opt->type == AV_OPT_TYPE_COLOR      ||
type             1117 libavutil/opt.c                    opt->type == AV_OPT_TYPE_IMAGE_SIZE ||
type             1118 libavutil/opt.c                    opt->type == AV_OPT_TYPE_STRING     ||
type             1119 libavutil/opt.c                    opt->type == AV_OPT_TYPE_VIDEO_RATE) &&
type             1122 libavutil/opt.c             switch (opt->type) {
type             1159 libavutil/opt.c         if (opt->unit && opt->type != AV_OPT_TYPE_CONST) {
type             1197 libavutil/opt.c         switch (opt->type) {
type             1246 libavutil/opt.c                 av_log(s, AV_LOG_DEBUG, "AVOption type %d of option %s not implemented yet\n", opt->type, opt->name);
type             1438 libavutil/opt.c         switch (o->type) {
type             1519 libavutil/opt.c             ((!unit && o->type != AV_OPT_TYPE_CONST) ||
type             1520 libavutil/opt.c              (unit  && o->type == AV_OPT_TYPE_CONST && o->unit && !strcmp(o->unit, unit)))) {
type             1556 libavutil/opt.c static int opt_size(enum AVOptionType type)
type             1558 libavutil/opt.c     switch(type) {
type             1597 libavutil/opt.c         if (o->type == AV_OPT_TYPE_STRING) {
type             1603 libavutil/opt.c         } else if (o->type == AV_OPT_TYPE_BINARY) {
type             1613 libavutil/opt.c         } else if (o->type == AV_OPT_TYPE_CONST) {
type             1615 libavutil/opt.c         } else if (o->type == AV_OPT_TYPE_DICT) {
type             1625 libavutil/opt.c             memcpy(field_dst, field_src, opt_size(o->type));
type             1675 libavutil/opt.c     switch (field->type) {
type             1756 libavutil/opt.c     switch (o->type) {
type             1830 libavutil/opt.c         av_log(obj, AV_LOG_WARNING, "Not supported option type: %d, option name: %s\n", o->type, o->name);
type             1870 libavutil/opt.c         if (o->type == AV_OPT_TYPE_CONST)
type              269 libavutil/opt.h     enum AVOptionType type;
type               30 libavutil/qsort.h #define AV_QSORT(p, num, type, cmp) {\
type               36 libavutil/qsort.h         type *start= stack[--sp][0];\
type               37 libavutil/qsort.h         type *end  = stack[  sp][1];\
type               41 libavutil/qsort.h                 type *right = end-2;\
type               42 libavutil/qsort.h                 type *left  = start+1;\
type               43 libavutil/qsort.h                 type *mid = start + ((end-start)>>1);\
type               45 libavutil/qsort.h                     if(cmp(  end, mid) > 0) FFSWAP(type, *start, *mid);\
type               46 libavutil/qsort.h                     else                    FFSWAP(type, *start, *end);\
type               48 libavutil/qsort.h                     if(cmp(start, mid) > 0) FFSWAP(type, *start, *mid);\
type               52 libavutil/qsort.h                     FFSWAP(type, *mid, *end);\
type               56 libavutil/qsort.h                 FFSWAP(type, end[-1], *mid);\
type               63 libavutil/qsort.h                         FFSWAP(type, *left, *right);\
type               68 libavutil/qsort.h                 FFSWAP(type, end[-1], *left);\
type               87 libavutil/qsort.h                     FFSWAP(type, *start, *end);\
type              100 libavutil/qsort.h #define AV_MSORT(p, tmp, num, type, cmp) {\
type              115 libavutil/qsort.h         FFSWAP(type*, p, tmp);\
type              127 libavutil/stereo3d.h     enum AVStereo3DType type;
type              105 libavutil/utils.c #define LIST_LENGTH(type) \
type              106 libavutil/utils.c     { type t = term, *l = (type *)list; for (i = 0; l[i] != t; i++); }
type               20 libswresample/noise_shaping_data.c   enum {fir, iir} type;
type               36 libswresample/soxr_resample.c     soxr_datatype_t type =
type               46 libswresample/soxr_resample.c     soxr_io_spec_t io_spec = soxr_io_spec(type, type);
type               24 libswresample/x86/rematrix_init.c #define D(type, simd) \
type               25 libswresample/x86/rematrix_init.c mix_1_1_func_type ff_mix_1_1_a_## type ## _ ## simd;\
type               26 libswresample/x86/rematrix_init.c mix_2_1_func_type ff_mix_2_1_a_## type ## _ ## simd;
type               31 libswresample/x86/resample_init.c #define RESAMPLE_FUNCS(type, opt) \
type               32 libswresample/x86/resample_init.c int ff_resample_common_##type##_##opt(ResampleContext *c, void *dst, \
type               34 libswresample/x86/resample_init.c int ff_resample_linear_##type##_##opt(ResampleContext *c, void *dst, \
type               37 tests/tiny_ssim.c #define FFSWAP(type,a,b) do{type SWAP_tmp= b; b= a; a= SWAP_tmp;}while(0)
type               90 tests/tiny_ssim.c     type fs1 = s1;
type               91 tests/tiny_ssim.c     type fs2 = s2;
type               92 tests/tiny_ssim.c     type fss = ss;
type               93 tests/tiny_ssim.c     type fs12 = s12;
type               94 tests/tiny_ssim.c     type vars = fss*64 - fs1*fs1 - fs2*fs2;
type               95 tests/tiny_ssim.c     type covar = fs12*64 - fs1*fs2;
type               90 tools/crypto_bench.c #define DEFINE_LAVU_MD(suffix, type, namespace, hsize)                       \
type               94 tools/crypto_bench.c     static struct type *h;                                                   \
type               42 tools/enum_options.c     switch (o->type) {
type               72 tools/enum_options.c             if (u->type == FF_OPT_TYPE_CONST && u->unit && !strcmp(u->unit, o->unit))
type               84 tools/enum_options.c         if (o->type != FF_OPT_TYPE_CONST)
type               84 tools/graph2dot.c                 if (link->type == AVMEDIA_TYPE_VIDEO) {
type               91 tools/graph2dot.c                 } else if (link->type == AVMEDIA_TYPE_AUDIO) {
type              196 tools/ismindex.c         const char *type    = track->is_video ? "video" : "audio";
type              207 tools/ismindex.c                      dirname, type, track->offsets[j].time);
type              638 tools/ismindex.c         const char *type    = track->is_video ? "video" : "audio";
type              640 tools/ismindex.c                 type, path_prefix, track->name, track->bitrate);
type              643 tools/ismindex.c         fprintf(out, "\t\t\t</%s>\n", type);
type              652 tools/ismindex.c                                const char *type)
type              664 tools/ismindex.c                             type, i, track->name, main, tracks->tracks[j]->name, j);
type              670 tools/ismindex.c                                 type, i, track->name, main, tracks->tracks[j]->name, j);
type               38 tools/probetest.c static void probe(AVProbeData *pd, int type, int p, int size)
type               57 tools/probetest.c                         fmt->name, score, type, p, size);
type               94 tools/probetest.c     unsigned int p, i, type, size, retry;
type              148 tools/probetest.c             for (type = 0; type < 4; type++) {
type              152 tools/probetest.c                     switch (type) {
type              195 tools/probetest.c                     probe(&pd, type, p, size);
type               20 tools/uncoded_frame.c     enum AVMediaType type = avfilter_pad_get_type(f->output_pads, idx);
type               24 tools/uncoded_frame.c     switch (type) {
type              166 tools/uncoded_frame.c         st->stream->codec->codec_type = st->link->type;
type              169 tools/uncoded_frame.c         switch (st->link->type) {