low image quality when grabbing with dvgrab
Bug #859108 reported by
Raffaella Traniello
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Linux Stopmotion |
Fix Released
|
High
|
Unassigned | ||
dvgrab (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
When grabbing with dvgrab from a MiniDV camcorder the image has unacceptably low quality (horizontal artefacts).
Changed in lsm: | |
status: | In Progress → Fix Committed |
To post a comment you must log in.
Herman Robak found out that the problem is not the JPEG encoding. It's the DV decoding by dvgrab.
In dvframe.cc (dvgrab code) the "quality" is not set to "best".
decoder->quality = DV_QUALITY_COLOR | DV_QUALITY_AC_1;
Should be:
decoder->quality = DV_QUALITY_COLOR | DV_QUALITY_AC_2;
If dvgrab is modified and recompiled, then the grabbing maintains the DV quality.