We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a2447 commit 4c2de37Copy full SHA for 4c2de37
modules/stream_out/transcode/transcode.c
@@ -383,6 +383,12 @@ static int Open( vlc_object_t *p_this )
383
p_sys->f_scale, p_sys->i_vbitrate / 1000 );
384
}
385
386
+ /* Disable hardware decoding by default (unlike normal playback) */
387
+ psz_string = var_CreateGetString( p_stream, "avcodec-hw" );
388
+ if( !strcasecmp( "any", psz_string ) )
389
+ var_SetString( p_stream, "avcodec-hw", "none" );
390
+ free( psz_string );
391
+
392
/* Subpictures transcoding parameters */
393
p_sys->p_spu = NULL;
394
p_sys->p_spu_blend = NULL;
0 commit comments