projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
77f254a
)
h264parse: Unify value setting
author
Edward Hervey
<edward@collabora.com>
Mon, 28 Oct 2013 08:33:47 +0000
(09:33 +0100)
committer
Edward Hervey
<edward@collabora.com>
Mon, 28 Oct 2013 08:35:20 +0000
(09:35 +0100)
the initial par_n = par_d = 0; was always overwritten since the switch/case
handles all values
And remove the 0 case (it's the same handling as default)
gst/videoparsers/gsth264parse.c
patch
|
blob
|
history
diff --git
a/gst/videoparsers/gsth264parse.c
b/gst/videoparsers/gsth264parse.c
index add29ed479d0d253e05f8554d77dcfe4784eb993..2eb6c76961d9086135d616651e10d75fc96f8c3b 100644
(file)
--- a/
gst/videoparsers/gsth264parse.c
+++ b/
gst/videoparsers/gsth264parse.c
@@
-1074,11
+1074,7
@@
gst_h264_parse_get_par (GstH264Parse * h264parse, gint * num, gint * den)
return;
}
- par_n = par_d = 0;
switch (h264parse->aspect_ratio_idc) {
- case 0:
- par_n = par_d = 0;
- break;
case 1:
par_n = 1;
par_d = 1;
@@
-1148,7
+1144,9
@@
gst_h264_parse_get_par (GstH264Parse * h264parse, gint * num, gint * den)
par_d = h264parse->sar_height;
break;
default:
+ /* 0 and other values are undefined */
par_n = par_d = 0;
+ break;
}
*num = par_n;