# HG changeset patch # User rfelker # Date 1071129177 0 # Node ID 6fc547235443d19f29e9b20a1affabed881bd7f5 # Parent 7737584af47ae05e5ee1678de4a7883ed34b799d simplified frame decision logic and reduced the occurrance of length=1 frames in output. this will make it easier for the caller to do timing or framerate regulation. diff -r 7737584af47a -r 6fc547235443 libmpcodecs/pullup.c --- a/libmpcodecs/pullup.c Thu Dec 11 05:07:47 2003 +0000 +++ b/libmpcodecs/pullup.c Thu Dec 11 07:52:57 2003 +0000 @@ -215,6 +215,7 @@ struct pullup_buffer *pullup_lock_buffer(struct pullup_buffer *b, int parity) { + if (!b) return 0; if (parity+1 & 1) b->lock[0]++; if (parity+1 & 2) b->lock[1]++; return b; @@ -222,6 +223,7 @@ void pullup_release_buffer(struct pullup_buffer *b, int parity) { + if (!b) return; if (parity+1 & 1) b->lock[0]--; if (parity+1 & 2) b->lock[1]--; } @@ -476,40 +478,38 @@ static int decide_frame_length(struct pullup_context *c) { - int n; struct pullup_field *f0 = c->first; struct pullup_field *f1 = f0->next; struct pullup_field *f2 = f1->next; struct pullup_field *f3 = f2->next; - struct pullup_field *f4 = f3->next; - struct pullup_field *f5 = f4->next; if (queue_length(c->first, c->last) < 6) return 0; foo(c); - n = find_first_break(f0, 3); - if (f0->affinity == -1) return 1; - switch (n) { + switch (find_first_break(f0, 3)) { case 1: return 1; case 2: if (f1->affinity == 1) return 1; else return 2; case 3: - if (f1->affinity == -1) return 2; - else if (f1->affinity == 1) return 1; + if (f1->affinity == 1) { + if (f0->affinity == 1 && f2->affinity == -1) return 3; + else return 1; + } + else if (f2->affinity == 1) return 2; else return 3; default: - if (f1->affinity == 1) return 1; - else if (f1->affinity == -1) return 2; - else if (f2->affinity == 1) return 2; - else if (f0->affinity == 1 && f2->affinity == -1) return 3; - else if (f2->affinity == -1) return 1; - else if (f0->affinity == 1) return 2; - else if (f2->affinity == 0 && f3->affinity == 1) return 3; - else return 2; + /* 9 possibilities covered before switch */ + if (f1->affinity == 1) return 1; /* covers 6 */ + else if (f1->affinity == -1) return 2; /* covers 6 */ + else if (f2->affinity == -1) { /* covers 2 */ + if (f0->affinity == 1) return 3; + else return 1; + } + else return 2; /* the remaining 6 */ } } @@ -543,6 +543,7 @@ int i; struct pullup_frame *fr = c->frame; int n = decide_frame_length(c); + int aff = c->first->next->affinity; if (!n) return 0; if (fr->lock) return 0; @@ -558,25 +559,32 @@ fr->buffer = 0; for (i = 0; i < n; i++) { /* We cheat and steal the buffer without release+relock */ - fr->fields[i] = c->first->buffer; + fr->ifields[i] = c->first->buffer; c->first->buffer = 0; c->first = c->first->next; } - /* Export the entire frame as one buffer, if possible! */ - if (n == 2 && fr->fields[0] == fr->fields[1]) { - fr->buffer = fr->fields[0]; + + if (n == 1) { + fr->ofields[fr->parity] = fr->ifields[0]; + fr->ofields[fr->parity^1] = 0; + } else if (n == 2) { + fr->ofields[fr->parity] = fr->ifields[0]; + fr->ofields[fr->parity^1] = fr->ifields[1]; + } else if (n == 3) { + if (aff == 0) + aff = (fr->ifields[0] == fr->ifields[1]) ? -1 : 1; + /* else if (c->verbose) printf("forced aff: %d \n", aff); */ + fr->ofields[fr->parity] = fr->ifields[1+aff]; + fr->ofields[fr->parity^1] = fr->ifields[1]; + } + pullup_lock_buffer(fr->ofields[0], 0); + pullup_lock_buffer(fr->ofields[1], 1); + + if (fr->ofields[0] == fr->ofields[1]) { + fr->buffer = fr->ofields[0]; pullup_lock_buffer(fr->buffer, 2); return fr; } - /* (loop is in case we ever support frames longer than 3 fields) */ - for (i = 1; i < n-1; i++) { - if (fr->fields[i] == fr->fields[i-1] - || fr->fields[i] == fr->fields[i+1]) { - fr->buffer = fr->fields[i]; - pullup_lock_buffer(fr->buffer, 2); - break; - } - } return fr; } @@ -602,24 +610,26 @@ int par = fr->parity; if (fr->buffer) return; if (fr->length < 2) return; /* FIXME: deal with this */ - for (i = 0; i < fr->length; i++) + for (i = 0; i < 2; i++) { - if (fr->fields[i]->lock[par ^ (i&1) ^ 1]) continue; - fr->buffer = fr->fields[i]; + if (fr->ofields[i]->lock[i^1]) continue; + fr->buffer = fr->ofields[i]; pullup_lock_buffer(fr->buffer, 2); - copy_field(c, fr->buffer, fr->fields[i+(i>0?-1:1)], par^(i&1)^1); + copy_field(c, fr->buffer, fr->ofields[i^1], i^1); return; } fr->buffer = pullup_get_buffer(c, 2); - copy_field(c, fr->buffer, fr->fields[0], par); - copy_field(c, fr->buffer, fr->fields[1], par^1); + copy_field(c, fr->buffer, fr->ofields[0], 0); + copy_field(c, fr->buffer, fr->ofields[1], 1); } void pullup_release_frame(struct pullup_frame *fr) { int i; for (i = 0; i < fr->length; i++) - pullup_release_buffer(fr->fields[i], fr->parity ^ (i&1)); + pullup_release_buffer(fr->ifields[i], fr->parity ^ (i&1)); + pullup_release_buffer(fr->ofields[0], 0); + pullup_release_buffer(fr->ofields[1], 1); if (fr->buffer) pullup_release_buffer(fr->buffer, 2); fr->lock--; } @@ -661,7 +671,7 @@ c->head = make_field_queue(c, 8); c->frame = calloc(1, sizeof (struct pullup_frame)); - c->frame->fields = calloc(3, sizeof (struct pullup_buffer *)); + c->frame->ifields = calloc(3, sizeof (struct pullup_buffer *)); switch(c->format) { case PULLUP_FMT_Y: diff -r 7737584af47a -r 6fc547235443 libmpcodecs/pullup.h --- a/libmpcodecs/pullup.h Thu Dec 11 05:07:47 2003 +0000 +++ b/libmpcodecs/pullup.h Thu Dec 11 07:52:57 2003 +0000 @@ -35,7 +35,7 @@ int lock; int length; int parity; - struct pullup_buffer **fields; + struct pullup_buffer **ifields, *ofields[2]; struct pullup_buffer *buffer; }; diff -r 7737584af47a -r 6fc547235443 libmpcodecs/vf_pullup.c --- a/libmpcodecs/vf_pullup.c Thu Dec 11 05:07:47 2003 +0000 +++ b/libmpcodecs/vf_pullup.c Thu Dec 11 07:52:57 2003 +0000 @@ -56,7 +56,7 @@ c->junk_left = c->junk_right = 1; c->junk_top = c->junk_bottom = 4; - c->verbose = 0; + c->verbose = verbose; if (gCpuCaps.hasMMX) c->cpu |= PULLUP_CPU_MMX; if (gCpuCaps.hasMMX2) c->cpu |= PULLUP_CPU_MMX2; @@ -166,25 +166,24 @@ break; } /* Direct render fields into output buffer */ - p = f->parity; - my_memcpy_pic(dmpi->planes[0], f->fields[p]->planes[0], + my_memcpy_pic(dmpi->planes[0], f->ofields[0]->planes[0], mpi->w, mpi->h/2, dmpi->stride[0]*2, c->stride[0]*2); my_memcpy_pic(dmpi->planes[0] + dmpi->stride[0], - f->fields[p^1]->planes[0] + c->stride[0], + f->ofields[1]->planes[0] + c->stride[0], mpi->w, mpi->h/2, dmpi->stride[0]*2, c->stride[0]*2); if (mpi->flags & MP_IMGFLAG_PLANAR) { - my_memcpy_pic(dmpi->planes[1], f->fields[p]->planes[1], + my_memcpy_pic(dmpi->planes[1], f->ofields[0]->planes[1], mpi->chroma_width, mpi->chroma_height/2, dmpi->stride[1]*2, c->stride[1]*2); my_memcpy_pic(dmpi->planes[1] + dmpi->stride[1], - f->fields[p^1]->planes[1] + c->stride[1], + f->ofields[1]->planes[1] + c->stride[1], mpi->chroma_width, mpi->chroma_height/2, dmpi->stride[1]*2, c->stride[1]*2); - my_memcpy_pic(dmpi->planes[2], f->fields[p]->planes[2], + my_memcpy_pic(dmpi->planes[2], f->ofields[0]->planes[2], mpi->chroma_width, mpi->chroma_height/2, dmpi->stride[2]*2, c->stride[2]*2); my_memcpy_pic(dmpi->planes[2] + dmpi->stride[2], - f->fields[p^1]->planes[2] + c->stride[2], + f->ofields[1]->planes[2] + c->stride[2], mpi->chroma_width, mpi->chroma_height/2, dmpi->stride[2]*2, c->stride[2]*2); }