vanhofen
3 years ago
15 changed files with 35 additions and 11 deletions
@ -1,6 +1,6 @@ |
|||
--- a/libavformat/mov.c
|
|||
+++ b/libavformat/mov.c
|
|||
@@ -3634,8 +3634,10 @@
|
|||
@@ -3644,8 +3644,10 @@
|
|||
|
|||
if (ctts_data_old && ctts_index_old < ctts_count_old) { |
|||
curr_ctts = ctts_data_old[ctts_index_old].duration; |
@ -0,0 +1,24 @@ |
|||
diff --git a/libavutil/log.c b/libavutil/log.c
|
|||
index 5948e50467..528eaa728c 100644
|
|||
--- a/libavutil/log.c
|
|||
+++ b/libavutil/log.c
|
|||
@@ -51,7 +51,7 @@ static AVMutex mutex = AV_MUTEX_INITIALIZER;
|
|||
#define BACKTRACE_LOGLEVEL AV_LOG_ERROR |
|||
#endif |
|||
|
|||
-static int av_log_level = AV_LOG_INFO;
|
|||
+static int av_log_level = AV_LOG_ERROR; // NOT WORKING for libs
|
|||
static int flags; |
|||
|
|||
#define NB_LEVELS 8 |
|||
@@ -406,10 +406,6 @@ static void (*av_log_callback)(void*, int, const char*, va_list) =
|
|||
|
|||
void av_log(void* avcl, int level, const char *fmt, ...) |
|||
{ |
|||
- va_list vl;
|
|||
- va_start(vl, fmt);
|
|||
- av_vlog(avcl, level, fmt, vl);
|
|||
- va_end(vl);
|
|||
} |
|||
|
|||
void av_log_once(void* avcl, int initial_level, int subsequent_level, int *state, const char *fmt, ...) |
@ -1,6 +1,6 @@ |
|||
--- a/libavcodec/aacdec_template.c
|
|||
+++ b/libavcodec/aacdec_template.c
|
|||
@@ -2583,7 +2583,7 @@
|
|||
@@ -2588,7 +2588,7 @@
|
|||
* @param decode 1 if tool is used normally, 0 if tool is used in LTP. |
|||
* @param coef spectral coefficients |
|||
*/ |
@ -1,6 +1,6 @@ |
|||
--- a/libavformat/hls.c
|
|||
+++ b/libavformat/hls.c
|
|||
@@ -2165,8 +2165,10 @@
|
|||
@@ -2171,8 +2171,10 @@
|
|||
HLSContext *c = s->priv_data; |
|||
int ret, i, minplaylist = -1; |
|||
|
Loading…
Reference in new issue