summaryrefslogtreecommitdiffstats
path: root/libhb/fifo.c
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2016-12-12 13:16:36 -0800
committerJohn Stebbins <[email protected]>2016-12-17 07:28:51 -0800
commit480d018ee0012a5adb9609195a951496f7d3c62a (patch)
treef0b79cbde2042111a8005c45fd3e67cbddada1a3 /libhb/fifo.c
parenta4a6332a90b21eb246b5147dc3285b36cd6f631e (diff)
qsv: rename av_qsv* to hb_qsv*
Diffstat (limited to 'libhb/fifo.c')
-rw-r--r--libhb/fifo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libhb/fifo.c b/libhb/fifo.c
index a07545ed5..40702d4f0 100644
--- a/libhb/fifo.c
+++ b/libhb/fifo.c
@@ -726,10 +726,10 @@ void hb_buffer_close( hb_buffer_t ** _b )
// when decoding without QSV, the QSV atom will be NULL.
if (b->qsv_details.qsv_atom != NULL && b->qsv_details.ctx != NULL)
{
- av_qsv_stage *stage = av_qsv_get_last_stage(b->qsv_details.qsv_atom);
+ hb_qsv_stage *stage = hb_qsv_get_last_stage(b->qsv_details.qsv_atom);
if (stage != NULL)
{
- av_qsv_wait_on_sync(b->qsv_details.ctx, stage);
+ hb_qsv_wait_on_sync(b->qsv_details.ctx, stage);
if (stage->out.sync->in_use > 0)
{
ff_qsv_atomic_dec(&stage->out.sync->in_use);
@@ -739,8 +739,8 @@ void hb_buffer_close( hb_buffer_t ** _b )
ff_qsv_atomic_dec(&stage->out.p_surface->Data.Locked);
}
}
- av_qsv_flush_stages(b->qsv_details.ctx->pipes,
- (av_qsv_list**)&b->qsv_details.qsv_atom);
+ hb_qsv_flush_stages(b->qsv_details.ctx->pipes,
+ (hb_qsv_list**)&b->qsv_details.qsv_atom);
}
#endif