• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/

Lines Matching refs:picture

382  * Deallocate a picture.
560 memcpy(s->picture, s1->picture, s1->picture_count * sizeof(Picture));
807 FF_ALLOCZ_OR_GOTO(s->avctx, s->picture,
810 avcodec_get_frame_defaults((AVFrame *) &s->picture[i]);
989 if (s->picture && !s->avctx->internal->is_copy) {
991 free_picture(s, &s->picture[i]);
994 av_freep(&s->picture);
1106 if (s->picture[i].f.data[0] && !s->picture[i].f.reference &&
1107 (!s->picture[i].owner2 || s->picture[i].owner2 == s) &&
1108 (remove_current || &s->picture[i] != s->current_picture_ptr)
1109 /* && s->picture[i].type!= FF_BUFFER_TYPE_SHARED */) {
1110 free_frame_buffer(s, &s->picture[i]);
1121 if (s->picture[i].f.data[0] == NULL && s->picture[i].f.type == 0)
1126 if (s->picture[i].f.data[0] == NULL && s->picture[i].f.type != 0)
1130 if (s->picture[i].f.data[0] == NULL)
1185 if (s->picture[i].owner2 == s && s->picture[i].f.data[0] &&
1186 &s->picture[i] != s->last_picture_ptr &&
1187 &s->picture[i] != s->next_picture_ptr &&
1188 s->picture[i].f.reference) {
1191 "releasing zombie picture\n");
1192 free_frame_buffer(s, &s->picture[i]);
1208 pic = &s->picture[i];
1267 "allocate dummy last picture for field based first keyframe\n");
1271 s->last_picture_ptr = &s->picture[i];
1284 s->next_picture_ptr = &s->picture[i];
1392 if (s->picture[i].f.data[0] == s->current_picture.f.data[0]) {
1393 s->picture[i] = s->current_picture;
1403 if (s->picture[i].f.data[0] && !s->picture[i].f.reference
1404 /* && s->picture[i].type != FF_BUFFER_TYPE_SHARED */) {
1405 free_frame_buffer(s, &s->picture[i]);
1511 * Print debugging info for the given picture.
1952 // FIXME use this for field pix too instead of the obnoxious hack which changes picture.f.data
2041 * @param ref_picture array[3] of pointers to the 3 planes of the reference picture
2639 if(s==NULL || s->picture==NULL)
2643 if (s->picture[i].f.data[0] &&
2644 (s->picture[i].f.type == FF_BUFFER_TYPE_INTERNAL ||
2645 s->picture[i].f.type == FF_BUFFER_TYPE_USER))
2646 free_frame_buffer(s, &s->picture[i]);