Browse Source

Make obs-ffmpeg aac encoder output which encoder is beeing used

BtbN 11 years ago
parent
commit
817c25884d
1 changed files with 2 additions and 0 deletions
  1. 2 0
      plugins/obs-ffmpeg/obs-ffmpeg-aac.c

+ 2 - 0
plugins/obs-ffmpeg/obs-ffmpeg-aac.c

@@ -143,6 +143,8 @@ static void *aac_create(obs_data_t settings, obs_encoder_t encoder)
 		goto fail;
 	}
 
+	blog(LOG_INFO, "Using ffmpeg \"%s\" aac encoder", enc->aac->name);
+
 	enc->context = avcodec_alloc_context3(enc->aac);
 	if (!enc->context) {
 		aac_warn("aac_create", "Failed to create codec context");