Skip to content

Commit

Permalink
fix: Handle API changes for scalable layers output in x265 4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Cryolitia authored Nov 12, 2024
1 parent f980ec2 commit 7fad5b2
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/drivers/Qt/AviRecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,14 @@ static int encode_frame( unsigned char *inBuf, int width, int height )
pic->stride[1] = width/2;
pic->stride[2] = width/2;

#ifdef MAX_SCALABLE_LAYERS
/* Handle API changes for scalable layers output in x265 4.0 */
x265_picture *pics[MAX_SCALABLE_LAYERS] = {NULL};
pics[0] = pic;
ret = x265_encoder_encode( hdl, &nal, &i_nal, pic, pics );
#else
ret = x265_encoder_encode( hdl, &nal, &i_nal, pic, &pic_out );
#endif

if ( ret <= 0 )
{
Expand Down Expand Up @@ -494,7 +501,14 @@ static int close(void)
/* Flush delayed frames */
while( hdl != NULL )
{
ret = x265_encoder_encode( hdl, &nal, &i_nal, NULL, &pic_out );
#ifdef MAX_SCALABLE_LAYERS
/* Handle API changes for scalable layers output in x265 4.0 */
x265_picture *pics[MAX_SCALABLE_LAYERS] = {NULL};
pics[0] = pic;
ret = x265_encoder_encode( hdl, &nal, &i_nal, pic, pics );
#else
ret = x265_encoder_encode( hdl, &nal, &i_nal, pic, &pic_out );
#endif

if ( ret <= 0 )
{
Expand Down

0 comments on commit 7fad5b2

Please sign in to comment.