Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Resync libmythdvdnav with upstream
  • Loading branch information
stuartm committed Jul 9, 2012
1 parent 2f03c91 commit 71869c7
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions mythtv/libs/libmythdvdnav/dvdnav/searching.c
Expand Up @@ -47,7 +47,7 @@
/* Return placed in vobu. */
/* Returns error status */
/* FIXME: Maybe need to handle seeking outside current cell. */
static dvdnav_status_t dvdnav_scan_admap(dvdnav_t *this, int32_t domain, uint32_t seekto_block, uint32_t *vobu) {
static dvdnav_status_t dvdnav_scan_admap(dvdnav_t *this, int32_t domain, uint32_t seekto_block, int next, uint32_t *vobu) {
vobu_admap_t *admap = NULL;

#ifdef LOG_DEBUG
Expand Down Expand Up @@ -118,7 +118,7 @@ static dvdnav_status_t dvdnav_scan_admap(dvdnav_t *this, int32_t domain, uint32_
vobu_start = admap->vobu_start_sectors[last_address - 1];
}
if(found) {
*vobu = vobu_start;
*vobu = next ? next_vobu : vobu_start;
return DVDNAV_STATUS_OK;
} else {
fprintf(MSG_OUT, "libdvdnav: Could not locate block\n");
Expand Down Expand Up @@ -199,7 +199,7 @@ dvdnav_status_t dvdnav_absolute_time_search(dvdnav_t *this,
fprintf(MSG_OUT, "libdvdnav: Seeking to cell %i from choice of %i to %i\n",
cell_nr, first_cell_nr, last_cell_nr);
#endif
if (dvdnav_scan_admap(this, state->domain, target, &vobu) == DVDNAV_STATUS_OK) {
if (dvdnav_scan_admap(this, state->domain, target, 0, &vobu) == DVDNAV_STATUS_OK) {
uint32_t start = state->pgc->cell_playback[cell_nr-1].first_sector;

if (vm_jump_cell_block(this->vm, cell_nr, vobu - start)) {
Expand All @@ -223,9 +223,13 @@ dvdnav_status_t dvdnav_absolute_time_search(dvdnav_t *this,
dvdnav_status_t dvdnav_sector_search(dvdnav_t *this,
uint64_t offset, int32_t origin) {
uint32_t target = 0;
uint32_t current_pos;
uint32_t cur_sector;
uint32_t cur_cell_nr;
uint32_t length = 0;
uint32_t first_cell_nr, last_cell_nr, cell_nr;
int32_t found;
int forward = 0;
cell_playback_t *cell;
dvd_state_t *state;
dvdnav_status_t result;
Expand All @@ -252,6 +256,10 @@ dvdnav_status_t dvdnav_sector_search(dvdnav_t *this,
fprintf(MSG_OUT, "libdvdnav: Before cellN=%u blockN=%u\n", state->cellN, state->blockN);
#endif

current_pos = target;
cur_sector = this->vobu.vobu_start + this->vobu.blockN;
cur_cell_nr = state->cellN;

switch(origin) {
case SEEK_SET:
if(offset >= length) {
Expand Down Expand Up @@ -283,6 +291,7 @@ dvdnav_status_t dvdnav_sector_search(dvdnav_t *this,
pthread_mutex_unlock(&this->vm_lock);
return DVDNAV_STATUS_ERR;
}
forward = target > current_pos;

this->cur_cell_time = 0;
if (this->pgc_based) {
Expand All @@ -309,6 +318,27 @@ dvdnav_status_t dvdnav_sector_search(dvdnav_t *this,
} else {
/* convert the target sector from Cell-relative to absolute physical sector */
target += cell->first_sector;
if (forward && (cell_nr == cur_cell_nr)) {
uint32_t vobu;
/* if we are seeking forward from the current position, make sure
* we move to a new position that is after our current position.
* simply truncating to the vobu will go backwards */
if (dvdnav_scan_admap(this, state->domain, target, 0, &vobu) != DVDNAV_STATUS_OK)
break;
if (vobu <= cur_sector) {
if (dvdnav_scan_admap(this, state->domain, target, 1, &vobu) != DVDNAV_STATUS_OK)
break;
if (vobu > cell->last_sector) {
if (cell_nr == last_cell_nr)
break;
cell_nr++;
cell = &(state->pgc->cell_playback[cell_nr-1]);
target = cell->first_sector;
} else {
target = vobu;
}
}
}
found = 1;
break;
}
Expand All @@ -320,7 +350,7 @@ dvdnav_status_t dvdnav_sector_search(dvdnav_t *this,
fprintf(MSG_OUT, "libdvdnav: Seeking to cell %i from choice of %i to %i\n",
cell_nr, first_cell_nr, last_cell_nr);
#endif
if (dvdnav_scan_admap(this, state->domain, target, &vobu) == DVDNAV_STATUS_OK) {
if (dvdnav_scan_admap(this, state->domain, target, 0, &vobu) == DVDNAV_STATUS_OK) {
int32_t start = state->pgc->cell_playback[cell_nr-1].first_sector;

if (vm_jump_cell_block(this->vm, cell_nr, vobu - start)) {
Expand Down Expand Up @@ -704,7 +734,7 @@ dvdnav_status_t dvdnav_relative_time_search(dvdnav_t *this,

if (scan_admap)
{
if (dvdnav_scan_admap(this, state->domain, offset, &new_vobu) == DVDNAV_STATUS_ERR) {
if (dvdnav_scan_admap(this, state->domain, offset, 0, &new_vobu) == DVDNAV_STATUS_ERR) {
pthread_mutex_unlock(&this->vm_lock);
return DVDNAV_STATUS_ERR;
}
Expand Down

0 comments on commit 71869c7

Please sign in to comment.