)
// backward compatibility with libavcodec55
-#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55,28,1)
-#warning "libavcodec55 is deprecated"
+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(57,0,0)
#define HAVE_AUBIO_LIBAVCODEC_DEPRECATED 1
+#endif
+
+#if LIBAVCODEC_VERSION_INT < AV_VERSION_INT(55,28,1)
+#warning "libavcodec < 56 is deprecated"
#define av_frame_alloc avcodec_alloc_frame
#define av_frame_free avcodec_free_frame
#define av_packet_unref av_free_packet
s->avCodecCtx = NULL;
if (s->avFormatCtx != NULL) {
avformat_close_input(&s->avFormatCtx);
-#ifndef HAVE_AUBIO_LIBAVCODEC_DEPRECATED // avoid crash on old libavcodec54
- avformat_free_context(s->avFormatCtx);
-#endif
s->avFormatCtx = NULL;
}
av_packet_unref(&s->avPacket);
#! python
import os
+import sys
__version_info = {} # keep a reference to parse VERSION once
try:
gitsha = subprocess.check_output(gitcmd).strip().decode('utf8')
except Exception as e:
- print('git command error :%s' % e)
+ sys.stderr.write('git command error :%s\n' % e)
return None
# check if we have a clean tree
gitcmd = ['git', '-C', aubio_dir, 'status', '--porcelain']
try:
output = subprocess.check_output(gitcmd).decode('utf8')
if len(output):
- print('Info: current tree is not clean\n')
- print(output)
+ sys.stderr.write('Info: current tree is not clean\n\n')
+ sys.stderr.write(output + '\n')
gitsha += '+mods'
except subprocess.CalledProcessError as e:
- print (e)
+ sys.stderr.write('git command error :%s\n' % e)
pass
return gitsha