Fix minor error: ffmpeg_frame_unref() Missing return statement (#3554)

This commit is contained in:
jimying 2023-05-10 11:30:51 +08:00 committed by GitHub
parent ad14f860d0
commit 512e62b6be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1850,7 +1850,7 @@ static pj_status_t check_decode_result(pjmedia_vid_codec *codec,
/*
* Unreference AVFrame.
*/
static pj_status_t ffmpeg_frame_unref(AVFrame *frame)
static void ffmpeg_frame_unref(AVFrame *frame)
{
#ifdef PJMEDIA_USE_OLD_FFMPEG
(void)frame;