mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-30 14:40:32 +00:00
move DEBUG define before include to get dprintf and move guidcmp before print_guid, fix compilation with DEBUG
Originally committed as revision 18928 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1eda87ce63
commit
c9d7cd6dca
@ -19,6 +19,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
#include "libavutil/common.h"
|
||||
#include "libavutil/avstring.h"
|
||||
#include "libavcodec/mpegaudio.h"
|
||||
@ -46,7 +48,10 @@ static const ff_asf_guid stream_bitrate_guid = { /* (http://get.to/sdp) */
|
||||
/**********************************/
|
||||
/* decoding */
|
||||
|
||||
//#define DEBUG
|
||||
static int guidcmp(const void *g1, const void *g2)
|
||||
{
|
||||
return memcmp(g1, g2, sizeof(ff_asf_guid));
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
#define PRINT_IF_GUID(g,cmp) \
|
||||
@ -90,11 +95,6 @@ static void print_guid(const ff_asf_guid *g)
|
||||
#define print_guid(g)
|
||||
#endif
|
||||
|
||||
static int guidcmp(const void *g1, const void *g2)
|
||||
{
|
||||
return memcmp(g1, g2, sizeof(ff_asf_guid));
|
||||
}
|
||||
|
||||
static void get_guid(ByteIOContext *s, ff_asf_guid *g)
|
||||
{
|
||||
assert(sizeof(*g) == 16);
|
||||
|
Loading…
Reference in New Issue
Block a user