ffmpeg.nim icon indicating copy to clipboard operation
ffmpeg.nim copied to clipboard

FFmpeg nim wrapper

Results 7 ffmpeg.nim issues
Sort by recently updated
recently updated
newest added

I can't find any [AVChannelLayout](https://ffmpeg.org/doxygen/trunk/structAVChannelLayout.html) type here, but I could be missing something because I have only started to look into ffmpeg since yesterday. Basically I'm trying to write a...

## Overview ```nim proc av_strnlen* (s: cstring, len: csize_t): csize_t {.inline.} = var i: csize_t = 0 # while i < len and s[i]: # i += 1 result =...

invalid

## Overview ```nim template av_assert0* (cond: untyped): untyped = if not cond: # av_log(nil, AV_LOG_PANIC, "Assertion %s failed at %s:%d\n", AV_STRINGIFY(cond), __FILE__, __LINE__) abort() ```

invalid

## Overview ```nim # when defined(__GNUC__): # template AV_GCC_VERSION_AT_LEAST* (x, y: untyped): untyped =s # __GNUC__ > (x) or __GNUC__ == (x) or __GNUC_MINOR__ >= (y) # template AV_GCC_VERSION_AT_MOST* (x,...

invalid

While it is indeed useful that `5 + 5 = 10` (what the current tests test xP), I beleive that some tests and examples would be nice to have in...

Also renames mathmatics to mathematics, as that is how the header file from FFmpeg is named. Continuation of https://github.com/momeemt/ffmpeg.nim/issues/12 Previously failed to compile without version_major.h