Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(290)

Side by Side Diff: patches/ugly/11_ogg_seek_first_frame.patch

Issue 3066011: ffmpeg configured with webm decode only to avoid postproc that pulls in unuse... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 diff -rpu ffmpeg-mt/libavformat/Makefile patched-ffmpeg-mt/libavformat/Makefile 1 diff -rpu ffmpeg-mt/libavformat/Makefile patched-ffmpeg-mt/libavformat/Makefile
2 --- ffmpeg-mt/libavformat/Makefile 2010-04-02 14:43:51 -0700 2 --- ffmpeg-mt/libavformat/Makefile 2010-04-02 14:43:51 -0700
3 +++ patched-ffmpeg-mt/libavformat/Makefile 2010-04-02 14:23:11 -0700 3 +++ patched-ffmpeg-mt/libavformat/Makefile 2010-04-02 14:23:11 -0700
4 @@ -148,7 +148,6 @@ OBJS-$(CONFIG_DIRAC_DEMUXER) 4 @@ -148,7 +148,6 @@ OBJS-$(CONFIG_DIRAC_DEMUXER)
5 OBJS-$(CONFIG_LIBSPEEX) += oggparsespeex.o 5 OBJS-$(CONFIG_LIBSPEEX) += oggparsespeex.o
6 OBJS-$(CONFIG_OGG_DEMUXER) += oggdec.o \ 6 OBJS-$(CONFIG_OGG_DEMUXER) += oggdec.o \
7 oggparseogm.o \ 7 oggparseogm.o \
8 - oggparseskeleton.o \ 8 - oggparseskeleton.o \
9 oggparsetheora.o \ 9 oggparsetheora.o \
10 oggparsevorbis.o \ 10 oggparsevorbis.o \
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 - if (dts) 477 - if (dts)
478 - *dts = pts; 478 - *dts = pts;
479 - } 479 - }
480 - 480 -
481 - return pts; 481 - return pts;
482 -} 482 -}
483 +int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size); 483 +int vorbis_comment(AVFormatContext *ms, uint8_t *buf, int size);
484 484
485 #endif /* AVFORMAT_OGGDEC_H */ 485 #endif /* AVFORMAT_OGGDEC_H */
486 486
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698