Skip to content

Commit

Permalink
Reorder includes
Browse files Browse the repository at this point in the history
  • Loading branch information
irtimmer committed Jun 12, 2015
1 parent e662ea0 commit 47ae046
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/video/imx.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@

#include "../video.h"

#include "vpu_io.h"
#include "vpu_lib.h"

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
Expand All @@ -43,6 +40,9 @@
#include <linux/v4l2-controls.h>
#include <linux/videodev2.h>

#include <vpu_io.h>
#include <vpu_lib.h>

#define STREAM_BUF_SIZE 0x200000
#define PS_SAVE_SIZE 0x080000

Expand Down
5 changes: 3 additions & 2 deletions src/video/omx.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "../video.h"

#include "bcm_host.h"
#include "ilclient.h"
#include "h264_stream.h"

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include <ilclient.h>
#include <bcm_host.h>

static TUNNEL_T tunnel[2];
static COMPONENT_T *list[3];
static ILCLIENT_T *client;
Expand Down

0 comments on commit 47ae046

Please sign in to comment.