Revise return value

This commit is contained in:
Mr-Dave
2021-12-11 23:31:37 -07:00
parent eb77dd3345
commit 80cfb77ad4

View File

@@ -847,8 +847,10 @@ AVPacket *mypacket_alloc(AVPacket *pkt)
av_init_packet(pkt);
pkt->data = NULL;
pkt->size = 0;
return pkt;
#endif
return pkt;
}
/*********************************************/