mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-21 05:53:12 -07:00
Fix AV Packets with flag in first byte + Test
This commit is contained in:
parent
193c056067
commit
b0e0cbec0b
4 changed files with 358 additions and 0 deletions
|
@ -60,6 +60,14 @@ static MunitResult test_av_packet_parse(const MunitParameter params[], void *use
|
|||
}
|
||||
|
||||
|
||||
static MunitResult test_av_packet_parse_real_video(const MunitParameter params[], void *user)
|
||||
{
|
||||
#include "takion_av_packet_parse_real_video.inl"
|
||||
return MUNIT_OK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
MunitTest tests_takion[] = {
|
||||
{
|
||||
"/av_packet_parse",
|
||||
|
@ -69,5 +77,13 @@ MunitTest tests_takion[] = {
|
|||
MUNIT_TEST_OPTION_NONE,
|
||||
NULL
|
||||
},
|
||||
{
|
||||
"/av_packet_parse_real_video",
|
||||
test_av_packet_parse_real_video,
|
||||
NULL,
|
||||
NULL,
|
||||
MUNIT_TEST_OPTION_NONE,
|
||||
NULL
|
||||
},
|
||||
{ NULL, NULL, NULL, NULL, MUNIT_TEST_OPTION_NONE, NULL }
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue