Changeset cc872f332621b1f639362e6b2a3d57e9dd9bc533
- Timestamp:
- 09/06/08 10:05:34 (4 months ago)
- git-parent:
- Files:
-
- modules/codec/ffmpeg/Modules.am (modified) (2 diffs)
- modules/codec/ffmpeg/avcodec.c (modified) (1 diff)
- modules/codec/ffmpeg/avcodec.h (modified) (2 diffs)
- modules/codec/ffmpeg/postprocess.c (deleted)
- modules/video_filter/Modules.am (modified) (1 diff)
- modules/video_filter/postproc.c (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/codec/ffmpeg/Modules.am
r47db573 rcc872f3 50 50 $(NULL) 51 51 52 SOURCES_postproc = \53 $(NULL)54 55 52 libvlc_LTLIBRARIES += \ 56 53 $(LTLIBavcodec) \ 57 54 $(LTLIBavformat) \ 58 55 $(LTLIBswscale) \ 59 $(LTLIBimgresample) \ 60 $(LTLIBpostproc) 56 $(LTLIBimgresample) 61 57 62 58 EXTRA_LTLIBRARIES += \ … … 64 60 libavformat_plugin.la \ 65 61 libswscale_plugin.la \ 66 libimgresample_plugin.la \ 67 libpostproc_plugin.la 62 libimgresample_plugin.la 68 63 69 64 # FIXME SOURCES_ffmpegaltivec = \ modules/codec/ffmpeg/avcodec.c
r3a49e9f rcc872f3 126 126 change_integer_list( nloopf_list, nloopf_list_text, 0 ); 127 127 128 add_integer( "ffmpeg-pp-q", 0, NULL, PP_Q_TEXT, PP_Q_LONGTEXT, false );129 add_string( "ffmpeg-pp-name", "default", NULL, LIBAVCODEC_PP_TEXT,130 LIBAVCODEC_PP_LONGTEXT, true );131 128 add_integer( "ffmpeg-debug", 0, NULL, DEBUG_TEXT, DEBUG_LONGTEXT, 132 129 true ); modules/codec/ffmpeg/avcodec.h
rb8b6f0b rcc872f3 92 92 "(-1=None, 0=Default, 1=B-frames, 2=P-frames, 3=B+P frames, 4=all frames)." ) 93 93 94 #define PP_Q_TEXT N_("Post processing quality")95 #define PP_Q_LONGTEXT N_( \96 "Quality of post processing. Valid range is 0 to 6\n" \97 "Higher levels require considerable more CPU power, but produce " \98 "better looking pictures." )99 100 94 #define DEBUG_TEXT N_( "Debug mask" ) 101 95 #define DEBUG_LONGTEXT N_( "Set ffmpeg debug mask" ) … … 120 114 "speedup for high definition streams." ) 121 115 122 #define LIBAVCODEC_PP_TEXT N_("FFmpeg post processing filter chains")123 /* FIXME (cut/past from ffmpeg */124 #define LIBAVCODEC_PP_LONGTEXT \125 N_("<filterName>[:<option>[:<option>...]][[,|/][-]<filterName>[:<option>...]]...\n" \126 "long form example:\n" \127 "vdeblock:autoq/hdeblock:autoq/linblenddeint default,-vdeblock\n" \128 "short form example:\n" \129 "vb:a/hb:a/lb de,-vb\n" \130 "more examples:\n" \131 "tn:64:128:256\n" \132 "Filters Options\n" \133 "short long name short long option Description\n" \134 "* * a autoq cpu power dependent enabler\n" \135 " c chrom chrominance filtring enabled\n" \136 " y nochrom chrominance filtring disabled\n" \137 "hb hdeblock (2 Threshold) horizontal deblocking filter\n" \138 " 1. difference factor: default=64, higher -> more deblocking\n" \139 " 2. flatness threshold: default=40, lower -> more deblocking\n" \140 " the h & v deblocking filters share these\n" \141 " so u cant set different thresholds for h / v\n" \142 "vb vdeblock (2 Threshold) vertical deblocking filter\n" \143 "h1 x1hdeblock Experimental h deblock filter 1\n" \144 "v1 x1vdeblock Experimental v deblock filter 1\n" \145 "dr dering Deringing filter\n" \146 "al autolevels automatic brightness / contrast\n" \147 " f fullyrange stretch luminance to (0..255)\n" \148 "lb linblenddeint linear blend deinterlacer\n" \149 "li linipoldeint linear interpolating deinterlace\n" \150 "ci cubicipoldeint cubic interpolating deinterlacer\n" \151 "md mediandeint median deinterlacer\n" \152 "fd ffmpegdeint ffmpeg deinterlacer\n" \153 "de default hb:a,vb:a,dr:a,al\n" \154 "fa fast h1:a,v1:a,dr:a,al\n" \155 "tn tmpnoise (3 Thresholds) Temporal Noise Reducer\n" \156 " 1. <= 2. <= 3. larger -> stronger filtering\n" \157 "fq forceQuant <quantizer> Force quantizer\n")158 159 116 /* 160 117 * Encoder options modules/video_filter/Modules.am
r446404d rcc872f3 41 41 SOURCES_blendbench = blendbench.c 42 42 SOURCES_chain = chain.c 43 SOURCES_postproc = postproc.c 43 44 noinst_HEADERS = filter_common.h filter_picture.h
