summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/avcodec.h
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-04-30 12:20:25 +0000
committerMohamed Tarek <mt@rockbox.org>2010-04-30 12:20:25 +0000
commitfe147cec651486d39967f24d0d1bbe6ae1cd067b (patch)
treeef15055d39c17e05c91f591b5d4f264bfd421e5e /apps/codecs/libwmapro/avcodec.h
parentcf43e5083b9e0f87de262ea31fd8067225ebfcda (diff)
downloadrockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.tar.gz
rockbox-fe147cec651486d39967f24d0d1bbe6ae1cd067b.zip
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.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/codecs/libwmapro/avcodec.h b/apps/codecs/libwmapro/avcodec.h
index add4b100ae..da67b32fa2 100644
--- a/apps/codecs/libwmapro/avcodec.h
+++ b/apps/codecs/libwmapro/avcodec.h
@@ -1090,7 +1090,7 @@ typedef struct AVCodecContext {
1090 * - encoding: MUST be set by user. 1090 * - encoding: MUST be set by user.
1091 * - decoding: Set by libavcodec. 1091 * - decoding: Set by libavcodec.
1092 */ 1092 */
1093 AVRational time_base; 1093 //AVRational time_base;
1094 1094
1095 /* video only */ 1095 /* video only */
1096 /** 1096 /**
@@ -1116,7 +1116,7 @@ typedef struct AVCodecContext {
1116 * - encoding: Set by user. 1116 * - encoding: Set by user.
1117 * - decoding: Set by libavcodec. 1117 * - decoding: Set by libavcodec.
1118 */ 1118 */
1119 enum PixelFormat pix_fmt; 1119 //enum PixelFormat pix_fmt;
1120 1120
1121 /** 1121 /**
1122 * Frame rate emulation. If not zero, the lower layer (i.e. format handler) 1122 * Frame rate emulation. If not zero, the lower layer (i.e. format handler)
@@ -1660,7 +1660,7 @@ typedef struct AVCodecContext {
1660 * - encoding: Set by user. 1660 * - encoding: Set by user.
1661 * - decoding: Set by libavcodec. 1661 * - decoding: Set by libavcodec.
1662 */ 1662 */
1663 AVRational sample_aspect_ratio; 1663 //AVRational sample_aspect_ratio;
1664 1664
1665 /** 1665 /**
1666 * the picture in the bitstream 1666 * the picture in the bitstream
@@ -2677,7 +2677,7 @@ typedef struct AVCodec {
2677 * Will be called when seeking 2677 * Will be called when seeking
2678 */ 2678 */
2679 void (*flush)(AVCodecContext *); 2679 void (*flush)(AVCodecContext *);
2680 const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} 2680 //const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0}
2681 const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 2681 const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1
2682 /** 2682 /**
2683 * Descriptive name for the codec, meant to be more human readable than name. 2683 * Descriptive name for the codec, meant to be more human readable than name.
@@ -2719,7 +2719,7 @@ typedef struct AVHWAccel {
2719 * 2719 *
2720 * Only hardware accelerated formats are supported here. 2720 * Only hardware accelerated formats are supported here.
2721 */ 2721 */
2722 enum PixelFormat pix_fmt; 2722 //enum PixelFormat pix_fmt;
2723 2723
2724 /** 2724 /**
2725 * Hardware accelerated codec capabilities. 2725 * Hardware accelerated codec capabilities.
@@ -3885,7 +3885,7 @@ int av_parse_video_frame_size(int *width_ptr, int *height_ptr, const char *str);
3885 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected 3885 * @param[in,out] frame_rate pointer to the AVRational which will contain the detected
3886 * frame rate 3886 * frame rate
3887 */ 3887 */
3888int av_parse_video_frame_rate(AVRational *frame_rate, const char *str); 3888//int av_parse_video_frame_rate(AVRational *frame_rate, const char *str);
3889 3889
3890/** 3890/**
3891 * Logs a generic warning message about a missing feature. This function is 3891 * Logs a generic warning message about a missing feature. This function is