Lines Matching refs:mv
125 MvContext *mv = avctx->priv_data;
128 mv->nb_video_tracks = var_read_int(pb, size);
130 mv->nb_audio_tracks = var_read_int(pb, size);
149 MvContext *mv = avctx->priv_data;
154 mv->aformat = var_read_int(pb, size);
156 mv->acompression = var_read_int(pb, size);
293 MvContext *mv = avctx->priv_data;
413 if (mv->nb_audio_tracks < 0 || mv->nb_video_tracks < 0 ||
414 (mv->nb_audio_tracks == 0 && mv->nb_video_tracks == 0)) {
419 if (mv->nb_audio_tracks > 1) {
422 } else if (mv->nb_audio_tracks) {
429 if (mv->acompression == 100 &&
430 mv->aformat == AUDIO_FORMAT_SIGNED &&
436 mv->acompression, mv->aformat,
446 if (mv->nb_video_tracks > 1) {
449 } else if (mv->nb_video_tracks) {
458 if (mv->nb_audio_tracks)
461 if (mv->nb_video_tracks)
473 MvContext *mv = avctx->priv_data;
475 AVStream *st = avctx->streams[mv->stream_index];
478 int frame = mv->frame[mv->stream_index];
498 pkt->stream_index = mv->stream_index;
502 mv->frame[mv->stream_index]++;
503 mv->eof_count = 0;
505 mv->eof_count++;
506 if (mv->eof_count >= avctx->nb_streams)
513 mv->stream_index++;
514 if (mv->stream_index >= avctx->nb_streams)
515 mv->stream_index = 0;
523 MvContext *mv = avctx->priv_data;
538 mv->frame[i] = frame;
543 .name = "mv",