pl_mpeg icon indicating copy to clipboard operation
pl_mpeg copied to clipboard

Single file C library for decoding MPEG1 Video and MP2 Audio

Results 17 pl_mpeg issues
Sort by recently updated
recently updated
newest added

Thanks a lot for doing this!! This lets me use video in my apps without the hassle of gigantic libs dependencies! Now the only open question is... how can I...

Hello, great library. I am attempting to play a video on the GBA the library compiles fine with devkitpro. However everything decoded is corrupted. For example, my first frame should...

The compiled exe works but it is not statically linked. I used the following command to compile it: `gcc pl_mpeg_player.c -o pl_mpeg_player.exe -mconsole -lglew32 -lopengl32 -lsdl2`

Hi, I'm looking around for a video playback solution and considering pl_mpeg. Can it be made to work with physfs?? I'm currently using physfs to load resources from a zip...

Lines 1187 and 1872 involve an assignment within a conditional. Some compilers complain about this. Easy fix: explicitly adding "!= 0" in each conditional appears to work equivalently and silences...

It took me 30 minutes to integrate into my project https://github.com/QuantScientist/TorchRayLib Once I am done, I shall credit you of course.

Sometimes we don't have access to the standard library, and/or we want to use custom allocation functions. Thus, it would make sense to add in some defines that can be...

It would be helpful to change ``` typedef struct { ... } plm_frame_t; ``` into ``` typedef struct plm_frame_t { ... } plm_frame_t; ``` This would make it easier to...