Remove extra debug

pull/3646/head
Isaac Connor 2022-12-07 10:33:12 -05:00
parent 7e489f7fa2
commit 9e8d2a8428
1 changed files with 0 additions and 3 deletions

View File

@ -91,11 +91,8 @@ int FFmpeg_Input::Open(const char *filepath) {
Debug(1, "Using codec (%s) for stream %d", streams[i].codec->name, i);
}
Debug(1, "Allocating");
streams[i].context = avcodec_alloc_context3(streams[i].codec);
Debug(1, "Parameters");
avcodec_parameters_to_context(streams[i].context, input_format_context->streams[i]->codecpar);
Debug(1, "Dumping codec");
zm_dump_codec(streams[i].context);
error = avcodec_open2(streams[i].context, streams[i].codec, nullptr);