d2vsource icon indicating copy to clipboard operation
d2vsource copied to clipboard

D2V parser and decoder for VapourSynth

Results 7 d2vsource issues
Sort by recently updated
recently updated
newest added

ffmpeg's examples/avio_reading.c does that as well, and looking through that file's history reveals that this return was added in 2017. I presume something must've changed in libav* internals but this...

Opening any d2v file (generated with either dgindex or d2vwitch) causes vspipe/vsedit to go into an endless loop. Just calling `d2v.Source` is enough to trigger this : ```python import vapoursynth...

Debian unstable amd64 ffmpeg 5.0 ```` src/core/decode.cpp: In function 'decodecontext* decodeinit(d2vcontext*, int, std::string&)': src/core/decode.cpp:168:11: warning: 'void* memset(void*, int, size_t)' clearing an object of type 'decodecontext' {aka 'struct decodecontext'} with no...

## The Problem d2v_source `YUVRGB_Scale=1` (PC) with ffmpeg `-color_range pc` (PC) returns a limited/TV color range output, not the expected full/PC color range. You may be thinking, "Oh, maybe the...

Assume the very first GOP has the following structure (in display order): BBIBBPBBP... and the GOP is not *marked* as closed (D2VWitch does this). Also assume that pictures are requested...

Hi! Can you add a check to configure.ac to check if the available libav* libraries are recent enough? Right now it only checks for existence.

Sample: https://mega.nz/file/t9gjxTLY#ILclLeRtd5_NLoJZyqL1e5yjs_TpQMsO9Ym9_mAD0wc DGIndex, MediaInfo, and MPV all recognize it as TFF, ![DGIndex](https://user-images.githubusercontent.com/17136956/230730583-596dfcb2-80c8-46dd-8892-806f32c344a1.png) ![MediaInfo](https://user-images.githubusercontent.com/17136956/230730890-393ac7f0-44ce-4e24-8ee3-a6fc41119608.png) However, after loading it with core.d2v.Source() in VapourSynth, it loads as BFF, ![VapourSynth](https://user-images.githubusercontent.com/17136956/230730776-756508b7-a084-481a-bb09-9930bf36751d.png) VapourSynth Script: ```py clip...