comparison options.c @ 12522:776789af0304 libavcodec

Move AVOptions from libavcodec to libavutil
author michael
date Sun, 26 Sep 2010 14:25:22 +0000
parents e9a1e1ba768f
children
comparison
equal deleted inserted replaced
12521:db36486a6f89 12522:776789af0304
23 * @file 23 * @file
24 * Options definition for AVCodecContext. 24 * Options definition for AVCodecContext.
25 */ 25 */
26 26
27 #include "avcodec.h" 27 #include "avcodec.h"
28 #include "opt.h" 28 #include "libavutil/opt.h"
29 #include <float.h> /* FLT_MIN, FLT_MAX */ 29 #include <float.h> /* FLT_MIN, FLT_MAX */
30 30
31 static const char* context_to_name(void* ptr) { 31 static const char* context_to_name(void* ptr) {
32 AVCodecContext *avc= ptr; 32 AVCodecContext *avc= ptr;
33 33