Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
drbrain committed Sep 3, 2009
1 parent 62993a2 commit 58fd2b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion lib/ffmpeg/format_parameters.rb
Expand Up @@ -7,7 +7,6 @@ class FFMPEG::FormatParameters
fprintf(stderr, "free format parameters\\n");
av_free(format_parameters);
}
C

##
Expand Down
14 changes: 7 additions & 7 deletions lib/ffmpeg/frame.rb
Expand Up @@ -162,13 +162,13 @@ def initialize(width=nil, height=nil, pix_fmt=nil)

def type
case pict_type
when I_TYPE ; :I_TYPE
when P_TYPE ; :P_TYPE
when B_TYPE ; :B_TYPE
when S_TYPE ; :S_TYPE
when SI_TYPE ; :S_TYPE
when SP_TYPE ; :SP_TYPE
when BI_TYPE ; :BI_TYPE
when I_TYPE then :I_TYPE
when P_TYPE then :P_TYPE
when B_TYPE then :B_TYPE
when S_TYPE then :S_TYPE
when SI_TYPE then :S_TYPE
when SP_TYPE then :SP_TYPE
when BI_TYPE then :BI_TYPE
end
end

Expand Down

0 comments on commit 58fd2b0

Please sign in to comment.