mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
qsort doxy
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
88f87ebaa3
commit
096db654af
@ -21,6 +21,12 @@
|
||||
#include "common.h"
|
||||
|
||||
|
||||
/**
|
||||
* Quicksort
|
||||
* This sort is fast, and fully inplace but not stable and it is possible
|
||||
* to construct input that requires O(n^2) time but this is very unlikely to
|
||||
* happen with non constructed input.
|
||||
*/
|
||||
#define AV_QSORT(p, num, type, cmp) {\
|
||||
void *stack[64][2];\
|
||||
int sp= 1;\
|
||||
|
Loading…
x
Reference in New Issue
Block a user