diff --git a/mythtv/libs/libmythtv/tv_rec.cpp b/mythtv/libs/libmythtv/tv_rec.cpp
index ced991b..51cb634 100644
|
a
|
b
|
void TVRec::FinishedRecording(RecordingInfo *curRec, RecordingQuality *recq)
|
| 904 | 904 | VID_1080 | VID_720 | VID_DAMAGED | VID_WIDESCREEN, |
| 905 | 905 | ((avg_height > 1000) ? VID_1080 : ((avg_height > 700) ? VID_720 : 0)) | |
| 906 | 906 | ((is_good) ? 0 : VID_DAMAGED) | |
| 907 | | ((aspectRatio == MARK_ASPECT_16_9) || |
| 908 | | (aspectRatio == MARK_ASPECT_2_21_1)) ? VID_WIDESCREEN : 0); |
| | 907 | (((aspectRatio == MARK_ASPECT_16_9) || |
| | 908 | (aspectRatio == MARK_ASPECT_2_21_1)) ? VID_WIDESCREEN : 0)); |
| 909 | 909 | |
| 910 | 910 | // Make sure really short recordings have positive run time. |
| 911 | 911 | if (curRec->GetRecordingEndTime() <= curRec->GetRecordingStartTime()) |