diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-02-19 10:01:01 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-02-20 07:50:44 +0100 |
commit | 4fd7cfef0ba1185d4df9e152724eb0ddee623378 (patch) | |
tree | 4bb55e6b8210ad9f4353461228e81bb2d3ec7e69 /libavcodec/roqvideo.h | |
parent | 1ea575504654331aae7d6d87edfcf4caa98822d6 (diff) | |
download | ffmpeg-4fd7cfef0ba1185d4df9e152724eb0ddee623378.tar.gz |
roqvideoenc: add const qualifier to the input frame.
Diffstat (limited to 'libavcodec/roqvideo.h')
-rw-r--r-- | libavcodec/roqvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/roqvideo.h b/libavcodec/roqvideo.h index a1ff10af7d..e2dc272c04 100644 --- a/libavcodec/roqvideo.h +++ b/libavcodec/roqvideo.h @@ -69,7 +69,7 @@ typedef struct RoqContext { unsigned int framesSinceKeyframe; - AVFrame *frame_to_enc; + const AVFrame *frame_to_enc; uint8_t *out_buf; struct RoqTempData *tmpData; } RoqContext; |