~ubuntu-branches/ubuntu/trusty/libavg/trusty-proposed

« back to all changes in this revision

Viewing changes to src/video/FFMpegDemuxer.h

  • Committer: Package Import Robot
  • Author(s): OXullo Intersecans
  • Date: 2011-12-06 22:44:56 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111206224456-qc7250z3ya1vi8s9
Tags: 1.7.0-0ubuntu1
* New upstream release (LP: #899183)
* Remove patches 0002-libav-0.7.patch, 0003-fglrx-segfault-on-startup.patch
  now merged to upstream
* Remove unnecessary .la files
* Update debian/watch file
* Fix debian/copyright dep-5 compliancy
* Update standards to version 3.9.2
* Add man pages for avg_checktouch, avg_checkvsync, avg_showsvg
* Minor debian/rules enhancement
* Add librsvg2-dev, libgdk-pixbuf2.0-dev to Build-Depends
* Proper transition to dh_python2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
2
//  libavg - Media Playback Engine. 
3
 
//  Copyright (C) 2003-2008 Ulrich von Zadow
 
3
//  Copyright (C) 2003-2011 Ulrich von Zadow
4
4
//
5
5
//  This library is free software; you can redistribute it and/or
6
6
//  modify it under the terms of the GNU Lesser General Public
25
25
#include "../avgconfigwrapper.h"
26
26
#include "IDemuxer.h"
27
27
 
28
 
#ifdef _WIN32
29
 
#define EMULATE_INTTYPES
30
 
#else
31
 
// This is probably GCC-specific.
32
 
#if !defined INT64_C
33
 
#if defined __WORDSIZE && __WORDSIZE == 64
34
 
#define INT64_C(c) c ## L
35
 
#else
36
 
#define INT64_C(c) c ## LL
37
 
#endif
38
 
#endif
39
 
#endif
40
 
 
41
 
extern "C" {
42
 
#ifdef _WIN32
43
 
#pragma warning(push)
44
 
#pragma warning(disable:4244)
45
 
#endif
46
 
#ifdef HAVE_LIBAVFORMAT_AVFORMAT_H
47
 
#include <libavformat/avformat.h>
48
 
#else
49
 
#include <ffmpeg/avformat.h>
50
 
#endif
51
 
#ifdef _WIN32
52
 
#pragma warning(pop)
53
 
#endif
54
 
}
 
28
#include "WrapFFMpeg.h"
55
29
 
56
30
#include <list>
57
31
#include <vector>