Skip to content

Commit

Permalink
Fix includes
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Prime90 committed Sep 16, 2016
1 parent 6f385cd commit e7be1f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions amcodec/include/amports/amstream.h
Expand Up @@ -34,8 +34,9 @@
#ifndef AMSTREAM_H
#define AMSTREAM_H

#include "amports/vformat.h"
#include "amports/aformat.h"
#include "vformat.h"
#include "aformat.h"

#define PORT_FLAG_IN_USE 0x0001
#define PORT_FLAG_VFORMAT 0x0002
#define PORT_FLAG_AFORMAT 0x0004
Expand Down
4 changes: 2 additions & 2 deletions amcodec/include/codec.h
Expand Up @@ -12,8 +12,8 @@
#ifndef CODEC_CTRL_H_
#define CODEC_CTRL_H_

#include <codec_type.h>
#include <codec_error.h>
#include "codec_type.h"
#include "codec_error.h"

int codec_init(codec_para_t *);
int codec_close(codec_para_t *);
Expand Down

0 comments on commit e7be1f7

Please sign in to comment.