brendanlong

Untitled

Jun 21st, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.78 KB | None | 0 0
  1. From e80bdcf9ad71bb1f18e082c7e4f6a1e74ec966b3 Mon Sep 17 00:00:00 2001
  2. From: Brendan Long <[email protected]>
  3. Date: Fri, 21 Jun 2013 19:14:01 -0600
  4. Subject: [PATCH] Fix encoder_example's error output so it doesn't say it
  5.  accepts RIFF WAV input.
  6.  
  7. ---
  8. examples/encoder_example.c | 2 +-
  9.  1 file changed, 1 insertion(+), 1 deletion(-)
  10.  
  11. diff --git a/examples/encoder_example.c b/examples/encoder_example.c
  12. index dacb8d2..2fa6d23 100644
  13. --- a/examples/encoder_example.c
  14. +++ b/examples/encoder_example.c
  15. @@ -288,7 +288,7 @@ static void id_file(av_input *_avin,const char *_file){
  16.    }
  17.    else{
  18.      fprintf(stderr,
  19. -     "Input file '%s' is neither a RIFF WAVE or YUV4MPEG2 file.\n",_file);
  20. +     "Input file '%s' is not a YUV4MPEG2 file.\n",_file);
  21.    }
  22.  }
  23.  
  24. --
  25. 1.8.1.4
Advertisement
Add Comment
Please, Sign In to add comment