| OLD | NEW |
| 1 ## | 1 ## |
| 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 ## | 3 ## |
| 4 ## Use of this source code is governed by a BSD-style license | 4 ## Use of this source code is governed by a BSD-style license |
| 5 ## that can be found in the LICENSE file in the root of the source | 5 ## that can be found in the LICENSE file in the root of the source |
| 6 ## tree. An additional intellectual property rights grant can be found | 6 ## tree. An additional intellectual property rights grant can be found |
| 7 ## in the file PATENTS. All contributing project authors may | 7 ## in the file PATENTS. All contributing project authors may |
| 8 ## be found in the AUTHORS file in the root of the source tree. | 8 ## be found in the AUTHORS file in the root of the source tree. |
| 9 ## | 9 ## |
| 10 | 10 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c | 172 vp8cx_set_ref.SRCS += ivfenc.h ivfenc.c |
| 173 vp8cx_set_ref.SRCS += tools_common.h tools_common.c | 173 vp8cx_set_ref.SRCS += tools_common.h tools_common.c |
| 174 vp8cx_set_ref.SRCS += video_common.h | 174 vp8cx_set_ref.SRCS += video_common.h |
| 175 vp8cx_set_ref.SRCS += video_writer.h video_writer.c | 175 vp8cx_set_ref.SRCS += video_writer.h video_writer.c |
| 176 vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A | 176 vp8cx_set_ref.GUID = C5E31F7F-96F6-48BD-BD3E-10EBF6E8057A |
| 177 vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame | 177 vp8cx_set_ref.DESCRIPTION = VP8 set encoder reference frame |
| 178 | 178 |
| 179 | 179 |
| 180 ifeq ($(CONFIG_MULTI_RES_ENCODING),yes) | 180 ifeq ($(CONFIG_MULTI_RES_ENCODING),yes) |
| 181 ifeq ($(CONFIG_LIBYUV),yes) | 181 ifeq ($(CONFIG_LIBYUV),yes) |
| 182 EXAMPLES-$(CONFIG_VP8_DECODER) += vp8_multi_resolution_encoder.c | 182 EXAMPLES-$(CONFIG_VP8_ENCODER) += vp8_multi_resolution_encoder.c |
| 183 vp8_multi_resolution_encoder.SRCS += tools_common.h tools_common.c |
| 183 vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS) | 184 vp8_multi_resolution_encoder.SRCS += $(LIBYUV_SRCS) |
| 184 vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de | 185 vp8_multi_resolution_encoder.GUID = 04f8738e-63c8-423b-90fa-7c2703a374de |
| 185 vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding | 186 vp8_multi_resolution_encoder.DESCRIPTION = VP8 Multiple-resolution Encoding |
| 186 endif | 187 endif |
| 187 endif | 188 endif |
| 188 | 189 |
| 189 # Handle extra library flags depending on codec configuration | 190 # Handle extra library flags depending on codec configuration |
| 190 | 191 |
| 191 # We should not link to math library (libm) on RVCT | 192 # We should not link to math library (libm) on RVCT |
| 192 # when building for bare-metal targets | 193 # when building for bare-metal targets |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 "pieces like the samples are. Their source is included here"\ | 344 "pieces like the samples are. Their source is included here"\ |
| 344 "for reference. The following utilities are included:" >> $@ | 345 "for reference. The following utilities are included:" >> $@ |
| 345 @$(foreach ex,$(sort $(UTILS:.c=)),\ | 346 @$(foreach ex,$(sort $(UTILS:.c=)),\ |
| 346 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) | 347 echo " - \subpage example_$(ex) $($(ex).DESCRIPTION)" >> $@;) |
| 347 @echo "*/" >> $@ | 348 @echo "*/" >> $@ |
| 348 | 349 |
| 349 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) | 350 CLEAN-OBJS += examples.doxy samples.dox $(ALL_EXAMPLES:.c=.dox) |
| 350 DOCS-yes += examples.doxy samples.dox | 351 DOCS-yes += examples.doxy samples.dox |
| 351 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) | 352 examples.doxy: samples.dox $(ALL_EXAMPLES:.c=.dox) |
| 352 @echo "INPUT += $^" > $@ | 353 @echo "INPUT += $^" > $@ |
| OLD | NEW |