/* * Copyright (c) 2022 Andreas Rheinhardt <andreas.rheinhardt@outlook.com> * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
void ff_thread_progress_report(ThreadProgress *pro, int n)
{ if (atomic_load_explicit(&pro->progress, memory_order_relaxed) >= n) return;
ff_mutex_lock(&pro->progress_mutex);
atomic_store_explicit(&pro->progress, n, memory_order_release);
ff_cond_broadcast(&pro->progress_cond);
ff_mutex_unlock(&pro->progress_mutex);
}
void ff_thread_progress_await(const ThreadProgress *pro_c, int n)
{ /* Casting const away here is safe, because we only read from progress * and will leave pro_c in the same state upon leaving the function
* as it had at the beginning. */
ThreadProgress *pro = (ThreadProgress*)pro_c;
if (atomic_load_explicit(&pro->progress, memory_order_acquire) >= n) return;
ff_mutex_lock(&pro->progress_mutex); while (atomic_load_explicit(&pro->progress, memory_order_relaxed) < n)
ff_cond_wait(&pro->progress_cond, &pro->progress_mutex);
ff_mutex_unlock(&pro->progress_mutex);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.