[FFmpeg-cvslog] examples/decoding_encoding.c: switch to h264

Michael Niedermayer git at videolan.org
Mon Oct 17 20:59:34 CEST 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Oct 17 20:22:07 2011 +0200| [82d9fafbb80ee561baa49e8593d2850aa8197459] | committer: Michael Niedermayer

examples/decoding_encoding.c: switch to h264

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=82d9fafbb80ee561baa49e8593d2850aa8197459
---

 doc/examples/decoding_encoding.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/examples/decoding_encoding.c b/doc/examples/decoding_encoding.c
index cd968db..aedf5a4 100644
--- a/doc/examples/decoding_encoding.c
+++ b/doc/examples/decoding_encoding.c
@@ -204,7 +204,7 @@ static void video_encode_example(const char *filename)
     printf("Video encoding\n");
 
     /* find the mpeg1 video encoder */
-    codec = avcodec_find_encoder(CODEC_ID_MPEG1VIDEO);
+    codec = avcodec_find_encoder(CODEC_ID_H264);
     if (!codec) {
         fprintf(stderr, "codec not found\n");
         exit(1);
@@ -445,8 +445,8 @@ int main(int argc, char **argv)
         audio_encode_example("/tmp/test.mp2");
         audio_decode_example("/tmp/test.sw", "/tmp/test.mp2");
 
-        video_encode_example("/tmp/test.mpg");
-        filename = "/tmp/test.mpg";
+        video_encode_example("/tmp/test.h264");
+        filename = "/tmp/test.h264";
     } else {
         filename = argv[1];
     }



More information about the ffmpeg-cvslog mailing list