diff options
| author | Mohamed Tarek <mt@rockbox.org> | 2010-04-30 12:20:25 +0000 |
|---|---|---|
| committer | Mohamed Tarek <mt@rockbox.org> | 2010-04-30 12:20:25 +0000 |
| commit | fe147cec651486d39967f24d0d1bbe6ae1cd067b (patch) | |
| tree | ef15055d39c17e05c91f591b5d4f264bfd421e5e /apps/codecs/libwmapro/avcodec.h | |
| parent | cf43e5083b9e0f87de262ea31fd8067225ebfcda (diff) | |
| download | rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.zip rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.gz rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.bz2 rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.xz | |
Modify the ffmpeg source files in apps/codecs/libwmapro in order to compile the codec standalone.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25764 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libwmapro/avcodec.h')
| -rw-r--r-- | apps/codecs/libwmapro/avcodec.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/codecs/libwmapro/avcodec.h b/apps/codecs/libwmapro/avcodec.h index add4b10..da67b32 100644 --- a/apps/codecs/libwmapro/avcodec.h +++ b/apps/codecs/libwmapro/avcodec.h @@ -1090,7 +1090,7 @@ typedef struct AVCodecContext { * - encoding: MUST be set by user. * - decoding: Set by libavcodec. */ - AVRational time_base; + //AVRational time_base; /* video only */ /** @@ -1116,7 +1116,7 @@ typedef struct AVCodecContext { * - encoding: Set by user. * - decoding: Set by libavcodec. */ - enum PixelFormat pix_fmt; + //enum PixelFormat pix_fmt; /** * Frame rate emulation. If not zero, the lower layer (i.e. format handler) @@ -1660,7 +1660,7 @@ typedef struct AVCodecContext { * - encoding: Set by user. * - decoding: Set by libavcodec. */ - AVRational sample_aspect_ratio; + //AVRational sample_aspect_ratio; /** * the picture in the bitstream @@ -2677,7 +2677,7 @@ typedef struct AVCodec { * Will be called when seeking */ void (*flush)(AVCodecContext *); - const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} + //const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 /** * Descriptive name for the codec, meant to be more human readable than name. @@ -2719,7 +2719,7 @@ typedef struct AVHWAccel { * * Only hardware accelerated formats are supported here. */ - enum PixelFormat pix_fmt; + //enum PixelFormat pix_fmt; /** * Hardware accelerated codec capabilities. @@ -3885,7 +3885,7 @@ int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str); * @param[in,out] frame_rate pointer to the AVRational which will contain the detected * frame rate */ -int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); +//int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); /** * Logs a generic warning message about a missing feature. This function is |