mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-24 20:01:42 +00:00
corrected sign of argument
This commit is contained in:
parent
cf0ebd27f7
commit
3953f806b0
@ -126,7 +126,7 @@ fail:
|
||||
* @param maxlen length of buffer, where data will be copied
|
||||
* @return number of bytes recieved as data
|
||||
*/
|
||||
int ff_get_ccframe(void *arg,char*data,int maxlen)
|
||||
int ff_get_ccframe(void *arg, unsigned char*data, int maxlen)
|
||||
{
|
||||
struct ffmpeg_ctx *ctx = arg;
|
||||
int len = 0;
|
||||
|
@ -19,5 +19,5 @@ void *init_ffmpeg(char *path);
|
||||
* @param maxlen length of buffer, where data will be copied
|
||||
* @return number of bytes recieved as data
|
||||
*/
|
||||
int ff_get_ccframe(void *arg,char*data,int maxlen);
|
||||
int ff_get_ccframe(void *arg, unsigned char*data, int maxlen);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user