Lines Matching defs:data

153 /* Common struct for handling all types of decoded data and allocated render buffers. */
434 /* XXX: should duplicate packet data in DV case */
649 if (got_frame && !d->pkt->data) {
652 ret = got_frame ? 0 : (d->pkt->data ? AVERROR(EAGAIN) : AVERROR_EOF);
911 sws_scale(*img_convert_ctx, (const uint8_t * const *)frame->data, frame->linesize,
922 ret = SDL_UpdateYUVTexture(*tex, NULL, frame->data[0], frame->linesize[0],
923 frame->data[1], frame->linesize[1],
924 frame->data[2], frame->linesize[2]);
926 ret = SDL_UpdateYUVTexture(*tex, NULL, frame->data[0] + frame->linesize[0] * (frame->height - 1), -frame->linesize[0],
927 frame->data[1] + frame->linesize[1] * (AV_CEIL_RSHIFT(frame->height, 1) - 1), -frame->linesize[1],
928 frame->data[2] + frame->linesize[2] * (AV_CEIL_RSHIFT(frame->height, 1) - 1), -frame->linesize[2]);
936 ret = SDL_UpdateTexture(*tex, NULL, frame->data[0] + frame->linesize[0] * (frame->height - 1), -frame->linesize[0]);
938 ret = SDL_UpdateTexture(*tex, NULL, frame->data[0], frame->linesize[0]);
1001 sws_scale(is->sub_convert_ctx, (const uint8_t * const *)sub_rect->data, sub_rect->linesize,
1153 FFTSample *data[2];
1158 data[ch] = s->rdft_data + 2 * nb_freq * ch;
1162 data[ch][x] = s->sample_array[i] * (1.0 - w * w);
1167 av_rdft_calc(s->rdft, data[ch]);
1176 int a = sqrt(w * sqrt(data[0][2 * y + 0] * data[0][2 * y + 0] + data[0][2 * y + 1] * data[0][2 * y + 1]));
1177 int b = (nb_display_channels == 2 ) ? sqrt(w * hypot(data[1][2 * y + 0], data[1][2 * y + 1]))
2411 is->audio_buf = af->frame->data[0];