Merge pull request #407 from DrChat/libav

Rewrote the Audio Decoder
This commit is contained in:
Ben Vanik
2015-08-29 20:47:04 -07:00
34 changed files with 785 additions and 314 deletions

View File

@@ -20,6 +20,7 @@ project("xenia-kernel")
})
includedirs({
project_root.."/third_party/elemental-forms/src",
project_root.."/build_tools/third_party/gflags/src",
})
recursive_platform_files()
files({

View File

@@ -171,7 +171,7 @@ SHIM_CALL XMASetLoopData_shim(PPCContext* ppc_context,
context.loop_end = loop_data->loop_end;
context.loop_count = loop_data->loop_count;
context.loop_subframe_end = loop_data->loop_subframe_end;
context.loop_subframe_skip = loop_data->loop_subframe_end;
context.loop_subframe_skip = loop_data->loop_subframe_skip;
context.Store(SHIM_MEM_ADDR(context_ptr));