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 bde609c commit e28c566Copy full SHA for e28c566
rtp.c
@@ -2094,10 +2094,10 @@ void avcodec_alloc_context3_cleanup_handler(void *arg) {
2094
av_free(codec_context);
2095
}
2096
2097
-void avcodec_open2_cleanup_handler(void *arg) {
2098
- debug(3, "avcodec_open2_cleanup_handler");
2099
- AVCodecContext *codec_context = arg;
2100
- avcodec_free_context(&codec_context);
+void avcodec_open2_cleanup_handler(__attribute__((unused)) void *arg) {
+ debug(3, "avcodec_open2_cleanup_handler -- does nothing right now");
+ // AVCodecContext *codec_context = arg;
+ // avcodec_free_context(&codec_context);
2101
2102
2103
void av_parser_init_cleanup_handler(void *arg) {
0 commit comments